Skip to content
This repository was archived by the owner on Aug 14, 2024. It is now read-only.

Conda env #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ The model expects a CSV training set with the following columns and data:
# Installation
`pip install git+https://github.com/USDepartmentofLabor/soii_neural_autocoder.git`

## Alternatively, with conda
- clone the repository wherever you'd like to use it
- navigate to the repository
- `conda create env -f env`
- `conda-develop . -n bls_ml`
- `conda activate bls_ml`

# Example Usage
Modify the `data_file` variable in `examples/big_single_seq_180_lr4e-4.py` to point
to an appropriately formatted training dataset, or leave as is to use the dummy
Expand Down
21 changes: 21 additions & 0 deletions env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: bls_ml
channels:
- conda-forge
- defaults

dependencies:
- python=3.6
- nltk
- nltk_data
- pyyaml
- pandas
- keras
- tensorflow-gpu
- pip
- jupyterlab
- pytest
- pytest-cov
- black
- pylint
- scikit-learn
- sphinx