File size: 1,171 Bytes
d5bfab8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
Meta-Llama-3-8B-Instruct-Q6_K
---
ARC puzzle
input 0
[[4,5,1,1,5,4,4,5,1],[5,5,5,5,5,5,5,5,5],[1,5,4,4,5,1,1,5,4]]
output 0
[[4,5,1],[5,5,5],[1,5,4]]
input 1
[[2,0,0,1,2,0,0,1,2,0,0,1],[4,2,1,4,4,2,1,4,4,2,1,4],[4,1,2,4,4,1,2,4,4,1,2,4],[1,0,0,2,1,0,0,2,1,0,0,2]]
output 1
[[2,0,0,1],[4,2,1,4],[4,1,2,4],[1,0,0,2]]
input 2
[[2,1,2,1,2,1],[2,3,2,3,2,3]]
output 2
[[2,1],[2,3]]
input 3
[[0,2,0,4,4,0,2,0,4,4,0,2,0,4,4],[2,2,0,4,4,2,2,0,4,4,2,2,0,4,4],[0,2,2,2,0,0,2,2,2,0,0,2,2,2,0],[1,1,0,2,2,1,1,0,2,2,1,1,0,2,2],[1,1,0,2,0,1,1,0,2,0,1,1,0,2,0]]
output 3
---
expected response text:
[[0,2,0,4,4],[2,2,0,4,4],[0,2,2,2,0],[1,1,0,2,2],[1,1,0,2,0]]
actual response text:
[[0,2,0,4,4],[2,2,0,4,4],[0,2,2,2,0],[1,1,0,2,2],[1,1,0,2,0]]
status: correct
response dict:
{'id': 'cmpl-9aba84b7-e8bc-4a25-bc74-e279849d267a', 'object': 'text_completion', 'created': 1715891687, 'model': 'Meta-Llama-3-8B-Instruct-GGUF/Meta-Llama-3-8B-Instruct-Q6_K.gguf', 'choices': [{'text': '[[0,2,0,4,4],[2,2,0,4,4],[0,2,2,2,0],[1,1,0,2,2],[1,1,0,2,0]]', 'index': 0, 'logprobs': None, 'finish_reason': 'stop'}], 'usage': {'prompt_tokens': 432, 'completion_tokens': 51, 'total_tokens': 483}}
|