Spaces:
Runtime error
Runtime error
| # config/settings.py | |
| # Hugging Face models | |
| SENTIMENT_MODEL = "distilbert-base-uncased-finetuned-sst-2-english" | |
| SUMMARIZER_MODEL = "facebook/bart-large-cnn" | |
| # File paths | |
| DATA_PATH = "data/sample_texts.txt" | |
| # WordCloud settings | |
| WC_WIDTH = 800 | |
| WC_HEIGHT = 400 | |
| WC_BG_COLOR = "white" | |