All Projects → vlomonaco → Core50

vlomonaco / Core50

Licence: other
CORe50: a new Dataset and Benchmark for Continual Learning

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Core50

Caffenet Benchmark
Evaluation of the CNN design choices performance on ImageNet-2012.
Stars: ✭ 700 (+669.23%)
Mutual labels:  dataset, convolutional-neural-networks, caffe, benchmark
Recursive Cnns
Implementation of my paper "Real-time Document Localization in Natural Images by Recursive Application of a CNN."
Stars: ✭ 80 (-12.09%)
Mutual labels:  dataset, paper, convolutional-neural-networks
Fashion Mnist
A MNIST-like fashion product database. Benchmark 👇
Stars: ✭ 9,675 (+10531.87%)
Mutual labels:  dataset, convolutional-neural-networks, benchmark
Person search
Joint Detection and Identification Feature Learning for Person Search
Stars: ✭ 666 (+631.87%)
Mutual labels:  dataset, caffe
Vpgnet
VPGNet: Vanishing Point Guided Network for Lane and Road Marking Detection and Recognition (ICCV 2017)
Stars: ✭ 382 (+319.78%)
Mutual labels:  dataset, caffe
O Cnn
O-CNN: Octree-based Convolutional Neural Networks for 3D Shape Analysis
Stars: ✭ 432 (+374.73%)
Mutual labels:  convolutional-neural-networks, caffe
Medmnist
[ISBI'21] MedMNIST Classification Decathlon: A Lightweight AutoML Benchmark for Medical Image Analysis
Stars: ✭ 338 (+271.43%)
Mutual labels:  dataset, benchmark
All Classifiers 2019
A collection of computer vision projects for Acute Lymphoblastic Leukemia classification/early detection.
Stars: ✭ 22 (-75.82%)
Mutual labels:  convolutional-neural-networks, caffe
Awesome Face
😎 face releated algorithm, dataset and paper
Stars: ✭ 739 (+712.09%)
Mutual labels:  dataset, paper
Facerank
FaceRank - Rank Face by CNN Model based on TensorFlow (add keras version). FaceRank-人脸打分基于 TensorFlow (新增 Keras 版本) 的 CNN 模型(QQ群:167122861)。技术支持:http://tensorflow123.com
Stars: ✭ 841 (+824.18%)
Mutual labels:  dataset, convolutional-neural-networks
Okutama Action
Okutama-Action: An Aerial View Video Dataset for Concurrent Human Action Detection
Stars: ✭ 36 (-60.44%)
Mutual labels:  dataset, benchmark
Trashnet
Dataset of images of trash; Torch-based CNN for garbage image classification
Stars: ✭ 368 (+304.4%)
Mutual labels:  dataset, convolutional-neural-networks
Benchmark results
Visual Tracking Paper List
Stars: ✭ 3,672 (+3935.16%)
Mutual labels:  paper, benchmark
Face Landmarks Detection Benchmark
Face landmarks(fiducial points) detection benchmark
Stars: ✭ 348 (+282.42%)
Mutual labels:  convolutional-neural-networks, benchmark
Teacher Student Training
This repository stores the files used for my summer internship's work on "teacher-student learning", an experimental method for training deep neural networks using a trained teacher model.
Stars: ✭ 34 (-62.64%)
Mutual labels:  convolutional-neural-networks, caffe
Feathercnn
FeatherCNN is a high performance inference engine for convolutional neural networks.
Stars: ✭ 1,106 (+1115.38%)
Mutual labels:  convolutional-neural-networks, caffe
Machine Learning Curriculum
💻 Make machines learn so that you don't have to struggle to program them; The ultimate list
Stars: ✭ 761 (+736.26%)
Mutual labels:  convolutional-neural-networks, caffe
Deeperforensics 1.0
[CVPR 2020] A Large-Scale Dataset for Real-World Face Forgery Detection
Stars: ✭ 338 (+271.43%)
Mutual labels:  dataset, benchmark
Pcam
The PatchCamelyon (PCam) deep learning classification benchmark.
Stars: ✭ 340 (+273.63%)
Mutual labels:  dataset, benchmark
Deep learning projects
Stars: ✭ 28 (-69.23%)
Mutual labels:  dataset, convolutional-neural-networks

CORe50

License: CC BY 4.0 built with Python2.7 built with Caffe built with Sacred

A new Dataset and Benchmark for Continual Learning and Object Recognition, Detection and Segmentation


  • [x] CORe50 core code-base
  • [x] CORe50 benchmark configuration files
  • [x] Easy-to-access results data and batches configurations
  • [x] Easy-setup, getting started and Python data loader
  • [x] Experiments ported to Python 3.x
  • [ ] New realease and additional baselines (in progress...)

In this page we provide the code and all the materials related to the CORe50 benchmark. If you plan to use this dataset or other resources you'll find in this page, please cite our latest papers "CORe50: a New Dataset and Benchmark for Continuous Object Recognition" and "Fine-Grained Continual Learning":

@InProceedings{lomonaco2017core50,
   title = {CORe50: a New Dataset and Benchmark for Continuous Object Recognition},
   author = {Vincenzo Lomonaco and Davide Maltoni},
   booktitle = {Proceedings of the 1st Annual Conference on Robot Learning},
   pages = {17--26},
   year = {2017},
   volume = {78}
}

@article{lomonaco2019nicv2,
   title = {Fine-Grained Continual Learning},
   author = {Vincenzo Lomonaco and Davide Maltoni and Lorenzo Pellegrini},
   journal = {Arxiv preprint arXiv:1907.03799},
   year = {2019}
}

You can find more information about the dataset/benchmark as well as additional data to download at: vlomonaco.github.io/core50.


Dependencies

In order to extecute the code in the repository you'll need to install the following dependencies in a Python 3.x environment:

  • Numpy: Matrices operations and stuff
pip install numpy
pip install sacred
  • Caffe: Current DL back-end (easily interchangeable)

Follow the step-by-step guide for installing caffe here.


Project Structure

Up to now the projects is structured as follows:

  • confs/: In this folder you can find all the experiments configurations and the caffe definition files. sI, sII and sIII stand for the NI, NC and NIC scenarios, respectively.
  • core/: The actual code of the benchmark.
  • data/: After the setup it will be created and filled with data needed for the experiments. It will also be used for storing partial computations.
  • extras/: Results and configuration files you can download without delving into the code.
  • scripts/: It contains useful scripts to help you downloading the necessary materials, setup the environment or load the data for your experiments in Python.
  • LICENSE: Standard Creative Commons Attribution 4.0 International License.
  • README.md: This instructions file.
  • run_sI_exps.sh: Simple bash script for running the "New Instances (NI)" experiments with the different architectures and strategies
  • run_sII_exps.sh: Simple bash script for running the "New Classes (NC)" experiments with the different architectures and strategies
  • run_sIII_exps.sh: Simple bash script for running the "New Instances and Classes (NIC)" experiments with the different architectures and strategies

Getting Started

First of all, let's clone the repository:

git clone https://github.com/vlomonaco/core50.git

Then, in order to run the experiments and reproduce the benchmark we need to download the pre-trained models and the CORe50 dataset. This can be automatically done using the script provided:

cd core50
./scripts/bash/fetch_data_and_setup.sh

All the data will be downloaded in the data/ directory. After this initial step you can directly run the experiments with the bash scripts run_sI_exps.sh, run_sII_exps.sh and run_sIII_exps.sh for the NI, NC and NIC scenarios respectively.

For example, reproducing the first scenario experiments can be as easy as running:

./run_sI_exps.sh

Since this experiments can take a while (also more than 24h depending on the scenario) you can also disable some experiments just by commenting them in the bash script.


Troubleshooting

  • If you find different results from out benchmark (for a few percentage points) that is to be expected! First of all because we use the cudnn engine which is not fully deterministic for convolutions. Second because the error may be accumulated during the incremental learning process. If you want full reproducibility (which means a ~2x in terms of time needed) just set the engine param of convolutions to 1.

  • If you find some trouble with the freezeweights strategy this is probably because you need to reset the learning rate multipliers in the prototxt (sorry, my bad.. I'm currently working on a new version of the code for creating the prototxt files instead of modifying them on the fly.).

  • Hey! If you find any trouble don't get frustrated, just ask, we'll answer in a few hours! :-)


License

This work is licensed under a Creative Commons Attribution 4.0 International License.


Author

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].