Update README.md
Browse files
README.md
CHANGED
@@ -34,8 +34,8 @@ import torch
|
|
34 |
|
35 |
video = list(np.random.randn(16, 3, 224, 224))
|
36 |
|
37 |
-
feature_extractor = VideoMAEFeatureExtractor.from_pretrained("MCG-NJU/videomae-base")
|
38 |
-
model = VideoMAEForVideoClassification.from_pretrained("MCG-NJU/videomae-base")
|
39 |
|
40 |
inputs = feature_extractor(video, return_tensors="pt")
|
41 |
|
|
|
34 |
|
35 |
video = list(np.random.randn(16, 3, 224, 224))
|
36 |
|
37 |
+
feature_extractor = VideoMAEFeatureExtractor.from_pretrained("MCG-NJU/videomae-base-finetuned-kinetics")
|
38 |
+
model = VideoMAEForVideoClassification.from_pretrained("MCG-NJU/videomae-base-finetuned-kinetics")
|
39 |
|
40 |
inputs = feature_extractor(video, return_tensors="pt")
|
41 |
|