Added uncertainty estimation scripts for ByT5 architecture models - #63
Open
haukurb wants to merge 1 commit into
Open
Added uncertainty estimation scripts for ByT5 architecture models#63haukurb wants to merge 1 commit into
haukurb wants to merge 1 commit into
Conversation
HaukurPall
approved these changes
Nov 13, 2023
| model = model.train() | ||
| else: | ||
| model = model.eval() | ||
| model = model.to("cuda").half() if use_gpu else model |
Member
There was a problem hiding this comment.
Er half ok? Þjálfum við með FP16? Ég held að við gerum það en ég veit að upphaflegu líkönin eru með Bfloat16
| MAX_LENGTH = 512 | ||
|
|
||
|
|
||
| def batch_by_n(iterable, batch_size): |
Member
There was a problem hiding this comment.
þetta fall er skilgreint í hinni skránni líka. Import-a?
| model = T5ForConditionalGeneration.from_pretrained(str(checkpoint_path)) | ||
| model = model.to("cuda").half() if use_gpu else model | ||
|
|
||
| def prepare_model_inputs(data_lines): |
Member
There was a problem hiding this comment.
Þetta er líka skilgreint í hinni skránni og mikið af þessum kóða. Er hægt að samnýta?
| permuted_stds.append(seq_stds) | ||
|
|
||
| # # recover the original order by inverting the length-sorted indices | ||
| inverse_indices = sorted_indices.argsort().tolist() |
| # we need to pass the attention mask to the model (encoder attention mask) | ||
| encoder_attention_mask = model_inputs["attention_mask"] | ||
| tgt_ids = prepare_model_inputs(decoded_output)["input_ids"] | ||
| cpu = torch.device("cpu") |
Member
There was a problem hiding this comment.
ég vona að þetta sé ekki dýrt kall
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.