Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 458 Bytes
8b7a945 9134169 8b7a945 9134169 8b7a945 9134169 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import pytest
from src.display.utils import fields, AutoEvalColumnQA, AutoEvalColumnLongDoc, COLS, COLS_LITE, TYPES, EVAL_COLS, QA_BENCHMARK_COLS, LONG_DOC_BENCHMARK_COLS
def test_fields():
for c in fields(AutoEvalColumnQA):
print(c)
def test_macro_variables():
print(f'COLS: {COLS}')
print(f'COLS_LITE: {COLS_LITE}')
print(f'TYPES: {TYPES}')
print(f'EVAL_COLS: {EVAL_COLS}')
print(f'BENCHMARK_COLS: {QA_BENCHMARK_COLS}')
|