fast-stable-diffusion icon indicating copy to clipboard operation
fast-stable-diffusion copied to clipboard

[Solved] Missing Auto-Generated Link for TensorBoard/ComfyUI in Gradient Notebook

Open StamArtworks opened this issue 1 year ago • 4 comments

I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like: https://tensorboard-.paperspacegradient.com/

This link no longer appears, and I’m unable to access the UI externally. all i get is something like :

Starting server

To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/

Has the auto-link generation feature been removed or changed? Any guidance would be appreciated.

Thanks!

StamArtworks avatar Jan 01 '25 01:01 StamArtworks

I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like: https://tensorboard-.paperspacegradient.com/

This link no longer appears, and I’m unable to access the UI externally. all i get is something like :

Starting server

To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/

Has the auto-link generation feature been removed or changed? Any guidance would be appreciated.

Thanks!

this temporary solution worked for me:

https://github.com/TheLastBen/fast-stable-diffusion/issues/2820#issuecomment-2088283537

Basically, look at the link of your Jupyter Notebook, for example: https://abcd1234.efgh5678.paperspacegradient.com Copy the letters and numbers before the first period (in this case, abcd1234.efgh5678) To generate the link, use this format: https://tensorboard-abcd1234.efgh5678.paperspacegradient.com/

Arroz-11 avatar Jan 02 '25 09:01 Arroz-11

Man thanks for this.. this happens from time to time and such a freaking pain, nice workaround!

gateway avatar Jan 05 '25 22:01 gateway

man paperspace support really sucks.. this has happened a few times.. anyone know why this may happen..


After carefully reviewing your request, we regret to inform you that the type of support you require falls outside the scope of our support team. A third party developed the tools you mentioned in your inquiry, and as such, we cannot provide direct assistance with them.

Reviewing previous tickets regarding this issue, we can confirm that no changes were made from our end.

After reviewing the repository provided, we noticed that a workaround was provided there, have you tried that already? We highly encourage you to contact them about your issue.

Hope this information is of help.```

gateway avatar Jan 06 '25 01:01 gateway

I'm running ComfyUI on a Gradient notebook, and previously I’d get an auto-generated link like: https://tensorboard-.paperspacegradient.com/ This link no longer appears, and I’m unable to access the UI externally. all i get is something like : Starting server To see the GUI go to: http://0.0.0.0:6006/ To see the GUI go to: http://[::]:6006/ Has the auto-link generation feature been removed or changed? Any guidance would be appreciated. Thanks!

this temporary solution worked for me:

#2820 (comment)

Basically, look at the link of your Jupyter Notebook, for example: https://abcd1234.efgh5678.paperspacegradient.com Copy the letters and numbers before the first period (in this case, abcd1234.efgh5678) To generate the link, use this format: https://tensorboard-abcd1234.efgh5678.paperspacegradient.com/

got a better opimised solution :

1- Before starting ComfyUI, run the following code:

import os localurl = "https://tensorboard-" + os.environ.get('PAPERSPACE_FQDN') print(localurl)

This will generate the TensorBoard link.

2- Next, run the code cell that starts ComfyUI (the bottom one), and click on the generated TensorBoard link (generated by the previous one). Enjoy!

StamArtworks avatar Jan 07 '25 06:01 StamArtworks