Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +31 -0
- preprocessor_config.json +26 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "google/mobilenet_v1_0.75_192",
|
3 |
+
"architectures": [
|
4 |
+
"MobileNetV1ForImageClassification"
|
5 |
+
],
|
6 |
+
"classifier_dropout_prob": 0.001,
|
7 |
+
"depth_multiplier": 0.75,
|
8 |
+
"hidden_act": "relu6",
|
9 |
+
"id2label": {
|
10 |
+
"0": "Long SL",
|
11 |
+
"1": "Long TP",
|
12 |
+
"2": "Short SL",
|
13 |
+
"3": "Short TP"
|
14 |
+
},
|
15 |
+
"image_size": 192,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"label2id": {
|
18 |
+
"Long SL": 0,
|
19 |
+
"Long TP": 1,
|
20 |
+
"Short SL": 2,
|
21 |
+
"Short TP": 3
|
22 |
+
},
|
23 |
+
"layer_norm_eps": 0.001,
|
24 |
+
"min_depth": 8,
|
25 |
+
"model_type": "mobilenet_v1",
|
26 |
+
"num_channels": 3,
|
27 |
+
"problem_type": "single_label_classification",
|
28 |
+
"tf_padding": true,
|
29 |
+
"torch_dtype": "float32",
|
30 |
+
"transformers_version": "4.29.2"
|
31 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_size": {
|
3 |
+
"height": 192,
|
4 |
+
"width": 192
|
5 |
+
},
|
6 |
+
"do_center_crop": true,
|
7 |
+
"do_normalize": true,
|
8 |
+
"do_rescale": true,
|
9 |
+
"do_resize": true,
|
10 |
+
"image_mean": [
|
11 |
+
0.5,
|
12 |
+
0.5,
|
13 |
+
0.5
|
14 |
+
],
|
15 |
+
"image_processor_type": "MobileNetV1ImageProcessor",
|
16 |
+
"image_std": [
|
17 |
+
0.5,
|
18 |
+
0.5,
|
19 |
+
0.5
|
20 |
+
],
|
21 |
+
"resample": 2,
|
22 |
+
"rescale_factor": 0.00392156862745098,
|
23 |
+
"size": {
|
24 |
+
"shortest_edge": 224
|
25 |
+
}
|
26 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d8c19bb24519d185945fd667a259d67510532d7b42aae57dc8c3fa037cad9fc9
|
3 |
+
size 7397497
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a5c9d4fd7644e728a57c5c43818c502791f3adfde9df6dfd76b2f3af5a51877a
|
3 |
+
size 3951
|