"mathactive"
Conversational math active learning.
K-12 student can learn math from a chatbot that helps them actively solve math problems suitable to their skill level.
Quickstart
If you have install python packages from source before, you will probably be able to follow these steps to get going quickly:
pip install --upgrade pip virtualenv poetry
git clone git@gitlab.com:tangbileai/community/mathactive
cd mathactive
python -m virtualenv .venv
source .venv/bin/activate || source .venv/Scripts/activate
pip install --editable .
Utilities
def get_countq_start_step(difficulty=0.01):
""" Predict the parameters of a quiz question generator based on the desired difficulty
>>> get_start_step(difficulty=.02)
{'start': 0, 'step': 1}
>>> get_start_step(difficulty=.03)
{'start': 0, 'step': 1}
>>> get_start_step(difficulty=.04)
{'start': 10, 'step': 1}
"""
Directory structure
├── docs
│ ├── AIMA approaches to creating a chatbot.md
│ ├── ...
├── pyproject.toml
├── README.md
├── scripts
│ ├── bump_version.py
│ ├── release.sh
│ └── requirements.txt
└── src
└── mathactive
├── data
│ └── difficulty_start_stop_step.csv
├── data.csv
├── db.sqlite3
├── generators.py
├── hints.py
├── machine.py
├── manage.py
├── microlessons
│ ├── num_one.py
│ └── utils.py
├── personalize.py
├── python_quiz.py
├── questions.py
├── utils.py
├── webapp
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ ├── models.py
│ ├── tests.py
│ └── views.py
└── website
├── asgi.py
├── settings.py
├── urls.py
└── wsgi.py
Release files for mathactive 0.0.14
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| mathactive-0.0.14.tar.gz | 23.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| mathactive-0.0.14-py2.py3-none-any.whl | Python 2, Python 3 | none | any | Details |
Total release size: 52.2 kB
Release files / mathactive-0.0.14.tar.gz
| Download URL | mathactive-0.0.14.tar.gz |
|---|---|
| Size | 23.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5355607b29a41af4a83ca17becfaf74a2968113d84dad29bda9d273ae9ccf8bf
|
|
BLAKE2b-256 checksum How to use checksums |
7b4487d77149ea99309bc5f34189677b10d49b806ca1cbe5788a7aeade7a4b53
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.7
|
Release files / mathactive-0.0.14-py2.py3-none-any.whl
| Download URL | mathactive-0.0.14-py2.py3-none-any.whl |
|---|---|
| Size | 28.5 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
13ab5f9f8b71a4853ddc323325389ba1556214dc71548106840de0303cdac678
|
|
BLAKE2b-256 checksum How to use checksums |
e7ba4b9378d6fd50e0bfb67afa5ad0bab60f15e8fd3fa287df801dcbde9683e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.9.7
|