- Зарегистрироваться в
Hugging Face
- https://huggingface.co/. - Перейти на страницу модели - https://huggingface.co/google/gemma-2b-it.
- Согласиться с требованиями по использованию модели компании
Google
. - В личном кабинете
Hugging Face
, вкладкаAccess Tokens
, создать токен. - В корне проекта создать
.streamlit\secrets.toml
со следующим содержимымHUGGING_FACE_ACCESS_TOKEN = "Ваш токен"
Рекомендуется создать виртульную среду venv
или conda
.
conda install conda-forge::transformers
conda install conda-forge::streamlit
conda install conda-forge::accelerate
pip install transformers
pip install streamlit
pip install accelerate
CUDA: conda install pytorch pytorch-cuda=11.8 -c pytorch -c nvidia
CUDA: pip install torch --index-url https://download.pytorch.org/whl/cu118
CPU: conda install pytorch cpuonly -c pytorch
CPU: pip install torch
streamlit run app.py