You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to add a checkpoint to continue running? I'm currently somewhere where Colab Pro is not possible, and I want to continue iterating.
I looked into the files and it seems like the OpenAI CLIP contains:
def load(name: str, device: Union[str, torch.device] = "cuda" if torch.cuda.is_available() else "cpu", jit=True):
"""Load a CLIP model
Parameters
----------
name : str
A model name listed by `clip.available_models()`, or the path to a model checkpoint containing the state_dict
If it's possible to make checkpoints, would this be a good place to do so?
Thanks in advance, amazing work on this Github.
The text was updated successfully, but these errors were encountered:
Hello,
Is it possible to add a checkpoint to continue running? I'm currently somewhere where Colab Pro is not possible, and I want to continue iterating.
I looked into the files and it seems like the OpenAI CLIP contains:
def load(name: str, device: Union[str, torch.device] = "cuda" if torch.cuda.is_available() else "cpu", jit=True):
"""Load a CLIP model
If it's possible to make checkpoints, would this be a good place to do so?
Thanks in advance, amazing work on this Github.
The text was updated successfully, but these errors were encountered: