Keeping gradio from phoning home #9
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Gradio tries to call
api.gradio.app
during every startup.This might be a potential fix.
Added in commit
f03b6b8d97
, courtesy of >>>/g/89228409This patch doesn't really do anything on my end. Still seeing a call to gradio and a couple of lookups to huggingface.co (presumably for models, even though they are already cached).
I found
analytics_enabled
, but passing that here didn't do much either.Indeed, I managed to catch a stack trace while trying to quickly kill it while working on something else, at /tortoise/utils/wav2vec_alignment.py#L56, which isn't really something I can nix checking for updates on initialization.
Added setting
Only Load Models Locally
to force all model loading to only load the model locally in commit3621e16ef9
.This should nail out any other remaining network requests, but I can't be assed to validate it for sure.
I'm still getting attempts at some outside connections
Everything still works fine, just this stacktrace at each generation.