-
Notifications
You must be signed in to change notification settings - Fork 31.9k
[fsmt test] basic config test with online model + super tiny model #7860
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| #!/usr/bin/env python | ||
| # coding: utf-8 | ||
|
|
||
| # This script creates a super tiny model that is useful inside tests, when we just want to test that | ||
| # the machinery works, without needing to the check the quality of the outcomes. | ||
| # | ||
| # This version creates a tiny vocab first, and then a tiny model - so the outcome is truly tiny - | ||
| # all files ~60KB. As compared to taking a full-size model, reducing to the minimum its layers and | ||
| # emb dimensions, but keeping the full vocab + merges files, leading to ~3MB in total for all files. | ||
| # The latter is done by `fsmt-make-super-tiny-model.py`. | ||
| # | ||
| # It will be used then as "stas/tiny-wmt19-en-ru" | ||
|
|
||
| from pathlib import Path | ||
| import json | ||
| import tempfile | ||
|
|
||
| from transformers import FSMTTokenizer, FSMTConfig, FSMTForConditionalGeneration | ||
| from transformers.tokenization_fsmt import VOCAB_FILES_NAMES | ||
|
|
||
| mname_tiny = "tiny-wmt19-en-ru" | ||
|
|
||
| # Build | ||
|
|
||
| # borrowed from a test | ||
| vocab = [ "l", "o", "w", "e", "r", "s", "t", "i", "d", "n", "w</w>", "r</w>", "t</w>", "lo", "low", "er</w>", "low</w>", "lowest</w>", "newer</w>", "wider</w>", "<unk>", ] | ||
| vocab_tokens = dict(zip(vocab, range(len(vocab)))) | ||
| merges = ["l o 123", "lo w 1456", "e r</w> 1789", ""] | ||
|
|
||
| with tempfile.TemporaryDirectory() as tmpdirname: | ||
| build_dir = Path(tmpdirname) | ||
| src_vocab_file = build_dir / VOCAB_FILES_NAMES["src_vocab_file"] | ||
| tgt_vocab_file = build_dir / VOCAB_FILES_NAMES["tgt_vocab_file"] | ||
| merges_file = build_dir / VOCAB_FILES_NAMES["merges_file"] | ||
| with open(src_vocab_file, "w") as fp: fp.write(json.dumps(vocab_tokens)) | ||
| with open(tgt_vocab_file, "w") as fp: fp.write(json.dumps(vocab_tokens)) | ||
| with open(merges_file, "w") as fp : fp.write("\n".join(merges)) | ||
|
|
||
| tokenizer = FSMTTokenizer( | ||
| langs=["en", "ru"], | ||
| src_vocab_size = len(vocab), | ||
| tgt_vocab_size = len(vocab), | ||
| src_vocab_file=src_vocab_file, | ||
| tgt_vocab_file=tgt_vocab_file, | ||
| merges_file=merges_file, | ||
| ) | ||
|
|
||
| config = FSMTConfig( | ||
| langs=['ru', 'en'], | ||
| src_vocab_size=1000, tgt_vocab_size=1000, | ||
| d_model=4, | ||
| encoder_layers=1, decoder_layers=1, | ||
| encoder_ffn_dim=4, decoder_ffn_dim=4, | ||
| encoder_attention_heads=1, decoder_attention_heads=1, | ||
| ) | ||
|
|
||
| tiny_model = FSMTForConditionalGeneration(config) | ||
| print(f"num of params {tiny_model.num_parameters()}") | ||
|
|
||
| # Test | ||
| batch = tokenizer.prepare_seq2seq_batch(["Making tiny model"]) | ||
| outputs = tiny_model(**batch, return_dict=True) | ||
|
|
||
| print("test output:", len(outputs.logits[0])) | ||
|
|
||
| # Save | ||
| tiny_model.half() # makes it smaller | ||
| tiny_model.save_pretrained(mname_tiny) | ||
| tokenizer.save_pretrained(mname_tiny) | ||
|
|
||
| print(f"Generated {mname_tiny}") | ||
|
|
||
| # Upload | ||
| # transformers-cli upload tiny-wmt19-en-ru |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.