Blazer007 commited on
Commit
96a8e2d
1 Parent(s): ebbfd96

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +18 -2
README.md CHANGED
@@ -9,7 +9,22 @@ tags:
9
 
10
  ## Model description
11
 
12
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  ## Intended uses & limitations
15
 
@@ -17,7 +32,8 @@ More information needed
17
 
18
  ## Training and evaluation data
19
 
20
- More information needed
 
21
 
22
  ## Training procedure
23
 
 
9
 
10
  ## Model description
11
 
12
+ ### Consistency training with supervision
13
+
14
+ In this example, we have trained an image classification model enforcing a sense of consistency inside it by doing the following:
15
+
16
+ - Train a standard image classification model.
17
+ - Train an equal or larger model on a noisy version of the dataset (augmented using RandAugment).
18
+ - To do this, we will first obtain predictions of the previous model on the clean images of the dataset.
19
+ - We will then use these predictions and train the second model to match these predictions on the noisy variant of the same images. This is identical to the workflow of Knowledge Distillation but since the student model is equal or larger in size this process is also referred to as Self-Training.
20
+
21
+ This overall training workflow finds its roots in works like FixMatch, Unsupervised Data Augmentation for Consistency Training, and Noisy Student Training. Since this training process encourages a model yield consistent predictions for clean as well as noisy images, it's often referred to as consistency training or training with consistency regularization. Although the example focuses on using consistency training to enhance the robustness of models to common corruptions this example can also serve a template for performing weakly supervised learning.
22
+
23
+ Full Credits to <a href = "https://twitter.com/RisingSayak" target='_blank'> Sayak Paul </a> for this work.
24
+
25
+ This repo contains only the <b> Teacher Model </b> of this training example.
26
+
27
+ <b>Student Model </b>Repo can be find at this <a href = "" target='_blank'> Link </a>.
28
 
29
  ## Intended uses & limitations
30
 
 
32
 
33
  ## Training and evaluation data
34
 
35
+ Trained and evaluated on [CIFAR-10](https://keras.io/api/datasets/cifar10/) dataset.
36
+
37
 
38
  ## Training procedure
39