Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1 |
-
---
|
2 |
-
license: mit
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
---
|
4 |
+
|
5 |
+
Tokenizer, paper and detailed README is ongoing. But for the model, it can be loaded as follows:
|
6 |
+
|
7 |
+
```python
|
8 |
+
from transformers import AutoModelForCausalLM
|
9 |
+
model = AutoModelForCausalLM.from_pretrained("aria-project/medium-e75-ft", trust_remote_code=True)
|
10 |
+
```
|
11 |
+
|
12 |
+
Can you guess what it is? ;)
|