chore: move eval_script and inference script to root.

This commit is contained in:
K
2026-05-03 00:04:29 +05:30
parent 29b32dfcac
commit 0aa0f808a1
3 changed files with 14 additions and 404 deletions
+14
View File
@@ -0,0 +1,14 @@
"""Root-level entry point required by hackathon judges.
Delegates entirely to src/inference.py so all logic stays in one place.
Usage: python inference.py --input dataset.json --output results.json
"""
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "src"))
from inference import main # noqa: E402
if __name__ == "__main__":
main()