首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >ImageNet Classification 深度学习模型

ImageNet Classification 深度学习模型

原创
作者头像
vanguard
修改2020-03-16 11:14:42
7540
修改2020-03-16 11:14:42
举报
文章被收录于专栏:vanguardvanguard

https://github.com/google-research/noisystudent Tensorflow

  1. Train a classifier on labeled data (teacher).
  2. Infer labels on a much larger unlabeled dataset.
  3. Train a larger classifier on the combined set, adding noise (noisy student).
  4. Go to step 2, with student as teacher
python main.py \
    --model_name=efficientnet-b0 \
    --use_tpu=False \
    --use_bfloat16=False \
    --task_name=svhn \
    --mode=train \
    --train_batch_size=128 \
    --iterations_per_loop=1000 \
    --save_checkpoints_steps=1000 \
    --unlabel_ratio=5 \
    --teacher_softmax_temp=1 \
    --augment_name=v1 \
    --randaug_mag=5 \
    --final_base_lr=0.0002 \
    --weight_decay=1e-4 \
    --label_data_dir=./data/svhn/proc \
    --teacher_model_name=efficientnet-b0 \
    --teacher_model_path=ckpt/teacher_ckpt/model.ckpt \
    --model_dir=./ckpt/exp_1 \
    --unlabel_data_dir=./data/svhn/proc/unlabeled

------------------------------

https://github.com/SoojungYang/supervised_pretraining_GN_WS Tensorflow.keras

------------------------------

https://github.com/facebookresearch/FixRes PyTorch 1.0

python main_resnet50_scratch.py --batch 64 --num-tasks 8 --learning-rate 2e-2

------------------------------

https://paperswithcode.com/sota/image-classification-on-imagenet

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档