# Hugging Face CLI Upload Commands ## Step 1: Get Your Token 1. Go to: https://huggingface.co/settings/tokens 2. Create a new token with "Write" permissions 3. Copy the token (starts with hf_) ## Step 2: Set Token and Upload ### Option A: Set environment variable ```bash export HF_TOKEN=your_token_here hf upload megharudushi/Sheikh . ``` ### Option B: Pass token directly ```bash hf upload megharudushi/Sheikh . --token your_token_here ``` ### Option C: Login interactively ```bash hf auth login # Enter your token when prompted hf upload megharudushi/Sheikh . ``` ## Step 3: Verify Upload After upload, visit: https://huggingface.co/megharudushi/Sheikh ## Files Being Uploaded - model.bin (1.4GB) - Main model weights - tokenizer.json (3.4MB) - Tokenizer configuration - vocab.json (780KB) - Vocabulary - merges.txt (446KB) - BPE merges - config.json (13KB) - Model configuration - Plus 6 other configuration files