Skip to content

Commit

Permalink
The latest offiicial tensorboard uses name tensoboard, the tensorboar…
Browse files Browse the repository at this point in the history
…d-pytorch in renamed to tensorboardX.
  • Loading branch information
ruotianluo committed Aug 31, 2017
1 parent 5a291e3 commit 7aa7cda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -46,7 +46,7 @@ Additional features not mentioned in the [report](https://arxiv.org/pdf/1702.021
### Prerequisites
- A basic pytorch installation. The code follows **0.2**. If you are using old **0.1.12**, you can checkout 0.1.12 branch.
- Python packages you might not have: `cffi`, `opencv-python`, `easydict` (similar to [py-faster-rcnn](https://github.com/rbgirshick/py-faster-rcnn)). For `easydict` make sure you have the right version. I use 1.6.
- [tensorboard-pytorch](https://github.com/lanpa/tensorboard-pytorch) to visualize the training and validation curve.
- [tensorboard-pytorch](https://github.com/lanpa/tensorboard-pytorch) to visualize the training and validation curve. Please build from source to use the latest tensorflow-tensorboard.
- ~~Docker users: Since the recent upgrade, the docker image on docker hub (https://hub.docker.com/r/mbuckler/tf-faster-rcnn-deps/) is no longer valid. However, you can still build your own image by using dockerfile located at `docker` folder (cuda 8 version, as it is required by Tensorflow r1.0.) And make sure following Tensorflow installation to install and use nvidia-docker[https://github.com/NVIDIA/nvidia-docker]. Last, after launching the container, you have to build the Cython modules within the running container.~~

### Installation
Expand Down
2 changes: 1 addition & 1 deletion lib/model/train_val.py
Expand Up @@ -7,7 +7,7 @@
from __future__ import division
from __future__ import print_function

import tensorboard as tb
import tensorboardX as tb

from model.config import cfg
import roi_data_layer.roidb as rdl_roidb
Expand Down
4 changes: 1 addition & 3 deletions lib/nets/network.py
Expand Up @@ -7,8 +7,6 @@
from __future__ import division
from __future__ import print_function

import tensorflow as tf

import math

import torch
Expand All @@ -29,7 +27,7 @@

from model.config import cfg

import tensorboard as tb
import tensorboardX as tb

class Network(nn.Module):
def __init__(self, batch_size=1):
Expand Down

0 comments on commit 7aa7cda

Please sign in to comment.