CoolFace
Modelpublic

alphamerian/speaker-diarization-3.1

sourceHugging Facemitupdated 5mo agoView on Hugging Face
0likes9downloads
sync_to_hub.yaml21 linesDownload Raw Back to workflows
1name: Sync to Hugging Face hub2 3on:4  push:5    branches: [main]6 7  # to run this workflow manually from the Actions tab8  workflow_dispatch:9 10jobs:11  sync-to-hub:12    runs-on: ubuntu-latest13    steps:14      - uses: actions/checkout@v215        with:16          fetch-depth: 017      - name: Push to hub18        env:19          HF_TOKEN: ${{ secrets.HF_TOKEN }}20        run: git push https://hbredin:$HF_TOKEN@huggingface.co/pyannote/speaker-diarization-3.1 main --force21