carolinetfls
commited on
Commit
•
9736c07
1
Parent(s):
a9efc13
Training in progress, step 100
Browse files- .gitignore +1 -0
- config.json +72 -0
- preprocessor_config.json +22 -0
- pytorch_model.bin +3 -0
- runs/Apr26_20-12-57_b81d1a46e7aa/1682539989.715183/events.out.tfevents.1682539989.b81d1a46e7aa.320.9 +3 -0
- runs/Apr26_20-12-57_b81d1a46e7aa/events.out.tfevents.1682539989.b81d1a46e7aa.320.8 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/convnext-tiny-224",
|
3 |
+
"architectures": [
|
4 |
+
"ConvNextForImageClassification"
|
5 |
+
],
|
6 |
+
"depths": [
|
7 |
+
3,
|
8 |
+
3,
|
9 |
+
9,
|
10 |
+
3
|
11 |
+
],
|
12 |
+
"drop_path_rate": 0.0,
|
13 |
+
"hidden_act": "gelu",
|
14 |
+
"hidden_sizes": [
|
15 |
+
96,
|
16 |
+
192,
|
17 |
+
384,
|
18 |
+
768
|
19 |
+
],
|
20 |
+
"id2label": {
|
21 |
+
"0": "Black-grass",
|
22 |
+
"1": "Charlock",
|
23 |
+
"10": "Small-flowered Cranesbill",
|
24 |
+
"11": "Sugar beet",
|
25 |
+
"2": "Cleavers",
|
26 |
+
"3": "Common Chickweed",
|
27 |
+
"4": "Common wheat",
|
28 |
+
"5": "Fat Hen",
|
29 |
+
"6": "Loose Silky-bent",
|
30 |
+
"7": "Maize",
|
31 |
+
"8": "Scentless Mayweed",
|
32 |
+
"9": "Shepherds Purse"
|
33 |
+
},
|
34 |
+
"image_size": 224,
|
35 |
+
"initializer_range": 0.02,
|
36 |
+
"label2id": {
|
37 |
+
"Black-grass": "0",
|
38 |
+
"Charlock": "1",
|
39 |
+
"Cleavers": "2",
|
40 |
+
"Common Chickweed": "3",
|
41 |
+
"Common wheat": "4",
|
42 |
+
"Fat Hen": "5",
|
43 |
+
"Loose Silky-bent": "6",
|
44 |
+
"Maize": "7",
|
45 |
+
"Scentless Mayweed": "8",
|
46 |
+
"Shepherds Purse": "9",
|
47 |
+
"Small-flowered Cranesbill": "10",
|
48 |
+
"Sugar beet": "11"
|
49 |
+
},
|
50 |
+
"layer_norm_eps": 1e-12,
|
51 |
+
"layer_scale_init_value": 1e-06,
|
52 |
+
"model_type": "convnext",
|
53 |
+
"num_channels": 3,
|
54 |
+
"num_stages": 4,
|
55 |
+
"out_features": [
|
56 |
+
"stage4"
|
57 |
+
],
|
58 |
+
"out_indices": [
|
59 |
+
4
|
60 |
+
],
|
61 |
+
"patch_size": 4,
|
62 |
+
"problem_type": "single_label_classification",
|
63 |
+
"stage_names": [
|
64 |
+
"stem",
|
65 |
+
"stage1",
|
66 |
+
"stage2",
|
67 |
+
"stage3",
|
68 |
+
"stage4"
|
69 |
+
],
|
70 |
+
"torch_dtype": "float32",
|
71 |
+
"transformers_version": "4.28.1"
|
72 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"crop_pct": 0.875,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"image_mean": [
|
7 |
+
0.485,
|
8 |
+
0.456,
|
9 |
+
0.406
|
10 |
+
],
|
11 |
+
"image_processor_type": "ConvNextImageProcessor",
|
12 |
+
"image_std": [
|
13 |
+
0.229,
|
14 |
+
0.224,
|
15 |
+
0.225
|
16 |
+
],
|
17 |
+
"resample": 3,
|
18 |
+
"rescale_factor": 0.00392156862745098,
|
19 |
+
"size": {
|
20 |
+
"shortest_edge": 224
|
21 |
+
}
|
22 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ff3121f65241dbf40b432078dea6a1789bcd79c1ec52dde8b49f0f9825f4199b
|
3 |
+
size 111379749
|
runs/Apr26_20-12-57_b81d1a46e7aa/1682539989.715183/events.out.tfevents.1682539989.b81d1a46e7aa.320.9
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14c5c8013152e74970eaa916d9a35b02f8fd69b96079b00d606b4f1799291f3c
|
3 |
+
size 5968
|
runs/Apr26_20-12-57_b81d1a46e7aa/events.out.tfevents.1682539989.b81d1a46e7aa.320.8
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:292541b57a5b815fb660b7d6b8e8d16658a2b8bb8114be6a20e996334f6e2164
|
3 |
+
size 6694
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1a8ecb1e18d5d1880f7abadede89e4efd6bd6f16d10abcf4b71a6df1189cc5e5
|
3 |
+
size 3643
|