Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlenon7/advertising-model
🤖 Model that predicts how many sales has been made according to the number of advertisements in each channel.
https://github.com/jlenon7/advertising-model
Last synced: 9 days ago
JSON representation
🤖 Model that predicts how many sales has been made according to the number of advertisements in each channel.
- Host: GitHub
- URL: https://github.com/jlenon7/advertising-model
- Owner: jlenon7
- License: mit
- Created: 2024-03-18T09:26:36.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-18T10:16:54.000Z (9 months ago)
- Last Synced: 2024-10-05T23:41:39.812Z (3 months ago)
- Language: Python
- Homepage:
- Size: 244 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advertising Model 🤖
> Model that predicts how many sales has been made according to the number of advertisements in each channel.
[![GitHub followers](https://img.shields.io/github/followers/jlenon7.svg?style=social&label=Follow&maxAge=2592000)](https://github.com/jlenon7?tab=followers)
[![GitHub stars](https://img.shields.io/github/stars/jlenon7/advertising-model.svg?style=social&label=Star&maxAge=2592000)](https://github.com/jlenon7/advertising-model/stargazers/)## Results
The model needs more training to be more precise:
## Running
To run the model first create a new Python environment and activate it. I'm using [Anaconda](https://www.anaconda.com/) for that:
```shell
conda create -n advertising_env python=3.11
conda activate advertising_env
```Now install all the project dependencies:
```shell
make install-all
```And run the model:
```shell
make model
```