All Projects → yihui-he → Mini Imagenet

yihui-he / Mini Imagenet

Licence: mit
Generate mini-ImageNet with ImageNet for fewshot learning

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Mini Imagenet

Robustness
Corruption and Perturbation Robustness (ICLR 2019)
Stars: ✭ 463 (+2004.55%)
Mutual labels:  imagenet
Label Studio
Label Studio is a multi-type data labeling and annotation tool with standardized output format
Stars: ✭ 7,264 (+32918.18%)
Mutual labels:  imagenet
Caffenet Benchmark
Evaluation of the CNN design choices performance on ImageNet-2012.
Stars: ✭ 700 (+3081.82%)
Mutual labels:  imagenet
Ml5 Library
Friendly machine learning for the web! 🤖
Stars: ✭ 5,280 (+23900%)
Mutual labels:  imagenet
Meal V2
MEAL V2: Boosting Vanilla ResNet-50 to 80%+ Top-1 Accuracy on ImageNet without Tricks
Stars: ✭ 534 (+2327.27%)
Mutual labels:  imagenet
Hrnet Image Classification
Train the HRNet model on ImageNet
Stars: ✭ 633 (+2777.27%)
Mutual labels:  imagenet
Class Balanced Loss
Class-Balanced Loss Based on Effective Number of Samples. CVPR 2019
Stars: ✭ 433 (+1868.18%)
Mutual labels:  imagenet
Switchable Normalization
Code for Switchable Normalization from "Differentiable Learning-to-Normalize via Switchable Normalization", https://arxiv.org/abs/1806.10779
Stars: ✭ 804 (+3554.55%)
Mutual labels:  imagenet
Cvat
Powerful and efficient Computer Vision Annotation Tool (CVAT)
Stars: ✭ 6,557 (+29704.55%)
Mutual labels:  imagenet
Pytorch2keras
PyTorch to Keras model convertor
Stars: ✭ 676 (+2972.73%)
Mutual labels:  imagenet
Fishnet
Implementation code of the paper: FishNet: A Versatile Backbone for Image, Region, and Pixel Level Prediction, NeurIPS 2018
Stars: ✭ 533 (+2322.73%)
Mutual labels:  imagenet
Lemniscate.pytorch
Unsupervised Feature Learning via Non-parametric Instance Discrimination
Stars: ✭ 532 (+2318.18%)
Mutual labels:  imagenet
Efficientnet Pytorch
A PyTorch implementation of EfficientNet and EfficientNetV2 (coming soon!)
Stars: ✭ 6,685 (+30286.36%)
Mutual labels:  imagenet
Tensorflow object tracking video
Object Tracking in Tensorflow ( Localization Detection Classification ) developed to partecipate to ImageNET VID competition
Stars: ✭ 491 (+2131.82%)
Mutual labels:  imagenet
Addernet
Code for paper " AdderNet: Do We Really Need Multiplications in Deep Learning?"
Stars: ✭ 722 (+3181.82%)
Mutual labels:  imagenet
Msdnet
Multi-Scale Dense Networks for Resource Efficient Image Classification (ICLR 2018 Oral)
Stars: ✭ 443 (+1913.64%)
Mutual labels:  imagenet
Pytorch Mobilenet V3
MobileNetV3 in pytorch and ImageNet pretrained models
Stars: ✭ 616 (+2700%)
Mutual labels:  imagenet
Tensorlayer
Deep Learning and Reinforcement Learning Library for Scientists and Engineers 🔥
Stars: ✭ 6,796 (+30790.91%)
Mutual labels:  imagenet
Pytorch image classification
PyTorch implementation of image classification models for CIFAR-10/CIFAR-100/MNIST/FashionMNIST/Kuzushiji-MNIST/ImageNet
Stars: ✭ 795 (+3513.64%)
Mutual labels:  imagenet
Randwirenn
Implementation of: "Exploring Randomly Wired Neural Networks for Image Recognition"
Stars: ✭ 675 (+2968.18%)
Mutual labels:  imagenet

Generate mini-ImageNet with ImageNet

for both caffe and torch style input

prepare ImageNet

mkdir train && mv ILSVRC2012_img_train.tar train/ && cd train
tar -xvf ILSVRC2012_img_train.tar && rm -f ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash
rm -f ILSVRC2012_img_val.tar

without deleting *.tar

mkdir train && mv ILSVRC2012_img_train.tar train/ && cd train
tar -xvf ILSVRC2012_img_train.tar
find . -name "*.tar" | while read NAME ; do mkdir -p "${NAME%.tar}"; tar -xvf "${NAME}" -C "${NAME%.tar}"; rm -f "${NAME}"; done
cd ..
mkdir val && mv ILSVRC2012_img_val.tar val/ && cd val && tar -xvf ILSVRC2012_img_val.tar
wget -qO- https://raw.githubusercontent.com/soumith/imagenetloader.torch/master/valprep.sh | bash

Generate mini-ImageNet

python generate.py
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].