Update README.md
Browse files
README.md
CHANGED
@@ -38,7 +38,7 @@ device = "cuda" if torch.cuda.is_available() else "cpu"
|
|
38 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
39 |
model = AutoModelForCausalLM.from_pretrained(model_name, device_map=device, torch_dtype=torch.bfloat16)
|
40 |
|
41 |
-
question = "
|
42 |
|
43 |
inputs = tokenizer(question, return_tensors="pt").to(device)
|
44 |
input_length = len(inputs['input_ids'][0])
|
|
|
38 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
39 |
model = AutoModelForCausalLM.from_pretrained(model_name, device_map=device, torch_dtype=torch.bfloat16)
|
40 |
|
41 |
+
question = "If $f(x) = \\frac{3x-2}{x-2}$, what is the value of $f(-2) +f(-1)+f(0)$? Express your answer as a common fraction"
|
42 |
|
43 |
inputs = tokenizer(question, return_tensors="pt").to(device)
|
44 |
input_length = len(inputs['input_ids'][0])
|