masaom commited on
Commit
685b1da
·
verified ·
1 Parent(s): c7b7a24

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -22
README.md CHANGED
@@ -1,29 +1,22 @@
1
- ---
2
- base_model: llm-jp/llm-jp-3-13b
3
- tags:
4
- - text-generation-inference
5
- - transformers
6
- - unsloth
7
- - llama
8
- - trl
9
- license: apache-2.0
10
- language:
11
- - ja
12
- ---
13
 
14
- # Uploaded model
 
 
 
 
 
15
 
16
- - **Developed by:** masaom
17
- - **License:** apache-2.0
18
- - **Finetuned from model :** llm-jp/llm-jp-3-13b
19
-
20
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
-
22
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
23
 
24
  # 推論の方法(基本は「Model_Inference_Template_unsloth_20241127.ipynb」で使用可能)
25
- ※本コードはGoogle Colabでの動作を想定しております
26
-
27
  ```python
28
  # 必要なライブラリを読み込み
29
  from unsloth import FastLanguageModel
 
1
+ # このモデルについて
2
+ 本モデルは、東京大学 松尾・岩澤研究室が運営する[LLM講座2024](https://weblab.t.u-tokyo.ac.jp/lecture/course-list/large-language-model/)で、最終課題コンペ用に提出したモデルです。
 
 
 
 
 
 
 
 
 
 
3
 
4
+ # ライセンス
5
+ 本モデルは学習に利用した以下のデータのライセンスの影響を受けます。
6
+ + [ichikara-instruction-003-001-1, ichikara-instruction-003-003-1](https://liat-aip.sakura.ne.jp/wp/llm%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%A9%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%87%E3%83%BC%E3%82%BF%E4%BD%9C%E6%88%90/llm%E3%81%AE%E3%81%9F%E3%82%81%E3%81%AE%E6%97%A5%E6%9C%AC%E8%AA%9E%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%A9%E3%82%AF%E3%82%B7%E3%83%A7%E3%83%B3%E3%83%87%E3%83%BC%E3%82%BF-%E5%85%AC%E9%96%8B/)
7
+ + [elyza/ELYZA-tasks-100](https://huggingface.co/datasets/elyza/ELYZA-tasks-100)
8
+ + [sudy-super/CoTangent](https://huggingface.co/datasets/sudy-super/CoTangent)
9
+ + [GENIAC-Team-Ozaki/databricks-dolly-15k-ja-newans](https://huggingface.co/datasets/GENIAC-Team-Ozaki/databricks-dolly-15k-ja-newans/tree/main)
10
 
11
+ # 環境構築(本コードはGoogle Colabでの動作を想定しております)
12
+ ```python
13
+ !pip uninstall unsloth -y
14
+ !pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
15
+ !pip install --upgrade torch
16
+ !pip install --upgrade xformers
17
+ ```
18
 
19
  # 推論の方法(基本は「Model_Inference_Template_unsloth_20241127.ipynb」で使用可能)
 
 
20
  ```python
21
  # 必要なライブラリを読み込み
22
  from unsloth import FastLanguageModel