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
#!/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" \ |
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
#!/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 | |
torchrun --standalone --nproc_per_node 8 inference_tp.py --pretrained "$PRETRAINED" \ |
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
using System.Text; | |
namespace FoobarPattern; | |
public class Foobar | |
{ | |
private int _patternLength; | |
private Dictionary<int, string> _patternDict = new(); | |
private StringBuilder _sb = new(); |