Spaces:
Sleeping
Sleeping
File size: 306 Bytes
e72169b 1cf4b9a e72169b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
"""
Crypto market is Positive (LABEL_1) or Negative (LABEL_0)
"""
TASK: str = "sentiment-analysis"
MODEL_NAME: str = "kk08/CryptoBERT"
TITLE: str = "Crypto Market Sentiment Analyzer"
settings = Settings()
|