Spaces:
Runtime error
Runtime error
File size: 1,754 Bytes
e1d0160 895bd1b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
from pathlib import Path
import os
from typing import Dict, Any
class Config:
# Project structure
ROOT_DIR = Path(__file__).parent.parent
DATA_DIR = ROOT_DIR / "data"
RAW_DATA_DIR = DATA_DIR / "raw"
PROCESSED_DATA_DIR = DATA_DIR / "processed"
MODELS_DIR = ROOT_DIR / "models"
MODEL_PATH = MODELS_DIR / "customer_support_gpt"
# Model configurations
MODEL_NAME = "EleutherAI/gpt-neo-125M"
MAX_LENGTH = 256
# Training configurations
TRAIN_CONFIG: Dict[str, Any] = {
"batch_size": 4,
"learning_rate": 2e-5,
"epochs": 3,
"weight_decay": 0.01,
"max_length": MAX_LENGTH,
}
# Generation configurations
GENERATION_CONFIG: Dict[str, Any] = {
"max_length": 100,
"temperature": 0.7,
"top_p": 0.95,
"top_k": 50,
"do_sample": True
}
# Gradio configurations
GRADIO_CONFIG: Dict[str, Any] = {
"title": "Customer Support Chatbot",
"description": "Ask your questions to the customer support bot!",
"examples": [
"How do I reset my password?",
"What are your shipping policies?",
"I want to return a product."
],
"share": False
}
# MLflow configurations
MLFLOW_TRACKING_URI = os.getenv("MLFLOW_TRACKING_URI", "http://localhost:5000")
EXPERIMENT_NAME = "customer-support-chatbot"
# AWS/SageMaker configurations
AWS_REGION = os.getenv("AWS_REGION", "us-east-1")
S3_BUCKET = os.getenv("S3_BUCKET", "customer-support-chatbot")
SAGEMAKER_ROLE = os.getenv("SAGEMAKER_ROLE")
# DVC configurations
DVC_REMOTE_NAME = "s3-storage"
DVC_REMOTE_URL = f"s3://{S3_BUCKET}/dvc"
|