Skip to content

Commit ea3c3c1

Browse files
committed
Added diagnostics
1 parent 72dc157 commit ea3c3c1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/algorithmia_deployer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ def __init__(
1717
self.model_path = model_path
1818
self.workspace_path = workspace_path
1919

20-
self.model_full_path = f"{workspace_path}/{model_path}"
20+
# self.model_full_path = f"{workspace_path}/{model_path}"
21+
self.model_full_path = model_path
2122

2223
def upload_and_link_algo_model(
2324
self, upload_path, git_repo, git_ref, commit_SHA, commit_msg

src/notebook_executor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
class NotebookExecutor:
88
def __init__(self, workspace_path, notebook_path):
99
self.workspace_path = workspace_path
10-
self.notebook_full_path = f"{workspace_path}/{notebook_path}"
10+
# self.notebook_full_path = f"{workspace_path}/{notebook_path}"
11+
self.notebook_full_path = notebook_path
1112

1213
def run(self):
1314
if os.path.exists(self.notebook_full_path):

0 commit comments

Comments
 (0)