Created
March 22, 2024 23:28
-
-
Save cvpfus/a75169333d6b20f219750fe70007a994 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env bash | |
PRETRAINED=${1:-"hpcaitech/grok-1"} | |
TOKENIZER=${2:-"tokenizer.model"} | |
while true; do | |
echo "Enter the text you want to process:" | |
read USER_TEXT | |
python3 inference.py --pretrained "$PRETRAINED" \ | |
--tokenizer "$TOKENIZER" \ | |
--max_new_tokens 64 \ | |
--text "$USER_TEXT" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment