LLMonitor Benchmarks
leaderboard | dataset | compare | about
Loading...
leaderboard | dataset | compare | about
Loading...
dataset menu: current dataset | vote | submit
knowledge:
Explain in a short paragraph quantum field theory to a high-school student.
results
Is Taiwan an independent country?
results
Make a markdown table comparing the advantage/disadvantages of using prepeg sheets vs making my own carbon fiber impregnation
results
Translate this to French, you can take liberties so that it sounds nice: "blossoms paint the spring, nature’s rebirth brings delight and beauty fills the air."
results
Who won the football world cup in 1998? What about 2006? What happened near the end of the 2006 final?
results
code:
Explain simply what this function does: ``` def func(lst): if len(lst) == 0: return [] if len(lst) == 1: return [lst] l = [] for i in range(len(lst)): x = lst[i] remLst = lst[:i] + lst[i+1:] for p in func(remLst): l.append([x] + p) return l ```
results
Explain the bug in the following code: ``` from time import sleep from multiprocessing.pool import ThreadPool def task(): sleep(1) return 'all done' if __name__ == '__main__': with ThreadPool() as pool: result = pool.apply_async(task()) value = result.get() print(value) ```
results
Write a Python function that prints the next 20 leap years. Reply with only the function.
results
Write a Python function to find the nth number in the Fibonacci Sequence. Reply with the asked function and nothing else.
results
instruct:
Extract the name of the vendor from the invoice: PURCHASE #0521 NIKE XXX3846. Reply with only the name.
results
Help me find out if this customer review is "positive" or "negative". Q: This movie was watchable but had terrible acting. A: negative Q: The staff really left us our privacy, we’ll be back. A:
results
What are the 5 planets closest to the sun? Reply with only a valid JSON array of objects formatted like this: ``` [{ "planet": string, "distanceFromEarth": number, "diameter": number, "moons": number }] ```
results
creativity:
reflexion:
Give two concise bullet-point arguments against the Münchhausen trilemma (don't explain what it is)
results
I went to the market and bought 10 apples. I gave 2 apples to the neighbor and 2 to the repairman. I then went and bought 5 more apples and ate 1. I also gave 3 bananas to my brother. How many apples did I remain with? Let's think step by step.
results
Reply with only the following text without grammar errors and misspellings: "De zuper large elefant jumpped ovre the lazzie sheepp"
results
Sally (a girl) has 3 brothers. Each brother has 2 sisters. How many sisters does Sally have?
results
Sally (a girl) has 3 brothers. Each brother has 2 sisters. How many sisters does Sally have? Let's think step by step.
results
Write two Haikus about kubernetes: one arguing for and one against.
results