Update README.md
Browse files
README.md
CHANGED
@@ -9,8 +9,8 @@ library_name: transformers
|
|
9 |
|
10 |
# LLäMmlein 1B
|
11 |
|
12 |
-
This is a German Tinyllama 1B language model trained from scratch using the
|
13 |
-
|
14 |
|
15 |
|
16 |
### Usage
|
@@ -18,13 +18,11 @@ the [Tinyllama](https://github.com/jzhang38/TinyLlama) codebase on the German po
|
|
18 |
```python
|
19 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
20 |
|
21 |
-
model = AutoModelForCausalLM.from_pretrained("LSX-UniWue/
|
22 |
|
23 |
-
tokenizer = AutoTokenizer.from_pretrained("LSX-UniWue/
|
24 |
```
|
25 |
|
26 |
|
27 |
### Evaluation
|
28 |
-
We evaluated our results on the [Superkleber](https://lsx-uniwue.github.io/SuperGLEBer-site/) benchmark.
|
29 |
-
|
30 |
-
|
|
|
9 |
|
10 |
# LLäMmlein 1B
|
11 |
|
12 |
+
This is a German Tinyllama 1B language model trained from scratch using the [Tinyllama](https://github.com/jzhang38/TinyLlama) codebase on the German portion of [RedPajama V2](https://huggingface.co/datasets/togethercomputer/RedPajama-Data-V2).
|
13 |
+
Find more details on our [page](https://www.informatik.uni-wuerzburg.de/datascience/projects/nlp/llammlein/)!
|
14 |
|
15 |
|
16 |
### Usage
|
|
|
18 |
```python
|
19 |
from transformers import AutoModelForCausalLM, AutoTokenizer
|
20 |
|
21 |
+
model = AutoModelForCausalLM.from_pretrained("LSX-UniWue/LLaMmlein_1B")
|
22 |
|
23 |
+
tokenizer = AutoTokenizer.from_pretrained("LSX-UniWue/LLaMmlein_1B")
|
24 |
```
|
25 |
|
26 |
|
27 |
### Evaluation
|
28 |
+
We evaluated our results on the [Superkleber](https://lsx-uniwue.github.io/SuperGLEBer-site/) benchmark.
|
|
|
|