diff options
author | Jiří Podivín <66251151+jpodivin@users.noreply.github.com> | 2023-11-17 16:20:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 17:20:53 +0200 |
commit | f7d5e975424ff0eea55ca5a9181ac8e15553c1fc (patch) | |
tree | d2fbbea855ed3d06f1ff1569d8e5b6cb77caf93b /tests | |
parent | ba4cf5c0bf37a729d29e899dadf14541cddd23d4 (diff) |
py : remove superfluous import statements (#4076)
Signed-off-by: Jiri Podivin <jpodivin@gmail.com>
Co-authored-by: Jiri Podivin <jpodivin@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-tokenizer-0-falcon.py | 2 | ||||
-rw-r--r-- | tests/test-tokenizer-0-llama.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/test-tokenizer-0-falcon.py b/tests/test-tokenizer-0-falcon.py index cf65a3f6..65e1c0db 100644 --- a/tests/test-tokenizer-0-falcon.py +++ b/tests/test-tokenizer-0-falcon.py @@ -1,7 +1,5 @@ # tests with BPE tokenizer -import os -import sys import argparse from transformers import AutoTokenizer diff --git a/tests/test-tokenizer-0-llama.py b/tests/test-tokenizer-0-llama.py index 078f680b..21df8e6e 100644 --- a/tests/test-tokenizer-0-llama.py +++ b/tests/test-tokenizer-0-llama.py @@ -1,7 +1,5 @@ # tests with SPM tokenizer -import os -import sys import argparse from sentencepiece import SentencePieceProcessor |