Can't see my runs. "No runs yet"
See original GitHub issueI am using mlflow 1.30.0. I can’t see my runs even though I run mlflow ui
in the same directory containing the mlruns
directory. The directory structure is like this:
[s.1915438@scs2043(sunbird) 15. hydra_zen_joblib_multi_gpu]$ ls
2.clear_while_testing.sh master_python_script.py multirun mlruns
[s.1915438@scs2043(sunbird) 15. hydra_zen_joblib_multi_gpu]$ ls mlruns/
0
[s.1915438@scs2043(sunbird) 15. hydra_zen_joblib_multi_gpu]$ ls mlruns/0
0f4f67841fb346d69f78834c5640f78b 538672bf8c7844519934d1e117fc29fb 7e66ad8a00d141a081d0533d048ab291 adbef3da2b9d40e7881177554c7e7f9f e764a7288f64487ebedd79bdaa71bd5d
12895799c26044bb9370d4ecefa49ddb 5a91dc5a62f542089805814bd6bb723b 8599b76e645944ab922e06a05d8fc8f0 afa9e83deccb444881a708485abb04c0 ef648994cd1f4e0fbda8e0acc16bb64a
30943fa36a6c4529be20d10d853323f3 5aeff665cc7f41ad9c775979cbf3f2ed 85a5697428924bed8270c2280385a0b6 b09d25d3fd574018bab5340abbb76902 f805a34276cc473590250ed19834b641
33b521ff465a4e48929eb413d2d4f653 6710ca36590b4d22b07f311765ffaeac 8b7e147af8af4e7e8fff6d754d387185 b2843afc7bb448fcb3bf7afd4b9a80b8 ff3ddd82da7e46c8ab457ac917e82428
366d20214b8a47cb89badb9fe5541cb0 683edf102f674cbf8eaa653f2a14a64a 93e2c3fa423f4e93b86862eee18299c1 bfc7a2014bc3475fa9160797786128b1 meta.yaml
3eefafe74c4d498dbef223adaa0587d2 6bc3336d10b449aca6b2a033049efda5 98c35257d231468c90034d7666419820 cb4892fc86a346c4b5bc8a0b27c50b5d
4457ec3b8f4f4eaf9bcb798639207bf8 6ca948723ac24ae3818b0082a4ea21e4 9953b1817b204b858d48b2c078159322 d1f09513244b494d9ab13e79e83ad086
4ce66b5165ce45e6bf81bc1dd0a9000a 7e55334301c14952a26b249c2982a094 9ebf68264a6f4ad18f344d4987c7e9d9 df3c4f383b4846e98fabb1aabbdb6a2c
I run the mlflow ui
command in the same directory:
[s.1915438@scs2043(sunbird) 15. hydra_zen_joblib_multi_gpu]$ mlflow ui
[2022-11-22 10:28:35 +0000] [53484] [INFO] Starting gunicorn 20.1.0
[2022-11-22 10:28:35 +0000] [53484] [INFO] Listening at: http://127.0.0.1:5000 (53484)
[2022-11-22 10:28:35 +0000] [53484] [INFO] Using worker: sync
[2022-11-22 10:28:35 +0000] [53485] [INFO] Booting worker with pid: 53485
It shows me 5 days old training results from another directory:
I also tried the mlflow ui --backend-store-uri /path/to/my/directory
from this answer. I also used the “new experiment” option in the mlflow ui
. Both shows no runs.
BTW the location to the mlruns
directory (/scratch/s.1915438/2. inverse+forward/15. hydra_zen_joblib_multi_gpu
) contains spaces. So I enclosed the path within a " ".
Issue Analytics
- State:
- Created 10 months ago
- Comments:18 (10 by maintainers)
Top Results From Across the Web
Why are there no runs shown in the Stryd app after I update or ...
Go to the 'Settings' tab · Select 'Debug Options' · Select 'Download Full Calendar History'.
Read more >Fitbit app not showing Run stats
I just recently started tracking runs with GPS. The first few days, it worked fine and I was thrilled to see my distance,...
Read more >GitHub Action workflow not running - Stack Overflow
If you are targeting the wrong branch, the name of the action will appear on GitHub but no actions will actually run.
Read more >Run with your Apple Watch
Open the Workout app. Scroll to Outdoor Run or Indoor Run. Tap the More button the More icon to set a calorie, distance,...
Read more >Losing Running Fitness: A Scientific Look at How Much You'll ...
Learn exactly how much fitness and conditioning you'll lose from missing running due to injury or sickness.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Makes sense. Thanks for the reply 😃
So, I was using an HPC cluster not local PC. There are multiple login nodes with its own set of ports. It was running on
sl1
port 5000. I was usingsl2
port 5000. The problem is when I was port forwarding the port 5000 to my local PC I was not specifying the login node, so connects me to thesl1
port 5000. I will just make sure that I port forward from within the same login node. Also, I will use a different port usingmlflow ui --port <PORT>
. This command is useful preventive measurepkill -f mlflow
.