com3dian commited on
Commit
8fb5fe5
·
verified ·
1 Parent(s): 84b70e9

Update src/evaluation.py

Browse files
Files changed (1) hide show
  1. src/evaluation.py +5 -1
src/evaluation.py CHANGED
@@ -1,2 +1,6 @@
1
-
 
 
 
 
2
 
 
1
+ def evaluate_submission(file_path):
2
+ # TODO: dynamically import the class from file_path
3
+ # and validate its methods or behavior
4
+ # Then compute and return a score (float/int)
5
+ return 42.0 # Dummy score
6