Tavernari's picture
Upload folder using huggingface_hub
148b631 verified
raw
history blame contribute delete
452 Bytes
"""
Code Completion Validation Suite
Validates RippleGPT's ability to understand hierarchical code structures
using the bigcode/the-stack-smol dataset.
"""
from .test_cases import get_all_test_cases, get_tests_by_category, TestCase
from .metrics import TestResult, ValidationReport, generate_report
__all__ = [
'get_all_test_cases',
'get_tests_by_category',
'TestCase',
'TestResult',
'ValidationReport',
'generate_report'
]