Skip to content

Commit

Permalink
Change name of evaluate script
Browse files Browse the repository at this point in the history
  • Loading branch information
Shruti Iyer committed Oct 7, 2024
1 parent 0261b57 commit c1faafc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ COPY requirements.txt .
RUN pip install -r requirements.txt

# Copy your Python file into the image
COPY evaluate_on_data.py .
COPY evaluate.py .
COPY save_evaluation.py .
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""Evaluate for a built-in or custom evulator."""
import argparse
import json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

"""Load a built-in or custom evulator as flow."""
import importlib
import logging
Expand Down

0 comments on commit c1faafc

Please sign in to comment.