name
string
version
string
license
string
canonical
string
method
dict
tasks
list
TechFuelHQ coding-eval
techfuelhq-coding-eval-v1
https://creativecommons.org/licenses/by/4.0/
https://techfuelhq.com/data/rtx-5080-llm-throughput/
{ "api": "ollama /api/chat", "options": { "temperature": 0, "seed": 42, "num_ctx": 8192, "num_predict": 4096 }, "reps": 2, "scoring": "mechanical (executed checkers, exact rows, fullmatch lists, tool-call JSON); no judge model" }
[ { "id": "t1-bugfix-binary-search", "family": "bugfix", "prompt": "The following Python function is supposed to do what its docstring says, but it has a bug.\n\n```python\ndef find_first_ge(arr, target):\n \"\"\"Return the index of the FIRST element in sorted list arr that is\n greater than or equa...