Skip to content

Instantly share code, notes, and snippets.

View yusufpraditya's full-sized avatar
😁
😁😁😁😁

Yusuf Praditya yusufpraditya

😁
😁😁😁😁
View GitHub Profile
#!/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" \
#!/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" \
using System.Text;
namespace FoobarPattern;
public class Foobar
{
private int _patternLength;
private Dictionary<int, string> _patternDict = new();
private StringBuilder _sb = new();