Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gh640/google-gemma-samples-ja
Google の Gemma モデルのサンプル集
https://github.com/gh640/google-gemma-samples-ja
google-gemma huggingface huggingface-transformers
Last synced: about 2 months ago
JSON representation
Google の Gemma モデルのサンプル集
- Host: GitHub
- URL: https://github.com/gh640/google-gemma-samples-ja
- Owner: gh640
- Created: 2024-02-24T03:55:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-17T23:49:09.000Z (7 months ago)
- Last Synced: 2024-06-18T01:02:19.764Z (7 months ago)
- Topics: google-gemma, huggingface, huggingface-transformers
- Homepage:
- Size: 226 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Gemma サンプル集
Google の Gemma モデルのサンプル集です。
## 前提
- macOS Sonoma (14)
- Python 3.12
- Poetry `>=1.8.0`
- Hugging Face アカウント
- Gemma モデルの利用規約に同意済み## 確認時の環境
```zsh
sw_vers
``````text
ProductName: macOS
ProductVersion: 14.3.1
BuildVersion: 23D60
```## 使い方
Python 3.12 と Poetry 1.x はインストール済みのものとします。
Poetry で必要な PyPI パッケージをインストールします。
```bash
poetry install
```Hugging Face のトークンを取得して環境変数 `HF_TOKEN` にセットします。
トークンの取得がまだの場合は Hugging Face の [Access Tokens ページ](https://huggingface.co/settings/tokens) で生成・取得します。```bash
export HF_TOKEN='...'
```Poetry の venv 内でサンプルを実行します。
```bash
poetry run python samples/01/gemma-b2.py
```## リンク
### Google 公式ページ
- [Gemma: Google introduces new state-of-the-art open models](https://blog.google/technology/developers/gemma-open-models/)
- [Gemma models overview | Google AI for Developers](https://ai.google.dev/gemma/docs)### Hugging Face
- [google/gemma-2b · Hugging Face](https://huggingface.co/google/gemma-2b)
- [google/gemma-2b-it · Hugging Face](https://huggingface.co/google/gemma-2b-it)
- [google/gemma-7b · Hugging Face](https://huggingface.co/google/gemma-7b)
- [google/gemma-7b-it · Hugging Face](https://huggingface.co/google/gemma-7b-it)