ai4stem-uga
commited on
Commit
•
43c7fac
1
Parent(s):
3c77948
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
It is a pre-trained German science education BERT for written German science assessments.
|
2 |
+
|
3 |
+
## Usage
|
4 |
+
|
5 |
+
With Transformers >= 2.3 our German BERT models can be loaded like:
|
6 |
+
|
7 |
+
```python
|
8 |
+
from transformers import AutoModel, AutoTokenizer
|
9 |
+
|
10 |
+
tokenizer = AutoTokenizer.from_pretrained("ai4stem-uga/G-SciEdBERT")
|
11 |
+
model = AutoModel.from_pretrained("ai4stem-uga/G-SciEdBERT")
|
12 |
+
```
|
13 |
+
|
14 |
+
# Acknowledgments
|
15 |
+
This study secondary analyzed data from projects supported by the National Science Foundation (grant numbers 2101104, PI Zhai) and the Institute of Education Sciences (grant number R305A160219, PI Liu). The authors acknowledge the funding agencies and the project teams for making the data available for analysis. The findings, conclusions, or opinions herein represent the views of the authors and do not necessarily represent the views of personnel affiliated with the funding agencies.
|