This file contains 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
matches | |
ngrams | |
*.swp | |
*.pem | |
*.json | |
venv | |
*.pyc |
This file contains 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
conda create --name textgenrnn python | |
conda activate textgenrnn | |
conda install cudatoolkit==10.2.89 | |
# this special conda source is vital to get the correct 8.1.x version of cudnn: | |
conda install -c conda-forge cudnn | |
git clone https://github.com/minimaxir/textgenrnn.git | |
cd textgenrnn | |
pip install -r requirements.txt |