DBMe
/

Text Generation
Transformers
Safetensors
mistral
chat
conversational
text-generation-inference
Inference Endpoints
exl2
File size: 1,767 Bytes
c1378d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
from huggingface_hub import HfApi
from pathlib import Path

# Define the parameters for uploading
repo_id = "DBMe/magnum-v2-123b-2.85bpw-h6-exl2"  # Replace with your actual repo ID
folder_path = "/home/asusws-x570-ace/programs/tabbyAPI/models/magnum-v2-123b_exl2_2.85bpw/"  # Replace with your folder path
repo_type = "model"  # Change to "model" or "space" if applicable
revision = "main"  # Optional: specify the branch or use "main"
private = False  # Set to True if the repository should be private
allow_patterns = None  # Optional: specify patterns of files to include
ignore_patterns = None  # Optional: specify patterns of files to exclude
num_workers = 1  # Set based on your system; lower if your internet is unstable
print_report = True  # Enable progress reporting
print_report_every = 60  # Report frequency in seconds

# Initialize the Hugging Face API client
api = HfApi()

# Function to upload the folder in a resumable manner
def upload_resumable():
    try:
        print("Starting upload process...")

        # Perform the upload with the provided parameters
        api.upload_large_folder(
            repo_id=repo_id,
            folder_path=Path(folder_path),
            repo_type=repo_type,
            revision=revision,
            private=private,
            allow_patterns=allow_patterns,
            ignore_patterns=ignore_patterns,
            num_workers=num_workers,
            print_report=print_report,
            print_report_every=print_report_every,
        )

        print("Upload completed successfully!")

    except Exception as e:
        print(f"Upload interrupted due to error: {e}")
        print("You can resume the upload by running the script again.")

# Call the function to start the upload
upload_resumable()