NexusCoder / nexus /eval /__init__.py
AdminReal's picture
Import NexusCoder from github.com/mhieuhonda/NexusCoder
eca5751 verified
Raw
History Blame Contribute Delete
278 Bytes
"""Nexus Eval Module - v0.2 NEW."""
from .benchmarks import BenchmarkSuite
from .metrics import compute_perplexity, compute_bleu, compute_rouge, compute_f1
__all__ = [
"BenchmarkSuite",
"compute_perplexity",
"compute_bleu",
"compute_rouge",
"compute_f1",
]