erikscheurer / I3D_pytorch

i3d trunk network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I3D models trained on Vidor

Overview

This repo is the trunk net 4 2nd task of VidVRD: Video Relation Prediction

The 1st stage project: Video Object Detection

The Grand Challenge MM2019

This repository contains trained models reported in the paper "Quo Vadis, Action Recognition? A New Model and the Kinetics Dataset" by Joao Carreira and Andrew Zisserman.

This code is based on Deepmind's Kinetics-I3D. Including PyTorch versions of their models.

Download

Charades_v1_rgb

Vidor

Fine-tuning and Feature Extraction

We provide code to extract I3D features and fine-tune I3D for vidor. Our fine-tuned models on Vidor are also available in the models director (in addition to Deepmind's trained models). The Charades pre-trained models on Pytorch were saved to (flow_charades.pt and rgb_charades.pt). The deepmind pre-trained models were converted to PyTorch and give identical results (flow_imagenet.pt and rgb_imagenet.pt). These models were pretrained on imagenet and kinetics (see Kinetics-I3D for details).

Fine-tuning I3D

train_i3d.py contains the code to fine-tune I3D based on the details in the paper and obtained from the authors. Specifically, this version follows the settings to fine-tune on the Charades dataset based on the author's implementation that won the Charades 2017 challenge. The charades fine-tuned RGB and Flow I3D models are available in the model directory (rgb_charades.pt and flow_charades.pt).

This relied on having the optical flow and RGB frames extracted and saved as images on dist. vidor_dataset.py script VidorPytorchTrain Class contains the code to load charades video segments for training.

E.g.

python train_i3d.py -anno_rpath /storage/dldi/PyProjects/vidor/annotation -video_rpath /storage/dldi/PyProjects/vidor/train_vids -num_workers 0

This relied on having the optical flow and RGB frames extracted and saved as images on dist. charades_dataset.py contains the code to load charades video segments for training.

Feature Extraction

extract_features.py contains the code to load a pre-trained I3D model and extract the features and save the features as numpy arrays.

E.g.

python extract_features.py -anno_rpath /storage/dldi/PyProjects/vidor/annotation -video_rpath /storage/dldi/PyProjects/vidor/train_vids

The vidor_dataset.py script VidorPytorchExtract Class loads an entire video to extract per-segment features. The charades_dataset_full.py script loads an entire video to extract per-segment features.

About

i3d trunk network

License:Apache License 2.0


Languages

Language:Python 100.0%