RuihaoQiu commited on
Commit
0fd22ba
·
verified ·
1 Parent(s): 1fab4e0

v0.1 simple model

Browse files
Files changed (4) hide show
  1. README.md +55 -0
  2. config.json +9 -0
  3. model.safetensors +3 -0
  4. tokenizer.json +5 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ tags:
6
+ - custom
7
+ - model
8
+ ---
9
+
10
+ # Model Card for test-model
11
+
12
+ ## Model Details
13
+
14
+ ### Model Description
15
+
16
+ A machine learning model developed for specific tasks.
17
+
18
+ - **Developed by:** Ruihao
19
+ - **Model type:** transformer
20
+ - **Library:** transformers
21
+ - **License:** apache-2.0
22
+
23
+ ## How to Get Started with the Model
24
+
25
+ ### Usage
26
+
27
+ Refer to the model documentation for detailed usage instructions.
28
+
29
+ ### Inputs and Outputs
30
+
31
+ The model accepts standard inputs for transformer tasks and produces relevant outputs.
32
+
33
+ ## Training Details
34
+
35
+ ### Training Data
36
+
37
+ The model was trained on curated data appropriate for transformer tasks.
38
+
39
+ ### Training Procedure
40
+
41
+ Standard training procedures were followed using transformers framework.
42
+
43
+ ## Evaluation
44
+
45
+ ### Testing Data, Factors & Metrics
46
+
47
+ The model has been evaluated on standard benchmarks relevant to transformer tasks.
48
+
49
+ ## Environmental Impact
50
+
51
+ Training and inference environmental impact depends on the deployment configuration.
52
+
53
+ ## Model Card Contact
54
+
55
+ For questions or concerns about this model, please contact: Ruihao
config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "transformer",
3
+ "architecture": "bert-base",
4
+ "num_parameters": 110000000,
5
+ "vocab_size": 30522,
6
+ "hidden_size": 768,
7
+ "num_hidden_layers": 12,
8
+ "num_attention_heads": 12
9
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d089f79e69cbb16c410eb1e67de0fa0f0441b7a1f5901ffa2f0dd182c5122bb
3
+ size 19
tokenizer.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "type": "BertTokenizer",
3
+ "vocab_file": "vocab.txt",
4
+ "lower_case": true
5
+ }