nazneen commited on
Commit
418bb03
1 Parent(s): 6a6ebb9

model documentation

Browse files
Files changed (1) hide show
  1. README.md +162 -0
README.md ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Model Card for simbert-chinese-base
2
+
3
+
4
+
5
+ # Model Details
6
+
7
+ ## Model Description
8
+
9
+
10
+ - **Developed by:** peterchou
11
+ - **Shared by [Optional]:** More information needed
12
+ - **Model type:** More information needed
13
+ - **Language(s) (NLP):** More information needed
14
+ - **License:** More information needed
15
+ - **Related Models:**
16
+ - **Parent Model:** BERT
17
+ - **Resources for more information:**
18
+ - [GitHub Repo](https://github.com/zejunwang1/bert4vec)
19
+
20
+
21
+ # Uses
22
+
23
+
24
+ ## Direct Use
25
+
26
+ This model can be used for the task of sentence vector pre-training models
27
+
28
+
29
+
30
+ ## Downstream Use [Optional]
31
+
32
+ More information needed
33
+
34
+ ## Out-of-Scope Use
35
+
36
+ The model should not be used to intentionally create hostile or alienating environments for people.
37
+
38
+ # Bias, Risks, and Limitations
39
+
40
+ Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al. (2021)](https://aclanthology.org/2021.acl-long.330.pdf) and [Bender et al. (2021)](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). Predictions generated by the model may include disturbing and harmful stereotypes across protected classes; identity characteristics; and sensitive, social, and occupational groups.
41
+
42
+
43
+ ## Recommendations
44
+
45
+ Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
46
+
47
+
48
+ # Training Details
49
+
50
+ ## Training Data
51
+
52
+ More information needed
53
+
54
+ ## Training Procedure
55
+
56
+
57
+ ### Preprocessing
58
+
59
+ More information needed
60
+
61
+ ### Speeds, Sizes, Times
62
+
63
+ More information needed
64
+
65
+ # Evaluation
66
+
67
+
68
+ ## Testing Data, Factors & Metrics
69
+
70
+ ### Testing Data
71
+
72
+ More information needed
73
+
74
+ ### Factors
75
+
76
+
77
+ ### Metrics
78
+
79
+ More information needed
80
+ ## Results
81
+
82
+ More information needed
83
+
84
+ # Model Examination
85
+
86
+ More information needed
87
+
88
+ # Environmental Impact
89
+
90
+
91
+ Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
92
+
93
+ - **Hardware Type:** More information needed
94
+ - **Hours used:** More information needed
95
+ - **Cloud Provider:** More information needed
96
+ - **Compute Region:** More information needed
97
+ - **Carbon Emitted:** More information needed
98
+
99
+ # Technical Specifications [optional]
100
+
101
+ ## Model Architecture and Objective
102
+
103
+ More information needed
104
+
105
+ ## Compute Infrastructure
106
+
107
+ More information needed
108
+
109
+ ### Hardware
110
+
111
+ More information needed
112
+
113
+ ### Software
114
+ * transformers>=4.6.0,<5.0.0
115
+ * torch>=1.6.0
116
+ * numpy
117
+ * huggingface-hub
118
+ * faiss (optional)
119
+
120
+
121
+ # Citation
122
+
123
+
124
+ **BibTeX:**
125
+ ```
126
+ More information needed
127
+ ```
128
+
129
+ **APA:**
130
+ ```
131
+ More information needed
132
+ ```
133
+
134
+ # Glossary [optional]
135
+ More information needed
136
+
137
+ # More Information [optional]
138
+
139
+ More information needed
140
+
141
+ # Model Card Authors [optional]
142
+
143
+
144
+ Peterchou in collaboration with Ezi Ozoani and the Hugging Face team
145
+
146
+ # Model Card Contact
147
+
148
+ More information needed
149
+
150
+ # How to Get Started with the Model
151
+
152
+ Use the code below to get started with the model.
153
+
154
+ <details>
155
+ <summary> Click to expand </summary>
156
+ ```python
157
+ from transformers import AutoModel
158
+
159
+ model = AutoModel.from_pretrained("peterchou/simbert-chinese-base")
160
+
161
+ ```
162
+ </details>