Nikeytas/videomae-crime-detector-maxdata-v1
Video Classification β’ 86.2M β’ Updated β’ 13.2k
Error code: JWTInvalidSignature
Exception: InvalidSignatureError
Message: Signature verification failed
Traceback: Traceback (most recent call last):
File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
decoded = jwt.decode(
jwt=token,
...<2 lines>...
options=options,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
decoded = self.decode_complete(
jwt,
...<8 lines>...
leeway=leeway,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
decoded = self._jws.decode_complete(
jwt,
...<3 lines>...
detached_payload=detached_payload,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
self._verify_signature(
~~~~~~~~~~~~~~~~~~~~~~^
signing_input,
^^^^^^^^^^^^^^
...<4 lines>...
options=merged_options,
^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
raise InvalidSignatureError("Signature verification failed")
jwt.exceptions.InvalidSignatureError: Signature verification failedNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
μ΄ λ°μ΄ν°μ
μ UCF-Crime λ°μ΄ν°μ
μ Hugging Face datasets λΌμ΄λΈλ¬λ¦¬μ μ€νΈλ¦¬λ° κΈ°λ₯μ μν΄ WebDataset(TAR Sharding) νμμΌλ‘ λ³νν λ²μ μ
λλ€.
100GB μ΄μμ λκ·λͺ¨ λΉλμ€ λ°μ΄ν°λ₯Ό ν¨μ¨μ μΌλ‘ λ‘λν μ μμ΅λλ€.
from datasets import load_dataset
# Anomaly Detection μ€μ λ‘λ
dataset = load_dataset("your_id/ucf_crime", "anomaly_detection", split="train", streaming=True)
for sample in dataset:
video_path = sample["mp4"]
label = sample["json"]["event"]
print(f"Video loaded: {video_path}, Label: {label}")
break
@InProceedings{Sultani_2018_CVPR,
author={Sultani, Waqas and Chen, Chen and Shah, Mubarak},
title={Real-World Anomaly Detection in Surveillance Videos},
booktitle={The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month={June},
year={2018},
}