Spaces:
Sleeping
Sleeping
File size: 13,229 Bytes
e513905 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 |
#!/usr/bin/env python3
"""
Textilindo AI Training API - Pure API Version
No HTML interfaces, only API endpoints for training and chat
"""
import os
import json
import logging
import torch
from pathlib import Path
from datetime import datetime
from typing import Dict, Any, Optional
from fastapi import FastAPI, HTTPException, BackgroundTasks
from pydantic import BaseModel
import uvicorn
# Setup logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Initialize FastAPI app
app = FastAPI(
title="Textilindo AI Training API",
description="Pure API-based training system for Textilindo AI Assistant",
version="1.0.0"
)
# Training status storage
training_status = {
"is_training": False,
"progress": 0,
"status": "idle",
"current_step": 0,
"total_steps": 0,
"loss": 0.0,
"start_time": None,
"end_time": None,
"error": None
}
# Request/Response models
class TrainingRequest(BaseModel):
model_name: str = "distilgpt2"
dataset_path: str = "data/lora_dataset_20250910_145055.jsonl"
config_path: str = "configs/training_config.yaml"
max_samples: int = 20
epochs: int = 1
batch_size: int = 1
learning_rate: float = 5e-5
class TrainingResponse(BaseModel):
success: bool
message: str
training_id: str
status: str
class ChatRequest(BaseModel):
message: str
conversation_id: Optional[str] = None
class ChatResponse(BaseModel):
response: str
conversation_id: str
status: str = "success"
# API Information
@app.get("/")
async def api_info():
"""API information endpoint"""
return {
"name": "Textilindo AI Training API",
"version": "1.0.0",
"description": "Pure API-based training system for Textilindo AI Assistant",
"hardware": "2 vCPU, 16 GB RAM (CPU basic)",
"status": "ready",
"endpoints": {
"training": {
"start": "POST /api/train/start",
"status": "GET /api/train/status",
"data": "GET /api/train/data",
"gpu": "GET /api/train/gpu",
"test": "POST /api/train/test"
},
"chat": {
"chat": "POST /chat",
"health": "GET /health"
}
}
}
# Health check
@app.get("/health")
async def health_check():
"""Health check endpoint"""
return {
"status": "healthy",
"timestamp": datetime.now().isoformat(),
"hardware": "2 vCPU, 16 GB RAM"
}
# Training API endpoints
@app.post("/api/train/start", response_model=TrainingResponse)
async def start_training(request: TrainingRequest, background_tasks: BackgroundTasks):
"""Start training process"""
global training_status
if training_status["is_training"]:
raise HTTPException(status_code=400, detail="Training already in progress")
# Validate inputs
if not Path(request.dataset_path).exists():
raise HTTPException(status_code=404, detail=f"Dataset not found: {request.dataset_path}")
if not Path(request.config_path).exists():
raise HTTPException(status_code=404, detail=f"Config not found: {request.config_path}")
# Start training in background
training_id = f"train_{datetime.now().strftime('%Y%m%d_%H%M%S')}"
background_tasks.add_task(
train_model_async,
request.model_name,
request.dataset_path,
request.config_path,
request.max_samples,
request.epochs,
request.batch_size,
request.learning_rate
)
return TrainingResponse(
success=True,
message="Training started successfully",
training_id=training_id,
status="started"
)
@app.get("/api/train/status")
async def get_training_status():
"""Get current training status"""
return training_status
@app.get("/api/train/data")
async def get_training_data_info():
"""Get information about available training data"""
data_dir = Path("data")
if not data_dir.exists():
return {"files": [], "count": 0}
jsonl_files = list(data_dir.glob("*.jsonl"))
files_info = []
for file in jsonl_files:
try:
with open(file, 'r', encoding='utf-8') as f:
lines = f.readlines()
files_info.append({
"name": file.name,
"size": file.stat().st_size,
"lines": len(lines)
})
except Exception as e:
files_info.append({
"name": file.name,
"error": str(e)
})
return {
"files": files_info,
"count": len(jsonl_files)
}
@app.get("/api/train/gpu")
async def get_gpu_info():
"""Get GPU information"""
try:
gpu_available = torch.cuda.is_available()
if gpu_available:
gpu_count = torch.cuda.device_count()
gpu_name = torch.cuda.get_device_name(0)
gpu_memory = torch.cuda.get_device_properties(0).total_memory / (1024**3)
return {
"available": True,
"count": gpu_count,
"name": gpu_name,
"memory_gb": round(gpu_memory, 2)
}
else:
return {"available": False}
except Exception as e:
return {"error": str(e)}
@app.post("/api/train/test")
async def test_trained_model():
"""Test the trained model"""
model_path = "./models/textilindo-trained"
if not Path(model_path).exists():
return {"error": "No trained model found"}
try:
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained(model_path)
model = AutoModelForCausalLM.from_pretrained(model_path)
# Test prompt
test_prompt = "Question: dimana lokasi textilindo? Answer:"
inputs = tokenizer(test_prompt, return_tensors="pt")
with torch.no_grad():
outputs = model.generate(
**inputs,
max_length=inputs.input_ids.shape[1] + 30,
temperature=0.7,
do_sample=True,
pad_token_id=tokenizer.eos_token_id
)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)
return {
"success": True,
"test_prompt": test_prompt,
"response": response,
"model_path": model_path
}
except Exception as e:
return {"error": str(e)}
# Chat API endpoint
@app.post("/chat", response_model=ChatResponse)
async def chat(request: ChatRequest):
"""Chat with the AI assistant"""
try:
# Simple mock response for now
mock_responses = {
"dimana lokasi textilindo": "Textilindo berkantor pusat di Jl. Raya Prancis No.39, Kosambi Tim., Kec. Kosambi, Kabupaten Tangerang, Banten 15213",
"jam berapa textilindo beroperasional": "Jam operasional Senin-Jumat 08:00-17:00, Sabtu 08:00-12:00.",
"berapa ketentuan pembelian": "Minimal order 1 roll per jenis kain",
"apa ada gratis ongkir": "Gratis ongkir untuk order minimal 5 roll.",
"apa bisa dikirimkan sample": "Hallo kak untuk sampel kita bisa kirimkan gratis ya kak π"
}
# Simple keyword matching
user_lower = request.message.lower()
response = "Halo! Saya adalah asisten AI Textilindo. Bagaimana saya bisa membantu Anda hari ini? π"
for key, mock_response in mock_responses.items():
if any(word in user_lower for word in key.split()):
response = mock_response
break
return ChatResponse(
response=response,
conversation_id=request.conversation_id or "default",
status="success"
)
except Exception as e:
logger.error(f"Chat error: {e}")
return ChatResponse(
response="Maaf, terjadi kesalahan. Silakan coba lagi.",
conversation_id=request.conversation_id or "default",
status="error"
)
# Training function
async def train_model_async(
model_name: str,
dataset_path: str,
config_path: str,
max_samples: int,
epochs: int,
batch_size: int,
learning_rate: float
):
"""Async training function"""
global training_status
try:
training_status.update({
"is_training": True,
"status": "starting",
"progress": 0,
"start_time": datetime.now().isoformat(),
"error": None
})
logger.info("π Starting training...")
# Import training libraries
from transformers import (
AutoTokenizer,
AutoModelForCausalLM,
TrainingArguments,
Trainer,
DataCollatorForLanguageModeling
)
from datasets import Dataset
# Check GPU
gpu_available = torch.cuda.is_available()
logger.info(f"GPU available: {gpu_available}")
# Load model and tokenizer
logger.info(f"π₯ Loading model: {model_name}")
tokenizer = AutoTokenizer.from_pretrained(model_name)
if tokenizer.pad_token is None:
tokenizer.pad_token = tokenizer.eos_token
# Load model
if gpu_available:
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.float16,
device_map="auto"
)
else:
model = AutoModelForCausalLM.from_pretrained(model_name)
logger.info("β
Model loaded successfully")
# Load training data
training_data = load_training_data(dataset_path, max_samples)
if not training_data:
raise Exception("No training data loaded")
# Convert to dataset
dataset = Dataset.from_list(training_data)
def tokenize_function(examples):
return tokenizer(
examples["text"],
truncation=True,
padding=True,
max_length=256,
return_tensors="pt"
)
tokenized_dataset = dataset.map(tokenize_function, batched=True)
# Training arguments
training_args = TrainingArguments(
output_dir="./models/textilindo-trained",
num_train_epochs=epochs,
per_device_train_batch_size=batch_size,
gradient_accumulation_steps=2,
learning_rate=learning_rate,
warmup_steps=5,
save_steps=10,
logging_steps=1,
save_total_limit=1,
prediction_loss_only=True,
remove_unused_columns=False,
fp16=gpu_available,
dataloader_pin_memory=gpu_available,
report_to=None,
)
# Data collator
data_collator = DataCollatorForLanguageModeling(
tokenizer=tokenizer,
mlm=False,
)
# Create trainer
trainer = Trainer(
model=model,
args=training_args,
train_dataset=tokenized_dataset,
data_collator=data_collator,
tokenizer=tokenizer,
)
# Start training
training_status["status"] = "training"
trainer.train()
# Save model
model.save_pretrained("./models/textilindo-trained")
tokenizer.save_pretrained("./models/textilindo-trained")
# Update status
training_status.update({
"is_training": False,
"status": "completed",
"progress": 100,
"end_time": datetime.now().isoformat()
})
logger.info("β
Training completed successfully!")
except Exception as e:
logger.error(f"Training failed: {e}")
training_status.update({
"is_training": False,
"status": "failed",
"error": str(e),
"end_time": datetime.now().isoformat()
})
def load_training_data(dataset_path: str, max_samples: int = 20) -> list:
"""Load training data from JSONL file"""
data = []
try:
with open(dataset_path, 'r', encoding='utf-8') as f:
for i, line in enumerate(f):
if i >= max_samples:
break
if line.strip():
item = json.loads(line)
# Create training text
instruction = item.get('instruction', '')
output = item.get('output', '')
text = f"Question: {instruction} Answer: {output}"
data.append({"text": text})
logger.info(f"Loaded {len(data)} training samples")
return data
except Exception as e:
logger.error(f"Error loading data: {e}")
return []
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)
|