BlackTrade
fix raw_text, and key for positive
1cf4b9a
raw
history blame contribute delete
306 Bytes
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()