tombou commited on
Commit
651dca2
·
verified ·
1 Parent(s): aadd422

chore: add pre-trained distilBERT config files

Browse files

Previous versions were stored in the git LFS format, making API raise an error "not valid JSON format"

tasks/models/pretrained_models/2025-01-27_17-00-47_DistilBERT_Model_fined-tuned_from_distilbert-base-uncased/config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "0_not_relevant",
13
+ "1": "1_not_happening",
14
+ "2": "2_not_human",
15
+ "3": "3_not_bad",
16
+ "4": "4_solutions_harmful_unnecessary",
17
+ "5": "5_science_unreliable",
18
+ "6": "6_proponents_biased",
19
+ "7": "7_fossil_fuels_needed"
20
+ },
21
+ "initializer_range": 0.02,
22
+ "label2id": {
23
+ "0_not_relevant": 0,
24
+ "1_not_happening": 1,
25
+ "2_not_human": 2,
26
+ "3_not_bad": 3,
27
+ "4_solutions_harmful_unnecessary": 4,
28
+ "5_science_unreliable": 5,
29
+ "6_proponents_biased": 6,
30
+ "7_fossil_fuels_needed": 7
31
+ },
32
+ "max_position_embeddings": 512,
33
+ "model_type": "distilbert",
34
+ "n_heads": 12,
35
+ "n_layers": 6,
36
+ "pad_token_id": 0,
37
+ "qa_dropout": 0.1,
38
+ "seq_classif_dropout": 0.2,
39
+ "sinusoidal_pos_embds": false,
40
+ "tie_weights_": true,
41
+ "transformers_version": "4.48.1",
42
+ "vocab_size": 30522
43
+ }
tasks/models/pretrained_models/2025-01-27_17-00-47_DistilBERT_Model_fined-tuned_from_distilbert-base-uncased/config_training.json ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "distilbert",
3
+ "model_name": "distilbert-base-uncased",
4
+ "batch_size": 32,
5
+ "num_epochs": 10,
6
+ "initial_learning_rate": 2e-05,
7
+ "description": "DistilBERT Model (fined-tuned from distilbert-base-uncased)"
8
+ }