Update README.md
Browse files
README.md
CHANGED
@@ -32,7 +32,7 @@ This llama model was trained 2x faster with [Unsloth](https://github.com/unsloth
|
|
32 |
|
33 |
- Python環境があること(例: Google Colab)
|
34 |
- Hugging Faceのアクセストークン (HF_TOKEN) が取得済みであること
|
35 |
-
-
|
36 |
|
37 |
## セットアップ
|
38 |
|
@@ -40,7 +40,9 @@ This llama model was trained 2x faster with [Unsloth](https://github.com/unsloth
|
|
40 |
|
41 |
```bash
|
42 |
!pip uninstall unsloth -y
|
|
|
43 |
!pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
|
|
|
44 |
!pip install --upgrade torch
|
45 |
!pip install --upgrade xformers
|
46 |
!pip install ipywidgets --upgrade
|
@@ -81,6 +83,7 @@ model, tokenizer = FastLanguageModel.from_pretrained(
|
|
81 |
)
|
82 |
|
83 |
```
|
|
|
84 |
|
85 |
## 入力データの準備
|
86 |
|
|
|
32 |
|
33 |
- Python環境があること(例: Google Colab)
|
34 |
- Hugging Faceのアクセストークン (HF_TOKEN) が取得済みであること
|
35 |
+
- GPU RAM 15GB(10.3GB使用)
|
36 |
|
37 |
## セットアップ
|
38 |
|
|
|
40 |
|
41 |
```bash
|
42 |
!pip uninstall unsloth -y
|
43 |
+
# WARNING: Skipping unsloth as it is not installed.
|
44 |
!pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
|
45 |
+
# RESTART SESSION する
|
46 |
!pip install --upgrade torch
|
47 |
!pip install --upgrade xformers
|
48 |
!pip install ipywidgets --upgrade
|
|
|
83 |
)
|
84 |
|
85 |
```
|
86 |
+
読み込みに10分程度かかります。
|
87 |
|
88 |
## 入力データの準備
|
89 |
|