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

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

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