Closed jgcodes2020 closed 12 months ago
Current timething's requirement for tokenizers is incompatible with current transformers.
timething
tokenizers
transformers
Steps to reproduce the behavior:
timething --help
No errors at all.
A basic workaround involves the following:
dependency_version_check.py
pkgs_to_check_at_runtime
# pkgs_to_check_at_runtime = "python tqdm regex sacremoses requests packaging filelock numpy tokenizers".split() pkgs_to_check_at_runtime = "python tqdm regex sacremoses requests packaging filelock numpy".split()
thanks @jgcodes2020, this is now fixed.
What
Current
timething
's requirement fortokenizers
is incompatible with currenttransformers
.How to reproduce
Steps to reproduce the behavior:
timething --help
Expected
No errors at all.
Additional context
A basic workaround involves the following:
dependency_version_check.py
intransformers
.pkgs_to_check_at_runtime
and removetokenizers
. This prevents the version check. a. There is probably a better way to fix it.