Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hpprc/bert-classification-tutorial-2024
【2024年版】BERTによるテキスト分類
https://github.com/hpprc/bert-classification-tutorial-2024
bert huggingface nlp
Last synced: 17 days ago
JSON representation
【2024年版】BERTによるテキスト分類
- Host: GitHub
- URL: https://github.com/hpprc/bert-classification-tutorial-2024
- Owner: hppRC
- License: mit
- Created: 2024-05-28T01:50:39.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T08:10:57.000Z (4 months ago)
- Last Synced: 2024-10-09T23:07:28.939Z (about 1 month ago)
- Topics: bert, huggingface, nlp
- Language: Python
- Homepage:
- Size: 694 KB
- Stars: 22
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BERT Classification Tutorial 2024
本実装は[hppRC/bert-classification-tutorial](https://github.com/hppRC/bert-classification-tutorial)の2024版実装です。
実装の背景や詳細についてはこちらのリポジトリをご覧ください。以前の実装からの主な変更点は以下の通りです。
- 実装全体をHuggingFace関連ライブラリを利用するように変更
- データセットの構築をHuggingFace Datasetsを利用するように変更
- 訓練をHuggingFaceのTrainerとAccelerateを利用するように変更
- 仮想環境の構築にryeを利用するよう変更## 実行手順
```bash
# 環境構築
rye sync -f
source .venv/bin/activate# データセット作成
python src/prepare.py# 訓練
accelerate launch --config_file config/4-ds.json src/train.py --model_name tohoku-nlp/bert-base-japanese-v3 --experiment_name 4-ds
```## 補足
- `config`ディレクトリに`accelerate`利用時のconfigファイルを保存してあります
- `4-ds.json`は4GPU+DeepSpeedを利用する場合の設定ファイルです
- `1.json`は1GPUのみ利用する場合の設定ファイルです
- `accelerate config --config_file config/hoge.json`を実行することでお好みの設定ファイルを対話的に作成することができます
- `tensorboard --logdir ./outputs`を実行することでTensorBoardを利用して学習の進捗を確認することができます## おわりに
本実装が研究・企業応用・個人利用問わずさまざまな方のお役に立てれば幸いです。
質問・バグ報告などがあればどんなことでも[Issue](https://github.com/hppRC/bert-classification-tutorial-2024/issues)にお書きください。
## 著者情報・引用
作者: [Hayato Tsukagoshi](https://hpprc.dev) \
email: [[email protected]](mailto:[email protected])
関連学会記事: [BERTによるテキスト分類チュートリアル](https://www.jstage.jst.go.jp/article/jnlp/30/2/30_867/_article/-char/ja)論文等で本実装を参照する場合は、以下をお使いください。
```bibtex
@article{
hayato-tsukagoshi-2023-bert-classification-tutorial,,
title={{BERT によるテキスト分類チュートリアル}},
author={塚越 駿 and 平子 潤},
journal={自然言語処理},
volume={30},
number={2},
pages={867-873},
year={2023},
doi={10.5715/jnlp.30.867},
url = {https://www.jstage.jst.go.jp/article/jnlp/30/2/30_867/_article/-char/ja},
}
```