From d1a74e8a79d99bf51f269845376b2993e0a62114 Mon Sep 17 00:00:00 2001 From: Joseph K J Date: Sat, 7 Apr 2018 13:33:02 +0530 Subject: [PATCH] The required dependency is tensorboard-pytorch and not tensorboard The dependency while setting up StackGan++ is tensorboard-pytorch and not tensorboard. There is no FileWriter name in the original tensorboard. Hence ```from tensorboard import FileWriter``` in trainer.py will throw an error. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 979f0ca1..e240db9c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ python 2.7 Pytorch In addition, please add the project folder to PYTHONPATH and `pip install` the following packages: -- `tensorboard` +- `tensorboard-pytorch` - `python-dateutil` - `easydict` - `pandas`