I'm following along the experiment tracking exampl...
# beginners-need-help
g
I'm following along the experiment tracking example but after running the pipeline, kedro viz says "You don't have any experiments" and there is no
session_store.db
There are, however, metrics-related files under
09_tracking
. Did I possibly misconfigure something? Also,
Copy code
$ cat src/settings.py
from kedro_viz.integrations.kedro.sqlite_store import SQLiteStore
from pathlib import Path

SESSION_STORE_CLASS = SQLiteStore
SESSION_STORE_ARGS = {"path": str(Path(__file__).parents[2] / "data")}