Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🤗 Add support for downloading Huggingface weights. #2

Merged
merged 3 commits into from
Sep 3, 2024

Conversation

lcxrocks
Copy link
Contributor

@lcxrocks lcxrocks commented Sep 2, 2024

Now supports download weight from huggingface directly by calling model.from_pretrained(model_name) as demonstrated in hf_demo_2x.py.

model = Model(-1)
model.from_pretrained(args.model)

@lcxrocks lcxrocks mentioned this pull request Sep 2, 2024
from huggingface_hub import hf_hub_download

ckpt_path = hf_hub_download(
repo_id="MCG-NJU/VFIMamba", filename="ckpt/" + model_name + ".pkl"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note, it would still be useful to store the checkpoints in separate model repos (one for VFIMamba and one for VFIMamba_S), this to ensure downloads work: https://huggingface.co/docs/hub/models-download-stats (if you're interested in seeing how many times people use your model)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

or alternatively, you could open a PR on huggingface.js to specify a file extension to count downloads for.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your advice! Pushed a new version.

Comment on lines 45 to 60
def from_pretrained(self, model_name):
try:
from huggingface_hub import hf_hub_download
assert model_name in ["VFIMamba", "VFIMamba_S"], "Please select a valid model name from ['VFIMamba', 'VFIMamba_S']"

ckpt_path = hf_hub_download(
repo_id=f"MCG-NJU/{model_name}", filename=model_name + ".pkl"
)
checkpoint = torch.load(ckpt_path)
except:
# In case the model is not hosted on huggingface
# or the user cannot import huggingface_hub correctly, model_name option: VFIMamba, VFIMamba_S
_VFIMAMBA_URL = f"https://huggingface.co/MCG-NJU/{model_name}/resolve/main/{model_name}.pkl"
checkpoint = torch.hub.load_state_dict_from_url(_VFIMAMBA_URL)

self.net.load_state_dict(convert(checkpoint), strict=True)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
def from_pretrained(self, model_name):
try:
from huggingface_hub import hf_hub_download
assert model_name in ["VFIMamba", "VFIMamba_S"], "Please select a valid model name from ['VFIMamba', 'VFIMamba_S']"
ckpt_path = hf_hub_download(
repo_id=f"MCG-NJU/{model_name}", filename=model_name + ".pkl"
)
checkpoint = torch.load(ckpt_path)
except:
# In case the model is not hosted on huggingface
# or the user cannot import huggingface_hub correctly, model_name option: VFIMamba, VFIMamba_S
_VFIMAMBA_URL = f"https://huggingface.co/MCG-NJU/{model_name}/resolve/main/{model_name}.pkl"
checkpoint = torch.hub.load_state_dict_from_url(_VFIMAMBA_URL)
self.net.load_state_dict(convert(checkpoint), strict=True)
@classmethod
def from_pretrained(cls, model_id: str, local_rank: int) -> "Model":
try:
from huggingface_hub import hf_hub_download
except ImportError:
raise ImportError(
"Model is hosted on the Hugging Face Hub. "
"Please install huggingface_hub by running `pip install huggingface_hub` to load the weights correctly."
)
if "/" not in model_id:
model_id = "MCG-NJU/" + model_id
ckpt_path = hf_hub_download(repo_id=model_id, filename="model.pkl")
checkpoint = torch.load(ckpt_path)
model = cls(local_rank)
model.net.load_state_dict(convert(checkpoint), strict=True)
return model

Hi there, maintainer of huggingface_hub here 👋 May I suggest a more opinionated implementation for this method? In particular:

  • I would make huggingface_hub required and raise an explicit error if it's not the case. This way you don't have to maintain different ways to load the model. In particular, end users will benefit from the huggingface_hub cache when running the script several times.
  • Now that models are in two separate repos, I would rename the weights files to model.pkl in both cases. This way, the repo id and filename don't have to be correlated. Also, it would simplify the way downloads are counted.
  • I would also accept any model_id as input, not only the 2 official one from the repo. This way, your library can be reused by anyone wanting the train, retrain, fine-tuned, etc new models based on your work. This should greatly improve adoption of the library. model_id can be either a full repo id (e.g. MCG-NJU/VFIMamba_S) or simply a model name in which case the MCG-NJU/ org is prefixed.
  • I would make from_pretrained a class method to initialize the object directly with model = Model.from_pretrained("VFIMamba_S", local_rank=-1)

Those changes are not an obligation to make things work with the Hub but in my opinion it would greatly improve the integration. Let me know what you think!

(cc @hanouticelina for viz')

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much! Your suggestion is very helpful. I've made some changes based on your advice.

hf_demo_2x.py Outdated
Comment on lines 25 to 31
if args.model == 'VFIMamba':
TTA = True
cfg.MODEL_CONFIG['LOGNAME'] = 'VFIMamba'
cfg.MODEL_CONFIG['MODEL_ARCH'] = cfg.init_model_config(
F = 32,
depth = [2, 2, 2, 3, 3]
)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could these config values be stored in a config.json file alongside the model weights on the Hub? This way they could be downloaded when instantiating the model and therefore reduce the boilerplate code to use Model.

(just a suggestion, I'm not entirely sure how cfg and Model are interacting currently)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Absolutely! Thanks to your advice, we can now directly initialize a model when loading weights from Hugging Face using the following code (as also demonstrated in hf_demo_2x.py):

model = Model.from_pretrained(args.model)

Cheers!

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome!

@GuozhenZhang1999 GuozhenZhang1999 merged commit eb1d6dd into MCG-NJU:main Sep 3, 2024
@NielsRogge
Copy link

Hi @GuozhenZhang1999,

Would be great to merge the following 2 PRs:

This will enable huggingface/huggingface.js#885 to be merged

Wauplin added a commit to huggingface/huggingface.js that referenced this pull request Sep 9, 2024
This PR is linked with MCG-NJU/VFIMamba#2 to
ensure download stats are working for the VFI-Mamba repo.

It also adds a "How to use this model" button with a code snippet.

---------

Co-authored-by: Lucain <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants