-
Notifications
You must be signed in to change notification settings - Fork 27.7k
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 type hints for several pytorch models (batch-3) #25705
Merged
Rocketknight1
merged 6 commits into
huggingface:main
from
nablabits:feature/add-type-hints-for-models-batch-3
Aug 25, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e9742f0
Add missing type hints for ErnieM family
nablabits 900ba95
Add missing type hints for EsmForProteinFolding model
nablabits 3c42059
Add missing type hints for Graphormer model
nablabits 9f780e4
Add type hints for InstructBlipQFormer model
nablabits d60718e
Add missing type hints for LayoutLMForMaskedLM model
nablabits 00843e1
Add missing type hints for LukeForEntitySpanClassification model
nablabits File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1124,19 +1124,19 @@ def get_extended_attention_mask( | |
|
||
def forward( | ||
self, | ||
input_ids, | ||
attention_mask=None, | ||
position_ids=None, | ||
query_embeds=None, | ||
head_mask=None, | ||
encoder_hidden_states=None, | ||
encoder_attention_mask=None, | ||
past_key_values=None, | ||
use_cache=None, | ||
output_attentions=None, | ||
output_hidden_states=None, | ||
return_dict=None, | ||
): | ||
input_ids: torch.LongTensor, | ||
attention_mask: Optional[torch.FloatTensor] = None, | ||
position_ids: Optional[torch.LongTensor] = None, | ||
query_embeds: Optional[torch.Tensor] = None, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was unsure of the |
||
head_mask: Optional[torch.FloatTensor] = None, | ||
encoder_hidden_states: Optional[torch.FloatTensor] = None, | ||
encoder_attention_mask: Optional[torch.FloatTensor] = None, | ||
past_key_values: Optional[Tuple[Tuple[torch.FloatTensor]]] = None, | ||
use_cache: Optional[bool] = None, | ||
output_attentions: Optional[bool] = None, | ||
output_hidden_states: Optional[bool] = None, | ||
return_dict: Optional[bool] = None, | ||
) -> Union[Tuple[torch.FloatTensor], BaseModelOutputWithPoolingAndCrossAttentions]: | ||
r""" | ||
encoder_hidden_states (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*): | ||
Sequence of hidden-states at the output of the last layer of the encoder. Used in the cross-attention if | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For
perturb
I took what microsoft/graphormer uses.masked_tokens
on the other hand, raises aNotImplemented
whenever it has something that is not NoneThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haa, that's funny. Congrats on our first correct type hint of an explicit
None
!