Skip to content

Commit

Permalink
v0.0.36
Browse files Browse the repository at this point in the history
update
  • Loading branch information
meta-tabchen authored Jun 10, 2022
1 parent e074778 commit 9e596ba
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ PyKT is a python library build upon PyTorch to train deep learning based knowled
## Installation
Use the following command to install PyKT:

Create conda envirment.

```
conda create --name=pykt python=3.7.5
source activate pykt
```


```
pip install -U pykt-toolkit -i https://pypi.python.org/simple
```
Expand Down
11 changes: 1 addition & 10 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,11 @@ Welcome to PyKT's documentation!
PyKT is a python library build upon PyTorch to train deep learning based knowledge tracing models. The library consists of a standardized set of integrated data preprocessing procedures on 7 popular datasets across different domains, 5 detailed prediction scenarios, 10 frequently compared DLKT approaches for transparent and extensive experiments. Let's `Get Started! <./quick_start.html>`_ , `Get Started! (Chinese) <./quick_start_cn.html>`_


Installation
------------

To use pykt, first install it using pip:

.. code-block:: console
$ pip install pykt-toolkit
.. toctree::
:maxdepth: 2
:caption: Home

Installation <installation>
Official Website <https://pykt-team.github.io/>
Quick Start <quick_start>
Quick Start (cn) <quick_start_cn>
Expand Down
14 changes: 14 additions & 0 deletions docs/source/installation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Installation
Use the following command to install PyKT:

Create conda environment.

```
conda create --name=pykt python=3.7.5
source activate pykt
```


```
pip install -U pykt-toolkit
```
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="pykt-toolkit",
version="0.0.35-alpha",
version="0.0.36",
author="pykt-team",
author_email="[email protected]",
description="pyKT: A Python Library to Benchmark Deep Learning based Knowledge Tracing Models",
Expand All @@ -23,5 +23,5 @@
packages=find_packages(),
python_requires=">=3.5",
include_package_data=True,
install_requires=['pandas'],
)
install_requires=['numpy==1.17.2','pandas==1.1.5','scikit-learn==0.21.3','torch==1.7.0','wandb==0.12.9'],
)

0 comments on commit 9e596ba

Please sign in to comment.