nazneen commited on
Commit
129c72c
1 Parent(s): 6a6ebb9

model documentation

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