-
Notifications
You must be signed in to change notification settings - Fork 5
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
Fixed the segmentation fault in CamemBERT and VIT #6
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ def __init__(self, model_name: str): | |
self.layer3 = AutoModelForTokenClassification.from_pretrained(model_name).classifier | ||
|
||
def forward(self, input): | ||
x = input.reshape(1, 7, 768) | ||
# Return only the logits. | ||
x = self.layer1(input).last_hidden_state | ||
x = self.layer2(x) | ||
|
@@ -44,7 +45,10 @@ def forward(self, input): | |
|
||
print("Parsing sentence tokens.") | ||
example_input = prepare_sentence_tokens(model_name, sentence) | ||
print(example_input.shape) | ||
print("example_input shape: ", example_input.shape) | ||
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. Can you add comment above this line to show what is the original shape? 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. sure |
||
|
||
example_input = example_input.reshape(1, 7*768) | ||
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. Plz try |
||
print("example_input shape after reshaping: ", example_input.shape) | ||
|
||
print("Instantiating model.") | ||
model = OnlyLogitsHuggingFaceModel(model_name) | ||
|
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.
Hmmm, I don't see how this works. Shouldn't it be
input =
instead ofx =
? And you already didexample_input = example_input.reshape(1, 7*768)
in line 50 but reshape it back here?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.
oh, my mistake