Conversational math active learning.
Project description
"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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mathactive-0.0.8.tar.gz
(23.6 kB
view details)
Built Distribution
File details
Details for the file mathactive-0.0.8.tar.gz
.
File metadata
- Download URL: mathactive-0.0.8.tar.gz
- Upload date:
- Size: 23.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 112cab83bbd8ccac3d5eacf9abc8891c1ab6f7ad76c3e8e18953b75eea26bf36 |
|
MD5 | ab37bef7f0102943f72dd45b38bebd58 |
|
BLAKE2b-256 | 9121ff1063ba7f58134993990fed8fd250e8cc1b595d8d87d901e2dc029ce49d |
Provenance
File details
Details for the file mathactive-0.0.8-py2.py3-none-any.whl
.
File metadata
- Download URL: mathactive-0.0.8-py2.py3-none-any.whl
- Upload date:
- Size: 28.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33c366e10ad2801705148c0c714d8e2e1b1526e69899be4bdaba9df50723ef92 |
|
MD5 | b2f30a7f90dbd5690e38006bc5b9ffc8 |
|
BLAKE2b-256 | 27dda77d06c6cca591a24282e328172b949c21deee375cc8e5fe10c5aa3233e0 |