Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jeonsworld committed Nov 3, 2020
1 parent 53b6679 commit cae389e
Show file tree
Hide file tree
Showing 7 changed files with 866 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,19 @@ python3 train.py --name cifar10-100_500 --dataset cifar10 --model_type ViT-B_16
```



## Results
To verify reproducibility, we simply compare it with the author's experimental results.

| upstream | model | dataset | total_steps /warmup_steps | acc(official) | acc(this repo) | tensorboard |
|:-----------:|:--------:|:---------:|:-------------------------:|:-------------:|:--------------:|:-----------:|
| imagenet21k | ViT-B_16 | CIFAR-10 | 500/100 | 0.9859 | | |
| imagenet21k | ViT-B_16 | CIFAR-10 | 1000/100 | 0.9886 | | |
| imagenet21k | ViT-B_16 | CIFAR-100 | 500/100 | 0.8917 | | |
| imagenet21k | ViT-B_16 | CIFAR-100 | 1000/100 | 0.9115 | | |
[**tensorboard**]()

| upstream | model | dataset | total_steps /warmup_steps | acc(official) | acc(this repo) |
|:-----------:|:--------:|:---------:|:-------------------------:|:-------------:|:--------------:|
| imagenet21k | ViT-B_16 | CIFAR-10 | 500/100 | 0.9859 | 0.9869 |
| imagenet21k | ViT-B_16 | CIFAR-10 | 1000/100 | 0.9886 | |
| imagenet21k | ViT-B_16 | CIFAR-100 | 500/100 | 0.8917 | in progress |
| imagenet21k | ViT-B_16 | CIFAR-100 | 1000/100 | 0.9115 | in progress |


## Reference
* [Google ViT](https://github.com/google-research/vision_transformer)
Expand Down
77 changes: 77 additions & 0 deletions models/configs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import ml_collections


def get_testing():
"""Returns a minimal configuration for testing."""
config = ml_collections.ConfigDict()
config.patches = ml_collections.ConfigDict({'size': (16, 16)})
config.hidden_size = 1
config.transformer = ml_collections.ConfigDict()
config.transformer.mlp_dim = 1
config.transformer.num_heads = 1
config.transformer.num_layers = 1
config.transformer.attention_dropout_rate = 0.0
config.transformer.dropout_rate = 0.1
config.classifier = 'token'
config.representation_size = None
return config


def get_b16_config():
"""Returns the ViT-B/16 configuration."""
config = ml_collections.ConfigDict()
config.patches = ml_collections.ConfigDict({'size': (16, 16)})
config.hidden_size = 768
config.transformer = ml_collections.ConfigDict()
config.transformer.mlp_dim = 3072
config.transformer.num_heads = 12
config.transformer.num_layers = 12
config.transformer.attention_dropout_rate = 0.0
config.transformer.dropout_rate = 0.1
config.classifier = 'token'
config.representation_size = None
return config


def get_b32_config():
"""Returns the ViT-B/32 configuration."""
config = get_b16_config()
config.patches.size = (32, 32)
return config


def get_l16_config():
"""Returns the ViT-L/16 configuration."""
config = ml_collections.ConfigDict()
config.patches = ml_collections.ConfigDict({'size': (16, 16)})
config.hidden_size = 1024
config.transformer = ml_collections.ConfigDict()
config.transformer.mlp_dim = 4096
config.transformer.num_heads = 16
config.transformer.num_layers = 24
config.transformer.attention_dropout_rate = 0.0
config.transformer.dropout_rate = 0.1
config.classifier = 'token'
config.representation_size = None
return config


def get_l32_config():
"""Returns the ViT-L/32 configuration."""
config = get_l16_config()
config.patches.size = (32, 32)
return config
Loading

0 comments on commit cae389e

Please sign in to comment.