testmoto commited on
Commit
14221a5
1 Parent(s): 7f4685f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -196,5 +196,16 @@ class GPUPredictions:
196
  json.dump(summary, f, ensure_ascii=False, indent=2)
197
 
198
  return results
199
- ```
 
 
 
200
 
 
 
 
 
 
 
 
 
 
196
  json.dump(summary, f, ensure_ascii=False, indent=2)
197
 
198
  return results
199
+ ```
200
+
201
+ ```
202
+ from GPUPredictions import GPUPredictions
203
 
204
+ predictor = GPUPredictions(
205
+ model_id="testmoto/gemma-2-llm2024-01"
206
+ )
207
+ results = predictor.run_inference(
208
+ input_file="elyza-tasks-100-TV_0.jsonl",
209
+ output_file="llm_2024_elyza_tv_0.jsonl"
210
+ )
211
+ ```