├── .gitignore ├── LICENSE.txt ├── README.md ├── figures ├── continuous_retraining_test.svg ├── model_aging_plot_avocados_lr.png └── temporal_degradadation_test.svg ├── pyproject.toml ├── src └── ageml │ ├── __init__.py │ ├── datasets │ ├── __init__.py │ ├── data │ │ ├── __init__.py │ │ └── avocados_demand_forecasting_dataset.csv │ └── datasets.py │ └── temporal_degradation.py └── tests ├── __init__.py └── test_temporal_degradation.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .DS_Store 3 | .venv 4 | *.egg-info -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/README.md -------------------------------------------------------------------------------- /figures/continuous_retraining_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/figures/continuous_retraining_test.svg -------------------------------------------------------------------------------- /figures/model_aging_plot_avocados_lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/figures/model_aging_plot_avocados_lr.png -------------------------------------------------------------------------------- /figures/temporal_degradadation_test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/figures/temporal_degradadation_test.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/ageml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/src/ageml/__init__.py -------------------------------------------------------------------------------- /src/ageml/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | from .datasets import ( 2 | load_avocado_sales 3 | ) -------------------------------------------------------------------------------- /src/ageml/datasets/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ageml/datasets/data/avocados_demand_forecasting_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/src/ageml/datasets/data/avocados_demand_forecasting_dataset.csv -------------------------------------------------------------------------------- /src/ageml/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/src/ageml/datasets/datasets.py -------------------------------------------------------------------------------- /src/ageml/temporal_degradation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/src/ageml/temporal_degradation.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_temporal_degradation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santiviquez/ageml/HEAD/tests/test_temporal_degradation.py --------------------------------------------------------------------------------