Commit
•
50a90df
1
Parent(s):
dd9bc45
Update dropout value
Browse filesDropout prob in the transformers model layers is defined as the probability of an activation being set to 0, in the original MobileNet repo it's defined as the keep probability.
See:
- https://github.com/huggingface/transformers/issues/22767
- https://github.com/tensorflow/models/blob/ad32e81e31232675319d5572b78bc196216fd52e/research/slim/nets/mobilenet_v1.py#L306
- config.json +1 -1
config.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
"architectures": [
|
3 |
"MobileNetV1ForImageClassification"
|
4 |
],
|
5 |
-
"classifier_dropout_prob": 0.
|
6 |
"depth_multiplier": 1.0,
|
7 |
"hidden_act": "relu6",
|
8 |
"id2label": {
|
|
|
2 |
"architectures": [
|
3 |
"MobileNetV1ForImageClassification"
|
4 |
],
|
5 |
+
"classifier_dropout_prob": 0.001,
|
6 |
"depth_multiplier": 1.0,
|
7 |
"hidden_act": "relu6",
|
8 |
"id2label": {
|