Spaces:
Sleeping
Sleeping
File size: 1,827 Bytes
2279159 | 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 | # 准备 HuggingFace Docker 部署文件 (Windows PowerShell)
Write-Host "==========================================" -ForegroundColor Cyan
Write-Host "Preparing Psc_Predict for HuggingFace" -ForegroundColor Cyan
Write-Host "==========================================" -ForegroundColor Cyan
# 创建 models 目录
if (-not (Test-Path "models")) {
New-Item -ItemType Directory -Path "models" | Out-Null
}
# 从 Psc_Predict 复制模型文件
Write-Host "`nCopying XGBoost models..." -ForegroundColor Yellow
Copy-Item "..\Psc_Predict\Psc_Predict\output\xgboost\*.pkl" -Destination "models\" -Force
# 检查模型文件
Write-Host "`nModels copied:" -ForegroundColor Green
Get-ChildItem models\
# 显示文件结构
Write-Host "`nDirectory structure:" -ForegroundColor Green
Write-Host "Psc_Predict_server/"
Write-Host "├── Dockerfile"
Write-Host "├── README.md"
Write-Host "├── requirements.txt"
Write-Host "├── server.py"
Write-Host "└── models/"
Get-ChildItem models\ | ForEach-Object { Write-Host " ├── $($_.Name)" }
Write-Host "`n==========================================" -ForegroundColor Cyan
Write-Host "Ready to deploy!" -ForegroundColor Green
Write-Host ""
Write-Host "Next steps:" -ForegroundColor Yellow
Write-Host "1. Create a new HuggingFace Space (Docker SDK)"
Write-Host "2. Upload all files to the Space"
Write-Host "3. Wait for build and deployment"
Write-Host ""
Write-Host "Or use git:" -ForegroundColor Yellow
Write-Host " git init"
Write-Host " git remote add origin https://huggingface.co/spaces/YOUR_USERNAME/psc-predict"
Write-Host " git add ."
Write-Host " git commit -m 'Initial commit'"
Write-Host " git push -u origin main"
Write-Host "==========================================" -ForegroundColor Cyan
|