Skip to content

Commit

Permalink
Bump lm-eval
Browse files Browse the repository at this point in the history
Bump to commit containing fix for HTTPS endpoints
  • Loading branch information
sjmonson committed Nov 14, 2024
1 parent dbb0430 commit ade5d35
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
3 changes: 2 additions & 1 deletion llm_eval_test/lm_eval_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def exec(tasks, model, endpoint, **kwargs):
num_concurent=1,
max_retries=kwargs["retry"],
tokenizer_backend=None,
tokenized_requests=False
tokenized_requests=False,
verify_certificate=False,
)

model_args_str = ','.join([f"{k}={str(v)}" for k,v in model_args.items()])
Expand Down
24 changes: 14 additions & 10 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
lm-eval = {extras = ["api"], version = "0.4.5"}
lm-eval = { extras = ["api"], git = "https://github.com/EleutherAI/lm-evaluation-harness", rev = "57272b6" }
unitxt = "1.14.0"
# Use CPU torch to cut down on deps
torch = {version = ">=1.8", source = "torch-cpu"}
Expand Down

0 comments on commit ade5d35

Please sign in to comment.