Instructions to use MTomita/CSC_51073_EP-Computer-Vision-Final-Project with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MTomita/CSC_51073_EP-Computer-Vision-Final-Project with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("video-classification", model="MTomita/CSC_51073_EP-Computer-Vision-Final-Project")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MTomita/CSC_51073_EP-Computer-Vision-Final-Project", dtype="auto") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("MTomita/CSC_51073_EP-Computer-Vision-Final-Project", dtype="auto")Quick Links
TimeSformer fine-tuned model
Checkpoint: timesformer_max_full_even_6.pt
Training configuration
- Model: TimeSformer-Base (Kinetics-400 pretrained)
- Frame sampling: even
- Data balancing: max_full
- Unfrozen last layers: 6
- Task: workout action classification (plank, push-up, squat, russian-twist)
Notes
This repository provides a raw PyTorch checkpoint.
To use it, load the checkpoint into a TimesformerForVideoClassification
model with the same configuration used during training.
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("video-classification", model="MTomita/CSC_51073_EP-Computer-Vision-Final-Project")