Unverified Commit 9129fd03 authored by Julien Chaumond's avatar Julien Chaumond Committed by GitHub
Browse files

`transformers-cli login` => `huggingface-cli login` (#18490)

* zero chance anyone's using that constant no?

* `transformers-cli login` => `huggingface-cli login`

* `transformers-cli repo create` => `huggingface-cli repo create`

* `make style`
parent 8d1f9039
...@@ -1596,7 +1596,7 @@ class PreTrainedTokenizerBase(SpecialTokensMixin, PushToHubMixin): ...@@ -1596,7 +1596,7 @@ class PreTrainedTokenizerBase(SpecialTokensMixin, PushToHubMixin):
'http://hostname': 'foo.bar:4012'}`. The proxies are used on each request. 'http://hostname': 'foo.bar:4012'}`. The proxies are used on each request.
use_auth_token (`str` or *bool*, *optional*): use_auth_token (`str` or *bool*, *optional*):
The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated
when running `transformers-cli login` (stored in `~/.huggingface`). when running `huggingface-cli login` (stored in `~/.huggingface`).
local_files_only (`bool`, *optional*, defaults to `False`): local_files_only (`bool`, *optional*, defaults to `False`):
Whether or not to only rely on local files and not to attempt to download any files. Whether or not to only rely on local files and not to attempt to download any files.
revision (`str`, *optional*, defaults to `"main"`): revision (`str`, *optional*, defaults to `"main"`):
......
...@@ -716,7 +716,7 @@ def cached_file( ...@@ -716,7 +716,7 @@ def cached_file(
'http://hostname': 'foo.bar:4012'}.` The proxies are used on each request. 'http://hostname': 'foo.bar:4012'}.` The proxies are used on each request.
use_auth_token (`str` or *bool*, *optional*): use_auth_token (`str` or *bool*, *optional*):
The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated
when running `transformers-cli login` (stored in `~/.huggingface`). when running `huggingface-cli login` (stored in `~/.huggingface`).
revision (`str`, *optional*, defaults to `"main"`): revision (`str`, *optional*, defaults to `"main"`):
The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a
git-based system for storing models and other artifacts on huggingface.co, so `revision` can be any git-based system for storing models and other artifacts on huggingface.co, so `revision` can be any
...@@ -870,7 +870,7 @@ def get_file_from_repo( ...@@ -870,7 +870,7 @@ def get_file_from_repo(
'http://hostname': 'foo.bar:4012'}.` The proxies are used on each request. 'http://hostname': 'foo.bar:4012'}.` The proxies are used on each request.
use_auth_token (`str` or *bool*, *optional*): use_auth_token (`str` or *bool*, *optional*):
The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated
when running `transformers-cli login` (stored in `~/.huggingface`). when running `huggingface-cli login` (stored in `~/.huggingface`).
revision (`str`, *optional*, defaults to `"main"`): revision (`str`, *optional*, defaults to `"main"`):
The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a The specific model version to use. It can be a branch name, a tag name, or a commit id, since we use a
git-based system for storing models and other artifacts on huggingface.co, so `revision` can be any git-based system for storing models and other artifacts on huggingface.co, so `revision` can be any
...@@ -983,7 +983,7 @@ def get_list_of_files( ...@@ -983,7 +983,7 @@ def get_list_of_files(
identifier allowed by git. identifier allowed by git.
use_auth_token (`str` or *bool*, *optional*): use_auth_token (`str` or *bool*, *optional*):
The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated
when running `transformers-cli login` (stored in `~/.huggingface`). when running `huggingface-cli login` (stored in `~/.huggingface`).
local_files_only (`bool`, *optional*, defaults to `False`): local_files_only (`bool`, *optional*, defaults to `False`):
Whether or not to only rely on local files and not to attempt to download any files. Whether or not to only rely on local files and not to attempt to download any files.
...@@ -1161,8 +1161,8 @@ class PushToHubMixin: ...@@ -1161,8 +1161,8 @@ class PushToHubMixin:
Whether or not the repository created should be private (requires a paying subscription). Whether or not the repository created should be private (requires a paying subscription).
use_auth_token (`bool` or `str`, *optional*): use_auth_token (`bool` or `str`, *optional*):
The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated The token to use as HTTP bearer authorization for remote files. If `True`, will use the token generated
when running `transformers-cli login` (stored in `~/.huggingface`). Will default to `True` if when running `huggingface-cli login` (stored in `~/.huggingface`). Will default to `True` if `repo_url`
`repo_url` is not specified. is not specified.
max_shard_size (`int` or `str`, *optional*, defaults to `"10GB"`): max_shard_size (`int` or `str`, *optional*, defaults to `"10GB"`):
Only applicable for models. The maximum size for a checkpoint before being sharded. Checkpoints shard Only applicable for models. The maximum size for a checkpoint before being sharded. Checkpoints shard
will then be each of size lower than this size. If expressed as a string, needs to be digits followed will then be each of size lower than this size. If expressed as a string, needs to be digits followed
......
...@@ -118,7 +118,7 @@ class ModelArguments: ...@@ -118,7 +118,7 @@ class ModelArguments:
use_auth_token: bool = field( use_auth_token: bool = field(
default=False, default=False,
metadata={ metadata={
"help": "Will use the token generated when running `transformers-cli login` (necessary to use this script " "help": "Will use the token generated when running `huggingface-cli login` (necessary to use this script "
"with private models)." "with private models)."
}, },
) )
......
...@@ -181,7 +181,7 @@ class ModelArguments: ...@@ -181,7 +181,7 @@ class ModelArguments:
default=False, default=False,
metadata={ metadata={
"help": ( "help": (
"Will use the token generated when running `transformers-cli login` (necessary to use this script " "Will use the token generated when running `huggingface-cli login` (necessary to use this script "
"with private models)." "with private models)."
) )
}, },
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment