Update README.md
Browse files
README.md
CHANGED
|
@@ -62,3 +62,10 @@ inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
|
|
| 62 |
outputs = model.generate(**inputs, max_new_tokens=20)
|
| 63 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 64 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
outputs = model.generate(**inputs, max_new_tokens=20)
|
| 63 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 64 |
```
|
| 65 |
+
|
| 66 |
+
|
| 67 |
+
## Acknowledgement
|
| 68 |
+
We would like to thank [AxiomicLabs](https://huggingface.co/AxiomicLabs) for proving that XSA architecture is excellent for token efficiency.
|
| 69 |
+
|
| 70 |
+
## Limitations
|
| 71 |
+
This is an early test of the larger Surjo Project. The code is not very stable and we do not recommend using the modeling file without doing edits for training your own model.
|