Private github repo fail for using log_model and log_metric #1302
-
Describe the bugI have two version for using component. One is directly uploading local code to each pod, this work fine that we could see the models artifact and metric curve. The other one use the same code as the first one, except for using private github to load the code. In this case, the "dashboards", "artifacts" and "resources" pages show only "NO DATA", and "logs" page shows training output message normally. To reproduce
Expected behaviorShowing metric curve and saving models normally. Environmentminikube: v1.15.1 |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is very hard to debug, you need to check if the git repo has some more information like a hard-coded Also I would check if you added the local cache folder You can also validate that the run is running with the correct run-uuid: ...
print(tracking.TRACKING_RUN.run_uuid)
... If the |
Beta Was this translation helpful? Give feedback.
-
I didn't add |
Beta Was this translation helpful? Give feedback.
This is very hard to debug, you need to check if the git repo has some more information like a hard-coded
NO_OP
.Also I would check if you added the local cache folder
.polyaxon
to your.gitignore
and.dockerignore
. If this folder was added to you git repo, then indeed the metrics and artifacts will be saved to a different run.You can also validate that the run is running with the correct run-uuid:
If the
run_uuid
does not correspond to the currently running run, then the cache is bundled somewhere (git repo or docker image).