mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-11-05 18:32:14 +08:00
11 lines
134 B
Python
11 lines
134 B
Python
from llmtuner import Evaluator
|
|
|
|
|
|
def main():
|
|
evaluator = Evaluator()
|
|
evaluator.eval()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|