File size: 6,196 Bytes
06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a 06c89da 755991a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
---
library_name: peft
base_model: unsloth/gemma-7b-bnb-4bit
language:
- ja
- en
tags:
- translation
- qlora
- gemma
- text-generation-inference
- nlp
---
# モデルカード(Model Card for Model ID)
C3TR-AdapterはGoogleが発表したLLMであるgemma-7bの日英・英日翻訳性能を向上させるQLoRAです。
C3TR-Adapter is a QLoRA that improves the Japanese-English and English-Japanese translation performance of gemma-7b released by Google.
## モデル詳細(Model Details)
C3TR-Adapterは翻訳ベンチマークで多言語翻訳モデルであるGoogleのMadlad400やmetaのSeamless m4t v2 large、[ALMA-Ja-V2](https://huggingface.co/webbigdata/ALMA-7B-Ja-V2) (私達の以前のモデル)よりも大幅に優れた日英・日英翻訳性能を持っています。
Benchmarks show significantly better English-Japanese and Japanese-English translation performance than Google's Madlad400, META's Seamless m4t v2 large, and [ALMA-Ja-V2](https://huggingface.co/webbigdata/ALMA-7B-Ja-V2) (our previous model).
GoogleのウェブサービスColabを使うと無料でC3TR-Adapterを試す事が出来ます。
You can try C3TR-Adapter for free using Google's web service Colab.
- [動作確認用の簡単なサンプル(A simple sample to check the operation)](https://colab.research.google.com/drive/1RrUZ3Yq_XDtU33hs5Stru2o-6rXmFikm#scrollTo=8QeXdYv3enkl)
- [テキストファイルを一括で日英・英日翻訳するサンプル(Sample of batch translation of text files)](https://colab.research.google.com/drive/1eHtKxDCs4qxu-C7bzBsDppFQvZYt-v5y#scrollTo=9tCLTsfT_qgA)
### モデルの動かし方(How to use Model)
自分のパソコンで動かす場合は、約8.3GB以上のGPU RAMが必要です。
If you want to run it on your own local computer, you will need approximately 8.3 GB or more of GPU RAM.
必要なライブラリのインストール
Installation of required libraries
```
pip install transformers==0.38.1 peft==0.9.0 bitsandbytes==0.42.0
```
サンプルスクリプト
```
import torch
import os
import json
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
model_id = "unsloth/gemma-7b-bnb-4bit"
peft_model_id = "webbigdata/C3TR-Adapter"
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
model = PeftModel.from_pretrained(model = model, model_id = peft_model_id)
tokenizer = AutoTokenizer.from_pretrained(model_id)
def trans(my_str):
input_ids = tokenizer(my_str, return_tensors="pt",
padding=True, max_length=1600, truncation=True).input_ids.cuda()
# Translation
generated_ids = model.generate(input_ids=input_ids,
num_beams=3, max_new_tokens=800,
use_cache=True,
prompt_lookup_num_tokens=10
)
full_outputs = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)
return full_outputs[0].split("### Answer:\n")[-1].strip()
ret = trans("""
### Instructions:
Translate Japanese to English.
### Input:
現地時間2月22日午後8時05分(日本時間2月23日午前8時05分)から約1時間半、G20外相会合出席のためリオデジャネイロを訪問中の上川陽子外務大臣は、「WPS+イノベ-ション in リオ」と題する意見交換会を主催したところ、概要は以下のとおりです。
続いて、エリカ・タキモト・リオデジャネイロ州議会議員、ジョイス・トリンダ-ジ・リオ市女性活躍推進局長、スザンナ・カ-ン・リオデジャネイロ連邦大学工学部長、柔道家>のシルヴァナ・ナガイ氏から、それぞれブラジルにおける現場での経験を踏まえつつ、貧困や環境問題、女性の社会進出等の社会課題について、女性の視点を共有しつつ、発言しました。
### Answer:
""")
print(ret)
```
## 留意事項 Attention
**Do not save this adapter merged with the base model**, as there exists a bug that reduces performance when saving this adapter merged with the model.
このアダプターをモデルとマージして保存すると性能が下がってしまう不具合が存在するため、**ベースモデルとマージして保存しないでください**
### Terms of Use
基本的にはgemmaと同じライセンスです
Basically the same license as gemma.
加えて貴方に以下のお願いがあります。
Additionally, We have the following request to you.
私たちの以前のモデルであるALMA-7B-Ja-V2のダウンロード件数は15万件を超えているのですが、どんな人がどのような場面で使っているのか全く把握できていません。
Our previous model, ALMA-7B-Ja-V2, has over 150K downloads, but we have no idea who is using it and in what situations.
そのため、使用した後は[Googleフォームに感想や今後期待する方向性、気が付いた誤訳の例などを記入](https://forms.gle/Ycr9nWumvGamiNma9)してください。
So, after you use it, please [fill out the Google form below with your impressions, future directions you expect us to take, and examples of mistranslations you have noticed](https://forms.gle/Ycr9nWumvGamiNma9).
個人情報は収集しないので、気軽にご記入をお願いします
We do not collect personal information, so please feel free to fill out the form!
どんなご意見でも結構です!
Any feedback would be appreciated!
### 謝辞 Acknowledgment
Original Base Model
google/gemma-7b
https://huggingface.co/google/gemma-7b
Base Model
unsloth/gemma-7b-bnb-4bit
https://huggingface.co/unsloth/gemma-7b-bnb-4bit
QLoRA Adapter
webbigdata/C3TR-Adapter
https://huggingface.co/webbigdata/C3TR-Adapter
This adapter was trained with Unsloth.
https://github.com/unslothai/unsloth
その他、[ALMA](https://arxiv.org/abs/2309.11674)をはじめ、コミュニティの皆さんからヒントを貰っています。ありがとう
Other tips I have received from [ALMA](https://arxiv.org/abs/2309.11674) and others in the community. Thank you.
- **Developed by:** [webbigdata](https://webbigdata.jp/)
|