Hi team, I am following the tutorial for `kedro vi...
# questions
z
Hi team, I am following the tutorial for
kedro 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!
1
m
Hi @Zihao Xu! Thank you so much for your feedback, we can definitely make some improvements to the tutorial. Which versions of Kedro and Kedro-Viz are you using?
One quick observation from my side:
settings.py
should be in
src/<your-project>/settings.py
so not directly in
src
z
Hi Merel! Thank you for the response! I will give the
settings.py
location a try. I am using:
Copy code
kedro==0.18.3
kedro-viz==5.1.1
Hi @Merel so I just tried moving the code in
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 help
👍 1
m
Awesome! Yes I’ve already made a PR with that fix: https://github.com/kedro-org/kedro/pull/2015
👍 1
z
Perfect! Sounds great