theojolliffe commited on
Commit
861a257
1 Parent(s): e0519c9

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "Vegetables",
13
+ "1": "Fish/Seafood",
14
+ "2": "Meat",
15
+ "3": "Fermented",
16
+ "4": "Cereals",
17
+ "5": "Dessert",
18
+ "6": "Eggs and dairy",
19
+ "7": "Fats and oils",
20
+ "8": "Fruits",
21
+ "9": "Herbs",
22
+ "10": "Nuts",
23
+ "11": "Pulses",
24
+ "12": "Spices"
25
+ },
26
+ "initializer_range": 0.02,
27
+ "label2id": {
28
+ "Cereals": 4,
29
+ "Dessert": 5,
30
+ "Eggs and dairy": 6,
31
+ "Fats and oils": 7,
32
+ "Fermented": 3,
33
+ "Fish/Seafood": 1,
34
+ "Fruits": 8,
35
+ "Herbs": 9,
36
+ "Meat": 2,
37
+ "Nuts": 10,
38
+ "Pulses": 11,
39
+ "Spices": 12,
40
+ "Vegetables": 0
41
+ },
42
+ "max_position_embeddings": 512,
43
+ "model_type": "distilbert",
44
+ "n_heads": 12,
45
+ "n_layers": 6,
46
+ "pad_token_id": 0,
47
+ "problem_type": "single_label_classification",
48
+ "qa_dropout": 0.1,
49
+ "seq_classif_dropout": 0.2,
50
+ "sinusoidal_pos_embds": false,
51
+ "tie_weights_": true,
52
+ "torch_dtype": "float32",
53
+ "transformers_version": "4.25.1",
54
+ "vocab_size": 30522
55
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcfdfb3d1dda9b50e5045a0c05149febdb091f9d3fe8db79eab904f9746b9e8e
3
+ size 267887917
runs/Jan13_14-46-17_Theos-MacBook-Pro.local/1673621187.2425659/events.out.tfevents.1673621187.Theos-MacBook-Pro.local.25787.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcabca2efbe9ff8d488a9f6af69627bf16263a9421dfd813ce8fc2deb03170c4
3
+ size 5496
runs/Jan13_14-46-17_Theos-MacBook-Pro.local/events.out.tfevents.1673621187.Theos-MacBook-Pro.local.25787.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e410eb1c0ca4990c54d572fba7c8dc32de3fa88726475ab3f78285940292c17
3
+ size 4572
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "distilbert-base-uncased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "DistilBertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7913ff4dbec4b78e7a41f20bfa6d58f289b9c45d24dd5aff412d29e601701128
3
+ size 3387
vocab.txt ADDED
The diff for this file is too large to render. See raw diff