File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
diabetes_regression/evaluate Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 26
26
from azureml .core import Run
27
27
import argparse
28
28
import traceback
29
- from util .model_helper import get_latest_model
29
+ from util .model_helper import get_model
30
30
31
31
run = Run .get_context ()
32
32
45
45
# sources_dir = 'diabetes_regression'
46
46
# path_to_util = os.path.join(".", sources_dir, "util")
47
47
# sys.path.append(os.path.abspath(path_to_util)) # NOQA: E402
48
- # from model_helper import get_latest_model
48
+ # from model_helper import get_model
49
49
# workspace_name = os.environ.get("WORKSPACE_NAME")
50
50
# experiment_name = os.environ.get("EXPERIMENT_NAME")
51
51
# resource_group = os.environ.get("RESOURCE_GROUP")
108
108
firstRegistration = False
109
109
tag_name = 'experiment_name'
110
110
111
- model = get_latest_model (
111
+ model = get_model (
112
112
model_name = model_name ,
113
113
tag_name = tag_name ,
114
114
tag_value = exp .name ,
You can’t perform that action at this time.
0 commit comments