Update Readme.md
Browse files
README.md
CHANGED
@@ -23,6 +23,8 @@ This llama model was trained 2x faster with [Unsloth](https://github.com/unsloth
|
|
23 |
|
24 |
Execute following code in Google Colab
|
25 |
|
|
|
|
|
26 |
# 必要なライブラリをインストール
|
27 |
!pip install unsloth
|
28 |
!pip uninstall unsloth -y && pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
|
@@ -94,4 +96,6 @@ json_file_id = re.sub(".*/", "", adapter_id)
|
|
94 |
with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
|
95 |
for result in results:
|
96 |
json.dump(result, f, ensure_ascii=False)
|
97 |
-
f.write('\n')
|
|
|
|
|
|
23 |
|
24 |
Execute following code in Google Colab
|
25 |
|
26 |
+
```
|
27 |
+
|
28 |
# 必要なライブラリをインストール
|
29 |
!pip install unsloth
|
30 |
!pip uninstall unsloth -y && pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
|
|
|
96 |
with open(f"/content/{json_file_id}_output.jsonl", 'w', encoding='utf-8') as f:
|
97 |
for result in results:
|
98 |
json.dump(result, f, ensure_ascii=False)
|
99 |
+
f.write('\n')
|
100 |
+
|
101 |
+
```
|