data / hf_utils.py
Elron's picture
Upload folder using huggingface_hub
3d3a51b verified
raw
history blame contribute delete
No virus
2.46 kB
from pathlib import Path
from datasets.utils.py_utils import get_imports
from .deprecation_utils import compare_versions
from .file_utils import get_all_files_in_dir
def get_missing_imports(file, exclude=None):
if exclude is None:
exclude = []
src_dir = Path(__file__).parent
python_files = get_all_files_in_dir(src_dir, file_extension=".py")
# get only the file without the path and extension
required_modules = [Path(p).stem for p in python_files]
imports = get_imports(file)
imported_modules = [i[1] for i in imports if i[0] == "internal"]
return [
i for i in required_modules if i not in imported_modules and i not in exclude
]
class UnitxtVersionsConflictError(ValueError):
def __init__(self, error_in: str, hf_unitxt_version, installed_unitxt_version):
assert hf_unitxt_version != installed_unitxt_version
if compare_versions(hf_unitxt_version, installed_unitxt_version) == 1:
msg = f"Located locally installed Unitxt version {installed_unitxt_version} that is older than the Huggingface Unitxt {error_in} version {hf_unitxt_version}. Please either (1) update the local Unitxt package or (2) uninstall the local unitxt package (3) remove the calls to the Huggingface {error_in} API and use only the direct Unitxt APIs."
if compare_versions(hf_unitxt_version, installed_unitxt_version) == -1:
msg = f"Located locally installed Unitxt version {installed_unitxt_version} that is newer than the Huggingface Unitxt {error_in} version {hf_unitxt_version}. Please either (1) force-reload the {error_in} version or (2) downgrade the locally installed Unitxt version to {error_in} version or (3) uninstall the locally installed Unitxt, if you are not using the direct Unitxt APIs"
msg += "For more details see: https://unitxt.readthedocs.io/en/latest/docs/installation.html"
super().__init__(msg)
def get_installed_version():
from unitxt.settings_utils import get_constants as installed_get_constants
return installed_get_constants().version
def verify_versions_compatibility(hf_asset_type, hf_asset_version):
_verify_versions(hf_asset_type, get_installed_version(), hf_asset_version)
def _verify_versions(hf_asset_type, installed_version, hf_asset_version):
if installed_version != hf_asset_version:
raise UnitxtVersionsConflictError(
hf_asset_type, hf_asset_version, installed_version
)