Skip to content

Conversation

@YenFuLin
Copy link
Contributor

@YenFuLin YenFuLin commented Mar 12, 2025

What does this PR do?

When training Chameleon, I got the error message: "TypeError 'nonetype' object is not subscriptable". Because inputs_embeds may be None, I think it should check inputs_embeds type first before using it.

Before submitting

  • This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
  • Did you read the contributor guideline,
    Pull Request section?
  • Was this discussed/approved via a Github issue or the forum? Please add a link
    to it if that's the case.
  • Did you make sure to update the documentation with your changes? Here are the
    documentation guidelines, and
    here are tips on formatting docstrings.
  • Did you write any new necessary tests?

Who can review?

@amyeroberts, @qubvel, @zucchini-nlp

Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.

@github-actions github-actions bot marked this pull request as draft March 12, 2025 14:52
@github-actions
Copy link
Contributor

Hi 👋, thank you for opening this pull request! The pull request is converted to draft by default. When it is ready for review, please click the Ready for review button (at the bottom of the PR page).

@YenFuLin YenFuLin marked this pull request as ready for review March 12, 2025 15:59
Copy link
Contributor

@qubvel qubvel left a comment

Choose a reason for hiding this comment

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

Hey @YenFuLin, thanks for opening the PR!

Comment on lines 1295 to 1299
if (
not is_torchdynamo_compiling()
and inputs_embeds is not None
and inputs_embeds[special_image_mask].numel() != image_tokens.numel()
):
Copy link
Contributor

Choose a reason for hiding this comment

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

Should we move the following block above instead of adding this check? I suppose @zucchini-nlp knows better 😄

    if inputs_embeds is None:
            inputs_embeds = self.embed_tokens(input_ids)

Copy link
Member

Choose a reason for hiding this comment

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

agreed!

Copy link
Member

@zucchini-nlp zucchini-nlp left a comment

Choose a reason for hiding this comment

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

Thanks!

Copy link
Contributor

@qubvel qubvel left a comment

Choose a reason for hiding this comment

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

Thanks!

@zucchini-nlp
Copy link
Member

cool, let's merge then!

@zucchini-nlp zucchini-nlp merged commit 00915d3 into huggingface:main Mar 18, 2025
12 checks passed
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.

3 participants