Zihao Xu
11/09/2022, 9:48 PMkedro viz
experiment tracking: https://kedro.readthedocs.io/en/stable/tutorial/set_up_experiment_tracking.html#set-up-your-nodes-and-pipelines-to-log-metrics.
But I keep getting the error “You don’t have any experiments” within kedro viz
view.
Here are a few observations:
1. Within the spaceflight starter, I do not see the file src/settings.py
, but had to create it myself and pasted in the specified content for SQLiteStore
2. The tutorial mentions “proceed to set up the tracking datasets or set up your nodes and pipelines to log metrics; these two activities are interchangeable.” But I had to implement both steps to make it work.
3. After a few kedro run
, I do not see session_store.db
appearing within 09_tracking
folder, which could be the reason for my error?
Any insights would be greatly appreciated! Thanks team!Merel
11/10/2022, 9:32 AMsettings.py
should be in src/<your-project>/settings.py
so not directly in src
Zihao Xu
11/10/2022, 2:24 PMsettings.py
location a try. I am using:
kedro==0.18.3
kedro-viz==5.1.1
settings.py
from outside src
to inside src
, and I am now able to see the experiment results!
I would suggest updating the relevant path mentioned inside the tutorial 🙂 .
Thanks a lot for your helpMerel
11/10/2022, 2:32 PMZihao Xu
11/10/2022, 2:32 PM