Spaces:
Sleeping
Sleeping
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() | |