🚀 适用于越南语和英语的RoBERTa(envibert)
这款RoBERTa版本使用了100GB的文本数据(其中50GB为越南语,50GB为英语)进行训练,因此被命名为 envibert。该模型架构是为生产环境定制的,仅包含7000万个参数。
🚀 快速开始
本模型的使用方法如下:
💻 使用示例
基础用法
from transformers import RobertaModel
from transformers.file_utils import cached_path, hf_bucket_url
from importlib.machinery import SourceFileLoader
import os
cache_dir='./cache'
model_name='nguyenvulebinh/envibert'
def download_tokenizer_files():
resources = ['envibert_tokenizer.py', 'dict.txt', 'sentencepiece.bpe.model']
for item in resources:
if not os.path.exists(os.path.join(cache_dir, item)):
tmp_file = hf_bucket_url(model_name, filename=item)
tmp_file = cached_path(tmp_file,cache_dir=cache_dir)
os.rename(tmp_file, os.path.join(cache_dir, item))
download_tokenizer_files()
tokenizer = SourceFileLoader("envibert.tokenizer", os.path.join(cache_dir,'envibert_tokenizer.py')).load_module().RobertaTokenizer(cache_dir)
model = RobertaModel.from_pretrained(model_name,cache_dir=cache_dir)
text_input = 'Đại học Bách Khoa Hà Nội .'
text_ids = tokenizer(text_input, return_tensors='pt').input_ids
text_features = model(text_ids)
text_features['last_hidden_state'].shape
len(text_features['hidden_states'])
引用信息
如果您使用本仓库的内容来帮助产生已发表的研究成果,或者将其集成到其他软件中,请引用以下文献:
@inproceedings{nguyen20d_interspeech,
author={Thai Binh Nguyen and Quang Minh Nguyen and Thi Thu Hien Nguyen and Quoc Truong Do and Chi Mai Luong},
title={{Improving Vietnamese Named Entity Recognition from Speech Using Word Capitalization and Punctuation Recovery Models}},
year=2020,
booktitle={Proc. Interspeech 2020},
pages={4263--4267},
doi={10.21437/Interspeech.2020-1896}
}
📄 许可证
本项目采用CC BY-NC 4.0许可证。
📞 联系信息
如果您有任何问题或建议,可以通过以下方式联系我们:
- 邮箱:nguyenvulebinh@gmail.com
- 关注我们的Twitter:
