• Stars
    star
    134
  • Rank 269,447 (Top 6 %)
  • Language
    Python
  • Created about 5 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Implementation of the paper Video Action Transformer Network

Video-Action-Transformer-Network-Pytorch-

Pytorch and Tensorflow Implementation of the paper Video Action Transformer Network
Rohit Girdhar, Joao Carreira, Carl Doersch, Andrew Zisserman

Retasked Video transformer (uses resnet as base) transformer_v1.py is more like real transformer, transformer.py more true to what paper advertises Usage :

from transformer_v1 import Semi_Transformer
model = Semi_Transformer(num_classes=num_classes , num_frames = max_seq_len)
outputs, features = model(imgs) # outputs is the classification layer output (do cross entropy loss)
                                #features are used as video embedding
                                
##################### or ###################
from transformer_v2 import Semi_Transformer
model = Semi_Transformer(num_classes=625 , seq_len = max_seq_len)

In case you find any discrepency, please raise an issue. If any one was able to reproduce the paper results kindly help me with this issue. If possible please meantion the changes needs to be further added.

More Repositories

1

Video-Person-Re-ID-Fantastic-Techniques-and-Where-to-Find-Them

Official Pytorch Implementation of our paper: Video Person Re-ID : Fantastic Techniques and Where to Find Them
Python
58
star
2

Pytorch-CustomDataset-FasterRCNN

Pytorch based FasterRCNN for custom dataset
Python
30
star
3

Prince-Set-UP

NYU Prince set up
24
star
4

Bert-Coref-Resolution-Lee-

Coreference Model Experimentation (Tensorflow and Pytorch) : Mainly Using transfer learning and Transformer Model BERT
Python
22
star
5

-Online-Soft-Mining-and-Class-Aware-Attention-Pytorch

(Pytorch and Tensorflow) Implementation of Weighted Contrastive Loss (Deep Metric Learning by Online Soft Mining and Class-Aware Attention)
Python
21
star
6

Deep-neural-network-for-traffic-sign-recognition-systems

Pytorch Implementation of Deep neural network for traffic sign recognition systems: An analysis of spatial transformers and stochastic optimisation methods
Python
16
star
7

Pytorch-Additive_Margin_Softmax_for_Face_Verification

Pytorch Implementation of AMSoftmax
Python
15
star
8

Fine-grained-Re-Identification

Code for our paper Fine-Grained Re-Identification
Python
9
star
9

Object-Detection-Custom-Dataset-pytorch

Training object detection on custom dataset
Python
7
star
10

NYU-Singularity

5
star
11

MicronNet

MicronNet: A Highly Compact Deep Convolutional Neural Network Architecture for Real-time Embedded Traffic Sign Classification
Jupyter Notebook
4
star
12

Pytorch-Zero-Shot-Person-Re-identification-via-Cross-View-Consistency

Slightly Tweaked implementation of the Zero-Shot Person Re-identification via Cross-View Consistency in Pytorch
Python
2
star
13

Adveserial-Attacks

Jupyter Notebook
1
star