Skip to content

monk1337/vidlab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vidlab

Video frames classification using transformer model Put all videos in all_data folder

from features import get_features
from model import run_experiment

train_x, train_y, test_x, test_y, label_pr = get_features('all_data')
model = run_experiment(train_x, train_y, test_x, test_y, label_pr, 6)