This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
AttributeError
for VideoClassifier
instantiation with backbone slow_r50_detection
#1328
Labels
Milestone
🐛 Bug
Hi!
I need to train the slow_50 model for spatio temporal detection. I didn't find a VideoClassificationData for loading AVA dataset, so, I decided to build a new DataModule using as reference the one on the flash_examples (custom_data_loading.py). I don't know if is going to work because I don't know how the trainer pass the input to the model (have two parameters: the Tensor with the clip, and the list of bounding boxes).
I tried to load the model using the VideoClassifier:
model = VideoClassifier( backbone="slow_r50_detection", pretrained=True )
and it fails with the error:
*** AttributeError: 'DetectionBBoxNetwork' object has no attribute 'blocks'
I didn't find any issue or documentation about how to train or load this models, are you planning to make a tutorial about that?
The text was updated successfully, but these errors were encountered: