This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################### | |
# create conda environment | |
#################################### | |
conda create --name myenv | |
conda activate myenv | |
#################################### | |
# install hf transformers | |
#################################### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this gist is forked from https://gist.github.com/gwangjinkim/f13bf596fefa7db7d31c22efd1627c7a | |
#################################### | |
# create conda environment | |
#################################### | |
conda create --name myenv | |
# enter the environment | |
conda activate myenv |