-
Notifications
You must be signed in to change notification settings - Fork 35
1. Getting started
Jim Schwoebel edited this page Aug 3, 2020
·
20 revisions
First, clone the repository:
git clone [email protected]:jim-schwoebel/allie.git
cd allie
Set up virtual environment (to ensure consistent operating mode across operating systems).
python3 -m pip install --user virtualenv
python3 -m venv env
source env/bin/activate
Now install required dependencies and perform unit tests to make sure everything works:
python3 setup.py
Now you can run some unit tests:
cd tests
python3 test.py
Note the unit tests above takes roughly ~10 minutes to complete and makes sure that you can featurize, model, and load model files (to make predictions) via your default featurizers and modeling techniques. It may be best to go grab lunch or coffee while waiting. :-)
To learn how to setup Allie on Windows, please read this GitHub issue thread.