An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          

# Retail-Sales-Forecasting

Forecasting Retail Sales with Kolmogorov-Arnold Networks (KANs)

[![Made withJupyter](https://img.shields.io/badge/Made%20with-Jupyter-orange?style=for-the-badge&logo=Jupyter)](https://jupyter.org/try) ![GitHub License](https://img.shields.io/github/license/shortthirdman/Retail-Sales-Forecasting?style=for-the-badge) ![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/shortthirdman/Retail-Sales-Forecasting?style=for-the-badge) ![GitHub repo size](https://img.shields.io/github/repo-size/shortthirdman/Retail-Sales-Forecasting?style=for-the-badge)

## 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
```

---