Skip to content

Commit 5a9a57e

Browse files
yiwen-songfacebook-github-bot
authored andcommitted
[fbsync] Use HTTPS for the HMDB51 links (#5312)
Summary: Co-authored-by: Nicolas Hug <contact@nicolas-hug.com> Reviewed By: kazhang Differential Revision: D33927495 fbshipit-source-id: 099523f8f6f1a893c61735c37f66d4ac54bb5c77
1 parent 1ff27d2 commit 5a9a57e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

torchvision/datasets/hmdb51.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class HMDB51(VisionDataset):
1313
"""
14-
`HMDB51 <http://serre-lab.clps.brown.edu/resource/hmdb-a-large-human-motion-database/>`_
14+
`HMDB51 <https://serre-lab.clps.brown.edu/resource/hmdb-a-large-human-motion-database/>`_
1515
dataset.
1616
1717
HMDB51 is an action recognition video dataset.
@@ -47,9 +47,9 @@ class HMDB51(VisionDataset):
4747
- label (int): class of the video clip
4848
"""
4949

50-
data_url = "http://serre-lab.clps.brown.edu/wp-content/uploads/2013/10/hmdb51_org.rar"
50+
data_url = "https://serre-lab.clps.brown.edu/wp-content/uploads/2013/10/hmdb51_org.rar"
5151
splits = {
52-
"url": "http://serre-lab.clps.brown.edu/wp-content/uploads/2013/10/test_train_splits.rar",
52+
"url": "https://serre-lab.clps.brown.edu/wp-content/uploads/2013/10/test_train_splits.rar",
5353
"md5": "15e67781e70dcfbdce2d7dbb9b3344b5",
5454
}
5555
TRAIN_TAG = 1

0 commit comments

Comments
 (0)