| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- # Copyright 2023-present, the HuggingFace Inc. team.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """Contains command to upload a large folder with the CLI."""
- import os
- from typing import Annotated
- import typer
- from huggingface_hub import logging
- from huggingface_hub.utils import disable_progress_bars
- from ._cli_utils import (
- FormatWithAutoOpt,
- PrivateOpt,
- RepoIdArg,
- RepoType,
- RepoTypeOpt,
- RevisionOpt,
- TokenOpt,
- get_hf_api,
- )
- from ._output import OutputFormatWithAuto, out
- logger = logging.get_logger(__name__)
- UPLOAD_LARGE_FOLDER_EXAMPLES = [
- "hf upload-large-folder Wauplin/my-cool-model ./large_model_dir",
- "hf upload-large-folder Wauplin/my-cool-model ./large_model_dir --revision v1.0",
- ]
- def upload_large_folder(
- repo_id: RepoIdArg,
- local_path: Annotated[
- str,
- typer.Argument(
- help="Local path to the folder to upload.",
- ),
- ],
- repo_type: RepoTypeOpt = RepoType.model,
- revision: RevisionOpt = None,
- private: PrivateOpt = None,
- include: Annotated[
- list[str] | None,
- typer.Option(
- help="Glob patterns to match files to upload.",
- ),
- ] = None,
- exclude: Annotated[
- list[str] | None,
- typer.Option(
- help="Glob patterns to exclude from files to upload.",
- ),
- ] = None,
- token: TokenOpt = None,
- num_workers: Annotated[
- int | None,
- typer.Option(
- help="Number of workers to use to hash, upload and commit files.",
- ),
- ] = None,
- no_report: Annotated[
- bool,
- typer.Option(
- help="Whether to disable regular status report.",
- ),
- ] = False,
- no_bars: Annotated[
- bool,
- typer.Option(
- help="Whether to disable progress bars.",
- ),
- ] = False,
- format: FormatWithAutoOpt = OutputFormatWithAuto.auto,
- ) -> None:
- """Upload a large folder to the Hub. Recommended for resumable uploads."""
- if not os.path.isdir(local_path):
- raise typer.BadParameter("Large upload is only supported for folders.", param_hint="local_path")
- out.warning(
- "You are about to upload a large folder to the Hub using `hf upload-large-folder`. "
- "This is a new feature so feedback is very welcome!\n"
- "\n"
- "A few things to keep in mind:\n"
- " - Repository limits still apply: https://huggingface.co/docs/hub/repositories-recommendations\n"
- " - Do not start several processes in parallel.\n"
- " - You can interrupt and resume the process at any time. "
- "The script will pick up where it left off except for partially uploaded files that would have to be entirely reuploaded.\n"
- " - Do not upload the same folder to several repositories. If you need to do so, you must delete the `./.cache/huggingface/` folder first.\n"
- "\n"
- f"Some temporary metadata will be stored under `{local_path}/.cache/huggingface`.\n"
- " - You must not modify those files manually.\n"
- " - You must not delete the `./.cache/huggingface/` folder while a process is running.\n"
- " - You can delete the `./.cache/huggingface/` folder to reinitialize the upload state when process is not running. Files will have to be hashed and preuploaded again, except for already committed files.\n"
- "\n"
- "If the process output is too verbose, you can disable the progress bars with `--no-bars`. "
- "You can also entirely disable the status report with `--no-report`.\n"
- "\n"
- "For more details, run `hf upload-large-folder --help` or check the documentation at "
- "https://huggingface.co/docs/huggingface_hub/guides/upload#upload-a-large-folder."
- )
- if no_bars:
- disable_progress_bars()
- api = get_hf_api(token=token)
- api.upload_large_folder(
- repo_id=repo_id,
- folder_path=local_path,
- repo_type=repo_type.value,
- revision=revision,
- private=private,
- allow_patterns=include,
- ignore_patterns=exclude,
- num_workers=num_workers,
- print_report=not no_report,
- )
|