├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MathemAI.textClipping ├── README.md ├── api ├── api.py └── enhanced_api.py ├── docs ├── api_documentation.md ├── data_schema.md ├── development_guide.md ├── ensemble_integration_guide.md ├── project_overview.md └── research_background.md ├── frontend ├── README.md ├── css │ └── styles.css ├── index_html.html ├── js │ ├── api.js │ ├── assessment.js │ ├── main.js │ ├── progress.js │ └── results.js └── templates │ ├── assessment.html │ ├── progress.html │ └── results.html ├── models ├── adaptive_learning.py ├── dyscalculia_screening_model.py ├── enhanced_screening_api.py ├── ensemble_dyscalculia_model.py ├── error_pattern_analyzer.py ├── explainable_ai.py ├── feature_engineering.py └── intervention_recommender.py ├── notebooks ├── README.md └── dyscalculia_assessment_analysis.ipynb ├── requirements.txt ├── scripts ├── generate_datasets_script.py ├── test_ensemble_model.py └── train_models_script.py └── tests ├── README.md ├── conftest.py ├── test-api.py ├── test-data.py ├── test-recommender.py └── test-screening-model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | ECHO is off. 2 | -------------------------------------------------------------------------------- /MathemAI.textClipping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/MathemAI.textClipping -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/README.md -------------------------------------------------------------------------------- /api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/api/api.py -------------------------------------------------------------------------------- /api/enhanced_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/api/enhanced_api.py -------------------------------------------------------------------------------- /docs/api_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/api_documentation.md -------------------------------------------------------------------------------- /docs/data_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/data_schema.md -------------------------------------------------------------------------------- /docs/development_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/development_guide.md -------------------------------------------------------------------------------- /docs/ensemble_integration_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/ensemble_integration_guide.md -------------------------------------------------------------------------------- /docs/project_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/project_overview.md -------------------------------------------------------------------------------- /docs/research_background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/docs/research_background.md -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/css/styles.css -------------------------------------------------------------------------------- /frontend/index_html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/index_html.html -------------------------------------------------------------------------------- /frontend/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/js/api.js -------------------------------------------------------------------------------- /frontend/js/assessment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/js/assessment.js -------------------------------------------------------------------------------- /frontend/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/js/main.js -------------------------------------------------------------------------------- /frontend/js/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/js/progress.js -------------------------------------------------------------------------------- /frontend/js/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/js/results.js -------------------------------------------------------------------------------- /frontend/templates/assessment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/templates/assessment.html -------------------------------------------------------------------------------- /frontend/templates/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/templates/progress.html -------------------------------------------------------------------------------- /frontend/templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/frontend/templates/results.html -------------------------------------------------------------------------------- /models/adaptive_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/adaptive_learning.py -------------------------------------------------------------------------------- /models/dyscalculia_screening_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/dyscalculia_screening_model.py -------------------------------------------------------------------------------- /models/enhanced_screening_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/enhanced_screening_api.py -------------------------------------------------------------------------------- /models/ensemble_dyscalculia_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/ensemble_dyscalculia_model.py -------------------------------------------------------------------------------- /models/error_pattern_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/error_pattern_analyzer.py -------------------------------------------------------------------------------- /models/explainable_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/explainable_ai.py -------------------------------------------------------------------------------- /models/feature_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/feature_engineering.py -------------------------------------------------------------------------------- /models/intervention_recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/models/intervention_recommender.py -------------------------------------------------------------------------------- /notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/notebooks/README.md -------------------------------------------------------------------------------- /notebooks/dyscalculia_assessment_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/notebooks/dyscalculia_assessment_analysis.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/generate_datasets_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/scripts/generate_datasets_script.py -------------------------------------------------------------------------------- /scripts/test_ensemble_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/scripts/test_ensemble_model.py -------------------------------------------------------------------------------- /scripts/train_models_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/scripts/train_models_script.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/test-api.py -------------------------------------------------------------------------------- /tests/test-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/test-data.py -------------------------------------------------------------------------------- /tests/test-recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/test-recommender.py -------------------------------------------------------------------------------- /tests/test-screening-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/MathemAI/HEAD/tests/test-screening-model.py --------------------------------------------------------------------------------