Update README.md
Browse files
README.md
CHANGED
@@ -70,7 +70,7 @@ dtype = torch.bfloat16
|
|
70 |
model = AutoModelForCausalLM.from_pretrained(model_path, torch_dtype=dtype, device_map=device)
|
71 |
|
72 |
# Prepare the input text
|
73 |
-
prompt = 'भारत की
|
74 |
inputs = tokenizer.encode(prompt, return_tensors='pt').to(model.device)
|
75 |
|
76 |
# Generate the output
|
|
|
70 |
model = AutoModelForCausalLM.from_pretrained(model_path, torch_dtype=dtype, device_map=device)
|
71 |
|
72 |
# Prepare the input text
|
73 |
+
prompt = 'भारत की राजधानी क्या है?'
|
74 |
inputs = tokenizer.encode(prompt, return_tensors='pt').to(model.device)
|
75 |
|
76 |
# Generate the output
|