File size: 1,477 Bytes
db1e5fb
 
b083a19
 
 
db1e5fb
 
 
 
 
 
b083a19
db1e5fb
 
 
 
 
 
 
c85d28f
 
 
 
db1e5fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from __future__ import annotations

from huggingface_hub import HfApi


class Uploader:
    def __init__(self, hf_token: str | None):
        self.api = HfApi(token=hf_token)

    def get_username(self) -> str:
        return self.api.whoami()['name']

    def upload(self,
               folder_path: str,
               repo_name: str,
               organization: str = '',
               repo_type: str = 'model',
               private: bool = True,
               delete_existing_repo: bool = False) -> str:
        if not folder_path:
            raise ValueError
        if not repo_name:
            raise ValueError
        if not organization:
            organization = self.get_username()
        repo_id = f'{organization}/{repo_name}'
        if delete_existing_repo:
            try:
                self.api.delete_repo(repo_id, repo_type=repo_type)
            except Exception:
                pass
        try:
            self.api.create_repo(repo_id, repo_type=repo_type, private=private)
            self.api.upload_folder(repo_id=repo_id,
                                   folder_path=folder_path,
                                   path_in_repo='.',
                                   repo_type=repo_type)
            url = f'https://huggingface.co/{repo_id}'
            message = f'Your model was successfully uploaded to <a href="{url}" target="_blank">{url}</a>.'
        except Exception as e:
            message = str(e)
        return message