jacoballessio
commited on
Upload 4 files
Browse files- config.json +136 -0
- model.safetensors +3 -0
- preprocessor_config.json +47 -0
- pytorch_model.bin +3 -0
config.json
ADDED
@@ -0,0 +1,136 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"return_dict": true,
|
3 |
+
"output_hidden_states": false,
|
4 |
+
"output_attentions": false,
|
5 |
+
"torchscript": false,
|
6 |
+
"torch_dtype": "float32",
|
7 |
+
"use_bfloat16": false,
|
8 |
+
"tf_legacy_loss": false,
|
9 |
+
"pruned_heads": {},
|
10 |
+
"tie_word_embeddings": true,
|
11 |
+
"chunk_size_feed_forward": 0,
|
12 |
+
"is_encoder_decoder": false,
|
13 |
+
"is_decoder": false,
|
14 |
+
"cross_attention_hidden_size": null,
|
15 |
+
"add_cross_attention": false,
|
16 |
+
"tie_encoder_decoder": false,
|
17 |
+
"max_length": 20,
|
18 |
+
"min_length": 0,
|
19 |
+
"do_sample": false,
|
20 |
+
"early_stopping": false,
|
21 |
+
"num_beams": 1,
|
22 |
+
"num_beam_groups": 1,
|
23 |
+
"diversity_penalty": 0.0,
|
24 |
+
"temperature": 1.0,
|
25 |
+
"top_k": 50,
|
26 |
+
"top_p": 1.0,
|
27 |
+
"typical_p": 1.0,
|
28 |
+
"repetition_penalty": 1.0,
|
29 |
+
"length_penalty": 1.0,
|
30 |
+
"no_repeat_ngram_size": 0,
|
31 |
+
"encoder_no_repeat_ngram_size": 0,
|
32 |
+
"bad_words_ids": null,
|
33 |
+
"num_return_sequences": 1,
|
34 |
+
"output_scores": false,
|
35 |
+
"return_dict_in_generate": false,
|
36 |
+
"forced_bos_token_id": null,
|
37 |
+
"forced_eos_token_id": null,
|
38 |
+
"remove_invalid_values": false,
|
39 |
+
"exponential_decay_length_penalty": null,
|
40 |
+
"suppress_tokens": null,
|
41 |
+
"begin_suppress_tokens": null,
|
42 |
+
"architectures": [
|
43 |
+
"EfficientNetForImageClassification"
|
44 |
+
],
|
45 |
+
"finetuning_task": null,
|
46 |
+
"id2label": {
|
47 |
+
"0": "LABEL_0",
|
48 |
+
"1": "LABEL_1"
|
49 |
+
},
|
50 |
+
"label2id": {
|
51 |
+
"LABEL_0": 0,
|
52 |
+
"LABEL_1": 1
|
53 |
+
},
|
54 |
+
"tokenizer_class": null,
|
55 |
+
"prefix": null,
|
56 |
+
"bos_token_id": null,
|
57 |
+
"pad_token_id": null,
|
58 |
+
"eos_token_id": null,
|
59 |
+
"sep_token_id": null,
|
60 |
+
"decoder_start_token_id": null,
|
61 |
+
"task_specific_params": null,
|
62 |
+
"problem_type": null,
|
63 |
+
"_name_or_path": "",
|
64 |
+
"transformers_version": "4.41.2",
|
65 |
+
"num_channels": 3,
|
66 |
+
"image_size": 600,
|
67 |
+
"width_coefficient": 2.0,
|
68 |
+
"depth_coefficient": 3.1,
|
69 |
+
"depth_divisor": 8,
|
70 |
+
"kernel_sizes": [
|
71 |
+
3,
|
72 |
+
3,
|
73 |
+
5,
|
74 |
+
3,
|
75 |
+
5,
|
76 |
+
5,
|
77 |
+
3
|
78 |
+
],
|
79 |
+
"in_channels": [
|
80 |
+
32,
|
81 |
+
16,
|
82 |
+
24,
|
83 |
+
40,
|
84 |
+
80,
|
85 |
+
112,
|
86 |
+
192
|
87 |
+
],
|
88 |
+
"out_channels": [
|
89 |
+
16,
|
90 |
+
24,
|
91 |
+
40,
|
92 |
+
80,
|
93 |
+
112,
|
94 |
+
192,
|
95 |
+
320
|
96 |
+
],
|
97 |
+
"depthwise_padding": [],
|
98 |
+
"strides": [
|
99 |
+
1,
|
100 |
+
2,
|
101 |
+
2,
|
102 |
+
2,
|
103 |
+
1,
|
104 |
+
2,
|
105 |
+
1
|
106 |
+
],
|
107 |
+
"num_block_repeats": [
|
108 |
+
1,
|
109 |
+
2,
|
110 |
+
2,
|
111 |
+
3,
|
112 |
+
3,
|
113 |
+
4,
|
114 |
+
1
|
115 |
+
],
|
116 |
+
"expand_ratios": [
|
117 |
+
1,
|
118 |
+
6,
|
119 |
+
6,
|
120 |
+
6,
|
121 |
+
6,
|
122 |
+
6,
|
123 |
+
6
|
124 |
+
],
|
125 |
+
"squeeze_expansion_ratio": 0.25,
|
126 |
+
"hidden_act": "swish",
|
127 |
+
"hidden_dim": 2560,
|
128 |
+
"pooling_type": "mean",
|
129 |
+
"initializer_range": 0.02,
|
130 |
+
"batch_norm_eps": 0.001,
|
131 |
+
"batch_norm_momentum": 0.99,
|
132 |
+
"dropout_rate": 0.5,
|
133 |
+
"drop_connect_rate": 0.2,
|
134 |
+
"num_hidden_layers": 64,
|
135 |
+
"model_type": "efficientnet"
|
136 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3b611ec662a69e02752766cc7327b731d74dc449dc4c241d719c1bf9a72660e8
|
3 |
+
size 256569792
|
preprocessor_config.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_valid_processor_keys": [
|
3 |
+
"images",
|
4 |
+
"do_resize",
|
5 |
+
"size",
|
6 |
+
"resample",
|
7 |
+
"do_center_crop",
|
8 |
+
"crop_size",
|
9 |
+
"do_rescale",
|
10 |
+
"rescale_factor",
|
11 |
+
"rescale_offset",
|
12 |
+
"do_normalize",
|
13 |
+
"image_mean",
|
14 |
+
"image_std",
|
15 |
+
"include_top",
|
16 |
+
"return_tensors",
|
17 |
+
"data_format",
|
18 |
+
"input_data_format"
|
19 |
+
],
|
20 |
+
"crop_size": {
|
21 |
+
"height": 289,
|
22 |
+
"width": 289
|
23 |
+
},
|
24 |
+
"do_center_crop": false,
|
25 |
+
"do_normalize": true,
|
26 |
+
"do_rescale": true,
|
27 |
+
"do_resize": true,
|
28 |
+
"image_mean": [
|
29 |
+
0.485,
|
30 |
+
0.456,
|
31 |
+
0.406
|
32 |
+
],
|
33 |
+
"image_processor_type": "EfficientNetImageProcessor",
|
34 |
+
"image_std": [
|
35 |
+
0.229,
|
36 |
+
0.224,
|
37 |
+
0.225
|
38 |
+
],
|
39 |
+
"include_top": true,
|
40 |
+
"resample": 0,
|
41 |
+
"rescale_factor": 0.00392156862745098,
|
42 |
+
"rescale_offset": false,
|
43 |
+
"size": {
|
44 |
+
"height": 600,
|
45 |
+
"width": 600
|
46 |
+
}
|
47 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fcdf040475b3afcb0ae13b74add1364609781f892794962d869202a176aa6c87
|
3 |
+
size 16335594
|