All Projects → wanglimin → Artnet

wanglimin / Artnet

Appearance-and-Relation Networks

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Artnet

Sparse Evolutionary Artificial Neural Networks
Always sparse. Never dense. But never say never. A repository for the Adaptive Sparse Connectivity concept and its algorithmic instantiation, i.e. Sparse Evolutionary Training, to boost Deep Learning scalability on various aspects (e.g. memory and computational time efficiency, representation and generalization power).
Stars: ✭ 182 (-9.45%)
Mutual labels:  deep-neural-networks
Awesome Video Object Detection
This is a list of awesome articles about object detection from video.
Stars: ✭ 190 (-5.47%)
Mutual labels:  deep-neural-networks
Keras Unet
Helper package with multiple U-Net implementations in Keras as well as useful utility tools helpful when working with image semantic segmentation tasks. This library and underlying tools come from multiple projects I performed working on semantic segmentation tasks
Stars: ✭ 196 (-2.49%)
Mutual labels:  deep-neural-networks
Plotneuralnet
Latex code for making neural networks diagrams
Stars: ✭ 14,316 (+7022.39%)
Mutual labels:  deep-neural-networks
Germanwordembeddings
Toolkit to obtain and preprocess german corpora, train models using word2vec (gensim) and evaluate them with generated testsets
Stars: ✭ 189 (-5.97%)
Mutual labels:  deep-neural-networks
Hdltex
HDLTex: Hierarchical Deep Learning for Text Classification
Stars: ✭ 191 (-4.98%)
Mutual labels:  deep-neural-networks
Studytensorflow
How to use TensorFlow
Stars: ✭ 180 (-10.45%)
Mutual labels:  deep-neural-networks
Traffic Sign Detection
Traffic Sign Detection. Code for the paper entitled "Evaluation of deep neural networks for traffic sign detection systems".
Stars: ✭ 200 (-0.5%)
Mutual labels:  deep-neural-networks
Emotion Classification From Audio Files
Understanding emotions from audio files using neural networks and multiple datasets.
Stars: ✭ 189 (-5.97%)
Mutual labels:  deep-neural-networks
Tfmesos
Tensorflow in Docker on Mesos #tfmesos #tensorflow #mesos
Stars: ✭ 194 (-3.48%)
Mutual labels:  deep-neural-networks
Deep Survey Text Classification
The project surveys 16+ Natural Language Processing (NLP) research papers that propose novel Deep Neural Network Models for Text Classification, based on Convolutional Neural Networks (CNN) and Recurrent Neural Networks (RNN). It also implements each of the models using Tensorflow and Keras.
Stars: ✭ 187 (-6.97%)
Mutual labels:  deep-neural-networks
Snn toolbox
Toolbox for converting analog to spiking neural networks (ANN to SNN), and running them in a spiking neuron simulator.
Stars: ✭ 187 (-6.97%)
Mutual labels:  deep-neural-networks
Free Ai Resources
🚀 FREE AI Resources - 🎓 Courses, 👷 Jobs, 📝 Blogs, 🔬 AI Research, and many more - for everyone!
Stars: ✭ 192 (-4.48%)
Mutual labels:  deep-neural-networks
Orion
Asynchronous Distributed Hyperparameter Optimization.
Stars: ✭ 186 (-7.46%)
Mutual labels:  deep-neural-networks
Sparse Structured Attention
Sparse and structured neural attention mechanisms
Stars: ✭ 198 (-1.49%)
Mutual labels:  deep-neural-networks
Dkeras
Distributed Keras Engine, Make Keras faster with only one line of code.
Stars: ✭ 181 (-9.95%)
Mutual labels:  deep-neural-networks
Focal Loss Keras
Binary and Categorical Focal loss implementation in Keras.
Stars: ✭ 191 (-4.98%)
Mutual labels:  deep-neural-networks
Neuralet
Neuralet is an open-source platform for edge deep learning models on edge TPU, Jetson Nano, and more.
Stars: ✭ 200 (-0.5%)
Mutual labels:  deep-neural-networks
Pytorch Geometric Yoochoose
This is a tutorial for PyTorch Geometric on the YooChoose dataset
Stars: ✭ 198 (-1.49%)
Mutual labels:  deep-neural-networks
Hnatt
Train and visualize Hierarchical Attention Networks
Stars: ✭ 192 (-4.48%)
Mutual labels:  deep-neural-networks

Appearance-and-Relation Networks

We provide the code and models for the following report (arXiv Preprint):

  Appearance-and-Relation Networks for Video Classification
  Limin Wang, Wei Li, Wen Li, and Luc Van Gool
  in arXiv, 2017

Updates

  • November 23th, 2017
    • Initialize the repo.

Overview

ARTNet aims to learn spatiotemporal features from videos in an end-to-end manner. Its construction is based on a newly-designed module, termed as SMART block. ARTNet is a simple and general video architecture and all these relased models are trained from scratch on video dataset. Currently, for an engineering compromise between accuracy and efficiency, ARTNet is instantiated with the ResNet-18 architecture and trained on the input volume of 112*112*16.

Training on Kinetics

The training of ARTNet is based on our modified Caffe toolbox. Specical thanks to @zbwglory for modifying this code.

The training code is under folder of models/.

Performance on the validation set of Kinetics

Model Backbone architecture Spatial resolution Top-1 Accuracy Top-5 Accuracy
C2D   ResNet18     112*112   61.2 82.6
C3D   ResNet18     112*112   65.6 85.7
C3D   ResNet34     112*112   67.1 86.9
ARTNet (s)   ResNet18     112*112   67.7 87.1
ARTNet (d)   ResNet18     112*112   69.2 88.3
ARTNet+TSN   ResNet18     112*112   70.7 89.3

These models are trained on the Kinetics dataset from scratch and tested on the validation set. Our training is performed based on the input volume of 112*112*16. The test is performed by cropping 25 clips from the videos.

Fine tuning on HMDB51 and UCF101

The fine tuning process is conducted based on the TSN framework, where segment number is 2.

The fine tuning code is under folder of fine_tune/

Performance on the datasets of HMDB51 and UCF101

Model Backbone architecture Spatial resolution HMDB51 UCF101
C3D   ResNet18     112*112   62.1 89.8
ARTNet (d)   ResNet18     112*112   67.6 93.5
ARTNet+TSN   ResNet18     112*112   70.9 94.3

These models learned on the Kinetics dataset are transferred to the HMDB51 and UCF101 datasets. The fine-tuning process is done with TSN framework where the segment number is 2. The performance is reported over three splits by using only RGB input.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].