1. 25 Sep, 2025 3 commits
  2. 27 Aug, 2025 1 commit
  3. 25 Aug, 2025 1 commit
  4. 04 Aug, 2025 1 commit
  5. 26 Jul, 2025 3 commits
  6. 25 Jul, 2025 3 commits
  7. 19 Jul, 2025 1 commit
  8. 13 Jul, 2025 1 commit
  9. 11 Jul, 2025 3 commits
  10. 10 Jul, 2025 1 commit
  11. 06 Jul, 2025 1 commit
  12. 05 Jul, 2025 1 commit
  13. 04 Jul, 2025 1 commit
  14. 03 Jun, 2025 1 commit
  15. 16 Apr, 2025 1 commit
  16. 17 Mar, 2025 1 commit
  17. 14 Mar, 2025 1 commit
  18. 04 Mar, 2025 2 commits
  19. 25 Feb, 2025 1 commit
    • Jinwei's avatar
      Support SGLang as Potential Backend for Evaluation (#2703) · 29971faa
      Jinwei authored
      
      
      * initial components to support sglang
      
      * init of class SGLangLM
      
      * draft for generate_until of SGLang model
      
      * mock loglikelihood
      
      * initial loglikelihood_tokens
      
      * todo: fix bug of sglang engine init
      
      * implement generation tasks and test
      
      * support output type loglikelihood and loglikelihood_rolling (#1)
      
      * .
      
      * loglikelihood_rolling
      
      * /
      
      * support dp_size>1
      
      * typo
      
      * add tests and clean code
      
      * skip tests of sglang for now
      
      * fix OOM error of sglang pytest
      
      * finish test for sglang
      
      * add sglang to readme
      
      * fix OOM of tests and clean SGLang model
      
      * update readme
      
      * clean pyproject and add tests for evaluator
      
      * add accuracy tests and it passed locally
      
      * add notes for test
      
      * Update README.md
      
      update readme
      
      * pre-commit
      
      ---------
      Co-authored-by: default avatarXiaotong Jiang <xiaotong.jiang@databricks.com>
      Co-authored-by: default avatarBaber Abbasi <92168766+baberabb@users.noreply.github.com>
      Co-authored-by: default avatarBaber <baber@hey.com>
      29971faa
  20. 19 Jan, 2025 1 commit
  21. 04 Dec, 2024 1 commit
  22. 30 Nov, 2024 1 commit
  23. 20 Nov, 2024 1 commit
    • Baber Abbasi's avatar
      Nits (#2500) · 867413f8
      Baber Abbasi authored
      * fix test task
      
      * dont call lm.chat_template each time
      867413f8
  24. 18 Nov, 2024 1 commit
    • Kozzy Voudouris's avatar
      Add metabench task to LM Evaluation Harness (#2357) · 62b4364d
      Kozzy Voudouris authored
      
      
      * Add metabench (Kipnis et al. 2024)
      
      * Update metabench tasks for full replication of original benchmarks, using publicly available datasets
      
      * Remove unnecessary import
      
      * Add permute versions of each task, where the answer orders are randomly shuffled.
      
      * Add metabench group for easier evaluations
      
      * Fix mmlu counts after removing duplicate
      
      * Add secondary datasets
      
      * Fix f-string error
      
      * Fix f-string error for permute processing
      
      * Add original hash to outputs for easy matching to original results
      
      * Add line break at end of utils files
      
      * Remove extra line from winogrande
      
      * Reformat for linters
      
      * fix multiple input test
      
      * appease pre-commit
      
      * Add metabench to tasks README
      
      * fix multiple input `test_doc_to_text`
      
      ---------
      Co-authored-by: default avatarBaber <baber@hey.com>
      62b4364d
  25. 09 Nov, 2024 1 commit
  26. 31 Oct, 2024 1 commit
    • Qubitium-ModelCloud's avatar
      Add GPTQModel support for evaluating GPTQ models (#2217) · 4f8e479e
      Qubitium-ModelCloud authored
      
      
      * support gptqmodel
      
      * code opt
      
      * add gptqmodel option
      
      * Update huggingface.py
      
      * Update pyproject.toml
      
      * gptqmodel version upgraded to 1.0.6
      
      * GPTQModel version upgraded to 1.0.8
      
      * Update pyproject.toml
      
      * fix ruff-format error
      
      * add gptqmodel test
      
      * Update gptqmodel test model
      
      * skip cuda
      
      * python3.8 compatible
      
      * Update README.md
      
      * Update README.md
      
      ---------
      Co-authored-by: default avatarCL-ModelCloud <cl@modelcloud.ai>
      4f8e479e
  27. 04 Oct, 2024 1 commit
  28. 26 Sep, 2024 3 commits
  29. 18 Sep, 2024 1 commit
    • David Corvoysier's avatar
      Update neuron backend (#2314) · 9a092f37
      David Corvoysier authored
      * feat(neuron): align with latest optimum-neuron
      
      * feat(neuron): support pre-exported neuron models
      
      * fix(neuron): correctly use max_length
      
      * fix(neuron): adapt loglikelihood
      
      The evaluation of log likelihood was not working for neuron models
      using continuous batching, such as all cached neuron LLama models.
      
      * refactor(neuron): remove dead code
      9a092f37