We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bec23dd commit 79ab94aCopy full SHA for 79ab94a
1 file changed
.github/workflows/sentiment.yml
@@ -53,16 +53,6 @@ jobs:
53
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
54
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
55
56
- # 7. 모델 없을 때만 Supabase에서 다운로드
57
- - name: Download model if not cached
58
- run: |
59
- if [ ! -f SaveModel/upstock_sentiment_model.keras ]; then
60
- echo "Downloading model from Supabase..."
61
- python scripts/download_model.py
62
- else
63
- echo "Model already cached, skip download"
64
- fi
65
-
66
- # 8. 스크립트 실행
+ # 7. 스크립트 실행 (main.py 안에서 필요시 모델 다운로드)
67
- name: Run sentiment script
68
run: python main.py
0 commit comments