Ahmadswaid commited on
Commit
d5d544b
1 Parent(s): 9a30a08
Files changed (1) hide show
  1. config.json +62 -22
config.json CHANGED
@@ -1,23 +1,63 @@
1
  {
2
- "_name_or_path": "distilbert-base-uncased",
3
- "activation": "gelu",
4
- "architectures": [
5
- "DistilBertForMaskedLM"
6
- ],
7
- "attention_dropout": 0.1,
8
- "dim": 768,
9
- "dropout": 0.1,
10
- "hidden_dim": 3072,
11
- "initializer_range": 0.02,
12
- "max_position_embeddings": 512,
13
- "model_type": "distilbert",
14
- "n_heads": 12,
15
- "n_layers": 6,
16
- "pad_token_id": 0,
17
- "qa_dropout": 0.1,
18
- "seq_classif_dropout": 0.2,
19
- "sinusoidal_pos_embds": false,
20
- "tie_weights_": true,
21
- "transformers_version": "4.24.0",
22
- "vocab_size": 30522
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  {
2
+ "sklearn": {
3
+ "columns": [
4
+ "MedInc",
5
+ "HouseAge",
6
+ "AveRooms",
7
+ "AveBedrms",
8
+ "Population",
9
+ "AveOccup",
10
+ "Latitude",
11
+ "Longitude"
12
+ ],
13
+ "environment": [
14
+ "scikit-learn=1.1.1"
15
+ ],
16
+ "example_input": {
17
+ "AveBedrms": [
18
+ 0.9806451612903225,
19
+ 1.0379746835443038,
20
+ 0.9601449275362319
21
+ ],
22
+ "AveOccup": [
23
+ 2.587096774193548,
24
+ 2.8658227848101268,
25
+ 2.6449275362318843
26
+ ],
27
+ "AveRooms": [
28
+ 7.275268817204301,
29
+ 5.39493670886076,
30
+ 6.536231884057971
31
+ ],
32
+ "HouseAge": [
33
+ 38.0,
34
+ 25.0,
35
+ 39.0
36
+ ],
37
+ "Latitude": [
38
+ 37.44,
39
+ 37.31,
40
+ 34.16
41
+ ],
42
+ "Longitude": [
43
+ -122.19,
44
+ -122.03,
45
+ -118.07
46
+ ],
47
+ "MedInc": [
48
+ 9.3198,
49
+ 5.3508,
50
+ 6.4761
51
+ ],
52
+ "Population": [
53
+ 1203.0,
54
+ 1132.0,
55
+ 730.0
56
+ ]
57
+ },
58
+ "model": {
59
+ "file": "skops-ye71b_vi.pkl"
60
+ },
61
+ "task": "tabular-regression"
62
+ }
63
+ }