Skip to content

Commit

Permalink
Removing tensorflow as a dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
swansonk14 committed Sep 10, 2020
1 parent b4312e6 commit d16b4fc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ For computational efficiency, we currently restricted the rationale to have maxi

## TensorBoard

During training, TensorBoard logs are automatically saved to the same directory as the model checkpoints. To view TensorBoard logs, run `tensorboard --logdir=<dir>` where `<dir>` is the path to the checkpoint directory. Then navigate to [http://localhost:6006](http://localhost:6006).
During training, TensorBoard logs are automatically saved to the same directory as the model checkpoints. To view TensorBoard logs, first install TensorFlow with `pip install tensorflow`. Then run `tensorboard --logdir=<dir>` where `<dir>` is the path to the checkpoint directory. Then navigate to [http://localhost:6006](http://localhost:6006).

## Results

Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ dependencies:
- scikit-learn>=0.22.2.post1
- scipy>=1.4.1
- tensorboardX>=2.0
- tensorflow>=1.13.1
- torchvision>=0.5.0
- tqdm>=4.45.0
- pip:
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
'scipy==1.4.1',
'sphinx>=3.1.2',
'tensorboardX>=2.0',
'tensorflow>=1.13.1',
'torch>=1.5.1',
'tqdm>=4.45.0',
'typed-argument-parser>=1.5.4'
Expand Down

0 comments on commit d16b4fc

Please sign in to comment.