Skip to content

Commit 74e84fd

Browse files
yashkantRishabhJain2018
authored andcommitted
Update gitignore with server configuration files & change config to run code on GPU (#24)
1 parent 03201c8 commit 74e84fd

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ viscap/checkpoints/
77
viscap/data/
88
env/
99
static/
10+
chat.ini
11+
server-log.txt
12+
uwsgi_params
13+
visual_dialog_nginx.conf
14+
1015

1116
*.pyc
1217
db.sqlite3

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,4 @@ BSD
187187
[23]: https://s3.amazonaws.com/visual-dialog/data/v1.0/2019/features_mask_rcnn_x101_test.h5
188188
[24]: https://rishabhjain2018.github.io/
189189

190+

requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
Django==1.11.23
23
channels==0.17.2
34
asgi-redis==0.14.1
@@ -20,4 +21,4 @@ torch==1.0.0
2021
tqdm==4.28.1
2122
yacs==0.1.6
2223
opencv-python==4.1.0.25
23-
torchtext==0.3.1
24+
torchtext==0.3.1

viscap/visdialch/utils/checkpointing.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -177,10 +177,6 @@ def load_checkpoint(checkpoint_pthpath, device=None):
177177
f"({checkpoint_commit_sha}) at which checkpoint was saved,"
178178
" are different. This might affect reproducibility."
179179
)
180-
181180
# load encoder, decoder, optimizer state_dicts
182-
if device == torch.device('cpu'):
183-
components = torch.load(checkpoint_pthpath, map_location='cpu')
184-
else:
185-
components = torch.load(checkpoint_pthpath)
181+
components = torch.load(checkpoint_pthpath, map_location=device)
186182
return components["model"], components["optimizer"]

0 commit comments

Comments
 (0)