https://github.com/shortthirdman/retail-sales-forecasting
Forecasting Retail Sales with Kolmogorov-Arnold Networks (KANs)
https://github.com/shortthirdman/retail-sales-forecasting
arima-forecasting data-science jupyter-notebook kolmogorov-arnold-networks python retail-sales
Last synced: 2 months ago
JSON representation
Forecasting Retail Sales with Kolmogorov-Arnold Networks (KANs)
- Host: GitHub
- URL: https://github.com/shortthirdman/retail-sales-forecasting
- Owner: shortthirdman
- License: mit
- Created: 2025-04-12T13:54:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-12T14:42:36.000Z (about 1 year ago)
- Last Synced: 2025-04-12T15:36:16.443Z (about 1 year ago)
- Topics: arima-forecasting, data-science, jupyter-notebook, kolmogorov-arnold-networks, python, retail-sales
- Language: Jupyter Notebook
- Homepage:
- Size: 220 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Retail-Sales-Forecasting
Forecasting Retail Sales with Kolmogorov-Arnold Networks (KANs)
[](https://jupyter.org/try)   
## Development
- Create a Python virtual environment and activate
```shell
$ python -m venv --upgrade-deps --clear dev
$ ./dev/Scripts/activate
$ export PIP_CONFIG_FILE=".\pip.conf"
```
- Install the packages and dependencies as listed in requirements file
```shell
$ python -m pip install --upgrade pip
$ pip install -U -r requirements.txt --no-cache-dir --disable-pip-version-check
```
- Start your development `Jupyter Notebook` or `Jupyter Lab` server
```shell
$ jupyter lab --notebook-dir=.\notebooks --no-browser
```
---