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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -2
README.md CHANGED
@@ -1,3 +1,10 @@
 
 
 
 
 
 
 
1
  # このモデルについて
2
  本モデルは、東京大学 松尾・岩澤研究室が運営する[LLM講座2024](https://weblab.t.u-tokyo.ac.jp/lecture/course-list/large-language-model/)で、最終課題コンペ用に提出したモデルです。
3
 
@@ -8,7 +15,8 @@
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"
@@ -16,7 +24,8 @@
16
  !pip install --upgrade xformers
17
  ```
18
 
19
- # 推論の方法(基本は「Model_Inference_Template_unsloth_20241127.ipynb」で使用可能)
 
20
  ```python
21
  # 必要なライブラリを読み込み
22
  from unsloth import FastLanguageModel
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ language:
4
+ - ja
5
+ base_model:
6
+ - llm-jp/llm-jp-3-13b
7
+ ---
8
  # このモデルについて
9
  本モデルは、東京大学 松尾・岩澤研究室が運営する[LLM講座2024](https://weblab.t.u-tokyo.ac.jp/lecture/course-list/large-language-model/)で、最終課題コンペ用に提出したモデルです。
10
 
 
15
  + [sudy-super/CoTangent](https://huggingface.co/datasets/sudy-super/CoTangent)
16
  + [GENIAC-Team-Ozaki/databricks-dolly-15k-ja-newans](https://huggingface.co/datasets/GENIAC-Team-Ozaki/databricks-dolly-15k-ja-newans/tree/main)
17
 
18
+ # 環境構築
19
+ 本コードはGoogle Colabでの動作を想定しています
20
  ```python
21
  !pip uninstall unsloth -y
22
  !pip install --upgrade --no-cache-dir "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
 
24
  !pip install --upgrade xformers
25
  ```
26
 
27
+ # 推論の方法
28
+ 講座内で配布されたサンプルコード「Model_Inference_Template_unsloth_20241127.ipynb」で使用可能です
29
  ```python
30
  # 必要なライブラリを読み込み
31
  from unsloth import FastLanguageModel