CoolFace
Apppublic

patellae/Sentimental_Analysis_From_Scratch_Using_Stacked_LSTMs

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
update_space.yml29 linesDownload Raw Back to workflows
1name: Run Python script2 3on:4  push:5    branches:6      - main7 8jobs:9  build:10    runs-on: ubuntu-latest11 12    steps:13    - name: Checkout14      uses: actions/checkout@v215 16    - name: Set up Python17      uses: actions/setup-python@v218      with:19        python-version: '3.9'20 21    - name: Install Gradio22      run: python -m pip install gradio23 24    - name: Log in to Hugging Face25      run: python -c 'import huggingface_hub; huggingface_hub.login(token="${{ secrets.hf_token }}")'26 27    - name: Deploy to Spaces28      run: gradio deploy29