https://github.com/innernull/quickmlp
Quickly train MLP on any tabular data
https://github.com/innernull/quickmlp
Last synced: 8 months ago
JSON representation
Quickly train MLP on any tabular data
- Host: GitHub
- URL: https://github.com/innernull/quickmlp
- Owner: innerNULL
- License: mit
- Created: 2023-09-28T03:31:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-04T12:30:51.000Z (over 2 years ago)
- Last Synced: 2023-10-04T21:27:39.091Z (over 2 years ago)
- Language: Python
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Quick MLP
This is my personal side project. The idea is how about having a lib which can help you quickly leverage or analysis tabular feature with simple neural network model: MLP.
## Install
```shell
python -m pip install http+git@github.com:innerNULL/nnfeakit.git
```
## Build Python Environment
```shell
python -m venv ./_venv --copies
source ./_venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
# deactivate
```
## Test
```shell
python -m pip install -r requirements-test.txt
python -m pytest ./tests/ --cov=./src/quickmlp --durations=0 -v
```