Skip to content

Commit

Permalink
removed output processor for handler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan committed May 28, 2024
1 parent e06f80e commit 6e30355
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llm_eval/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def process_dataset(self):
if col.endswith('.input'):
output_col = col.replace('.input', '.output')
prompt, output = self.generate_output(row[col])
output = self.post_process_output(prompt, output)
#output = self.post_process_output(prompt, output)
df.at[index, output_col] = output
self.unload_model(model_name)
return df
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "llm-eval"
version = "0.5.5"
version = "0.5.6"
authors = [
{name = "Jonathan Eisenzopf", email = "[email protected]"},
]
Expand Down

0 comments on commit 6e30355

Please sign in to comment.