Update README.md
Browse files
README.md
CHANGED
|
@@ -1,8 +1,3 @@
|
|
| 1 |
-
code
|
| 2 |
-
Markdown
|
| 3 |
-
download
|
| 4 |
-
content_copy
|
| 5 |
-
expand_less
|
| 6 |
---
|
| 7 |
language:
|
| 8 |
- en
|
|
@@ -86,12 +81,11 @@ To get the best out of this model and ensure it stays perfectly in character, yo
|
|
| 86 |
|
| 87 |
```bash
|
| 88 |
llama-cli -hf Aakash098/ShinchanAI-small --jinja -p "System: Tu Shinchan hai... [Paste Prompt] \nUser: Hello Shinchan!\nShinchan: "
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
Python
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
expand_less
|
| 95 |
from llama_cpp import Llama
|
| 96 |
|
| 97 |
llm = Llama.from_pretrained(
|
|
@@ -108,9 +102,11 @@ response = llm.create_chat_completion(
|
|
| 108 |
)
|
| 109 |
|
| 110 |
print(response["choices"][0]["message"]["content"])
|
| 111 |
-
|
|
|
|
|
|
|
| 112 |
|
| 113 |
This model was trained with the incredible tools provided by Unsloth.
|
| 114 |
|
| 115 |
<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>
|
| 116 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
language:
|
| 3 |
- en
|
|
|
|
| 81 |
|
| 82 |
```bash
|
| 83 |
llama-cli -hf Aakash098/ShinchanAI-small --jinja -p "System: Tu Shinchan hai... [Paste Prompt] \nUser: Hello Shinchan!\nShinchan: "
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
### Python (llama-cpp-python)
|
| 87 |
+
|
| 88 |
+
```python
|
|
|
|
| 89 |
from llama_cpp import Llama
|
| 90 |
|
| 91 |
llm = Llama.from_pretrained(
|
|
|
|
| 102 |
)
|
| 103 |
|
| 104 |
print(response["choices"][0]["message"]["content"])
|
| 105 |
+
```
|
| 106 |
+
|
| 107 |
+
## 💖 Acknowledgements
|
| 108 |
|
| 109 |
This model was trained with the incredible tools provided by Unsloth.
|
| 110 |
|
| 111 |
<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>
|
| 112 |
+
```
|