Spaces:
Running
Running
File size: 1,572 Bytes
0c0f086 bf572e3 e850022 bf572e3 fe190a7 0c0f086 |
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
"""Module containing performance results for the Arcee-SuperNova model."""
results_arcee_supernova = {
"name": "Arcee-SuperNova",
"modelType": "Llama 3.1 70B",
"configurations": [
{
"instanceType": "g5.12xlarge",
"quantization": "awq",
"container": "TGI 2.2.0",
"status": "OK",
"tokensPerSecond": "33",
"notes": "",
},
{
"instanceType": "inf2.24xlarge",
"configurations": [
{
"quantization": "none",
"container": "transformers-neuronx",
"status": "KO",
"tokensPerSecond": "-",
"notes": "OOM bs=2,seqlen=4096",
},
{
"quantization": "none",
"container": "transformers-neuronx",
"status": "KO",
"tokensPerSecond": "-",
"notes": "OOM bs=2,seqlen=2048",
},
],
},
{
"instanceType": "inf2.48xlarge",
"quantization": "none",
"container": "transformers-neuronx",
"status": "OK",
"tokensPerSecond": "28.4",
"notes": "bs=4,seqlen=4096",
},
{
"instanceType": "p4d.24xlarge",
"quantization": "none",
"container": "TGI 2.2.0",
"status": "OK",
"tokensPerSecond": "38",
"notes": "",
},
],
}
|