https://github.com/rp4ri/app-ml-django
This is a machine learning project deployed using django
https://github.com/rp4ri/app-ml-django
django dockerfile machine-learning python
Last synced: 2 months ago
JSON representation
This is a machine learning project deployed using django
- Host: GitHub
- URL: https://github.com/rp4ri/app-ml-django
- Owner: rp4ri
- Created: 2022-10-10T20:48:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-17T02:16:30.000Z (over 3 years ago)
- Last Synced: 2025-01-28T13:49:08.890Z (over 1 year ago)
- Topics: django, dockerfile, machine-learning, python
- Language: Python
- Homepage:
- Size: 26.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# app-ml-django
- **By:** Rodrigo Pari
- **Contact:** rodrigo.parisusao25201@gmail.com
This is a machine learning project deployed using django
## Licence
This project has not a license file
## Directories Distribution
```
├── README.md
├── main.py
├── backend\server
│ ├── apps
│ │ ├── endpoints
| | | ├── __init__.py
| | | ├── admin.py
| | | ├── apps.py
| | | ├── migrations
| | | | └── __init__.py
| | | ├── models.py
| | | ├── serializers.py
| | | ├── tests.py
| | | ├── urls.py
| | | └── views.py
│ │ └── ml
| | | ├── __init__.py
| | | ├── income_classifier
| | | | ├── __init__.py
| | | | ├── extra_trees.py
| | | | └── random_forest.py
| | | ├── registry.py
| | | └── tests.py
│ ├── db.sqlite3
│ ├── manage.py
│ ├── server
| | ├── __init__.py
| | ├── asgi.py
| | ├── settings.py
| | ├── urls.py
| | └── wsgi.py
├── docker-compose.yml
├── docker
│ ├── backend
│ │ ├── Dockerfile
│ │ └── wsgi-entrypoint.sh
│ └── nginx
│ ├── Dockerfile
│ └── default.conf
├── notebooks
│ ├── 1_creando-modelo.ipynb
│ ├── 2_ab-test.ipynb
│ ├── encoders.joblib
│ ├── extra_trees.joblib
│ ├── random_forest.joblib
│ └── train_mode.joblib
└── requirements.txt
```