theojolliffe
commited on
Commit
·
92f1f7f
1
Parent(s):
27e953e
Training in progress, epoch 1
Browse files- config.json +3 -2
- pytorch_model.bin +2 -2
- runs/Jan13_14-54-15_Theos-MacBook-Pro.local/events.out.tfevents.1673621659.Theos-MacBook-Pro.local.25787.4 +2 -2
- runs/Jan13_15-43-16_Theos-MacBook-Pro.local/1673624604.861761/events.out.tfevents.1673624604.Theos-MacBook-Pro.local.25787.7 +3 -0
- runs/Jan13_15-43-16_Theos-MacBook-Pro.local/events.out.tfevents.1673624604.Theos-MacBook-Pro.local.25787.6 +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +5 -3
- training_args.bin +1 -1
- vocab.txt +0 -0
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "distilbert-
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForSequenceClassification"
|
@@ -43,6 +43,7 @@
|
|
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,
|
@@ -51,5 +52,5 @@
|
|
51 |
"tie_weights_": true,
|
52 |
"torch_dtype": "float32",
|
53 |
"transformers_version": "4.25.1",
|
54 |
-
"vocab_size":
|
55 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "chambliss/distilbert-for-food-extraction",
|
3 |
"activation": "gelu",
|
4 |
"architectures": [
|
5 |
"DistilBertForSequenceClassification"
|
|
|
43 |
"model_type": "distilbert",
|
44 |
"n_heads": 12,
|
45 |
"n_layers": 6,
|
46 |
+
"output_past": true,
|
47 |
"pad_token_id": 0,
|
48 |
"problem_type": "single_label_classification",
|
49 |
"qa_dropout": 0.1,
|
|
|
52 |
"tie_weights_": true,
|
53 |
"torch_dtype": "float32",
|
54 |
"transformers_version": "4.25.1",
|
55 |
+
"vocab_size": 28996
|
56 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6dbce560ba1742185a56309a49642b5e5b3f8a3587d7856f6dda3d3bdaf0f105
|
3 |
+
size 263200045
|
runs/Jan13_14-54-15_Theos-MacBook-Pro.local/events.out.tfevents.1673621659.Theos-MacBook-Pro.local.25787.4
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:13e7a7d08a691d37b7e9cddda9959742c71e34ca1cbb4dbb12f7e5058fd643ac
|
3 |
+
size 6209
|
runs/Jan13_15-43-16_Theos-MacBook-Pro.local/1673624604.861761/events.out.tfevents.1673624604.Theos-MacBook-Pro.local.25787.7
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b030ea663ad68b73314cb9881efd814634ba45f7d45686c6577be232569c7fd5
|
3 |
+
size 5496
|
runs/Jan13_15-43-16_Theos-MacBook-Pro.local/events.out.tfevents.1673624604.Theos-MacBook-Pro.local.25787.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aa0cdc44aa0ecaa481e4b88c623fa4ee93e2741c91ccb0c615a912493a19b541
|
3 |
+
size 4532
|
tokenizer.json
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
CHANGED
@@ -1,12 +1,14 @@
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
-
"
|
|
|
4 |
"mask_token": "[MASK]",
|
5 |
"model_max_length": 512,
|
6 |
-
"name_or_path": "distilbert-
|
|
|
7 |
"pad_token": "[PAD]",
|
8 |
"sep_token": "[SEP]",
|
9 |
-
"special_tokens_map_file":
|
10 |
"strip_accents": null,
|
11 |
"tokenize_chinese_chars": true,
|
12 |
"tokenizer_class": "DistilBertTokenizer",
|
|
|
1 |
{
|
2 |
"cls_token": "[CLS]",
|
3 |
+
"do_basic_tokenize": true,
|
4 |
+
"do_lower_case": false,
|
5 |
"mask_token": "[MASK]",
|
6 |
"model_max_length": 512,
|
7 |
+
"name_or_path": "chambliss/distilbert-for-food-extraction",
|
8 |
+
"never_split": null,
|
9 |
"pad_token": "[PAD]",
|
10 |
"sep_token": "[SEP]",
|
11 |
+
"special_tokens_map_file": "/Users/theojolliffe/.cache/huggingface/hub/models--chambliss--distilbert-for-food-extraction/snapshots/d7d194fb9c2ce6ea36b80be0133d331f58532980/special_tokens_map.json",
|
12 |
"strip_accents": null,
|
13 |
"tokenize_chinese_chars": true,
|
14 |
"tokenizer_class": "DistilBertTokenizer",
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 3387
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d647c5d841e8fe94dd0ffb3e6587e9b2b248d3307bb29913836290f63eeddce8
|
3 |
size 3387
|
vocab.txt
CHANGED
The diff for this file is too large to render.
See raw diff
|
|