Skip to content

Commit ac1f0ff

Browse files
Use HTTPS for the HMDB51 links (#5312)
Co-authored-by: Nicolas Hug <[email protected]>
1 parent 7d868aa commit ac1f0ff

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)