mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-04 12:42:51 +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()
|