Fix copy paste accident
Browse files
README.md
CHANGED
@@ -240,6 +240,7 @@ from pydantic import BaseModel
|
|
240 |
|
241 |
testset_df = pd.read_parquet("hf://datasets/PatronusAI/HaluBench/data/test-00000-of-00001.parquet")
|
242 |
testset_df = testset_df.sample(frac=1).reset_index(drop=True)
|
|
|
243 |
|
244 |
class DecomposeResponse(BaseModel):
|
245 |
REASONING: str
|
|
|
240 |
|
241 |
testset_df = pd.read_parquet("hf://datasets/PatronusAI/HaluBench/data/test-00000-of-00001.parquet")
|
242 |
testset_df = testset_df.sample(frac=1).reset_index(drop=True)
|
243 |
+
example_row = testset_df.iloc[0]
|
244 |
|
245 |
class DecomposeResponse(BaseModel):
|
246 |
REASONING: str
|