File size: 13,730 Bytes
69f257e |
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 |
#!/usr/bin/env python3
"""
π Floorplan Segmentation Training on Hugging Face
Complete training script with proper logging and error handling
"""
import torch
import torch.nn as nn
import torch.optim as optim
from torch.utils.data import Dataset, DataLoader
import cv2
import numpy as np
from tqdm import tqdm
import os
import matplotlib.pyplot as plt
import time
import gc
from datetime import datetime
print("π Starting Floorplan Segmentation Training on Hugging Face...")
print(f"β° Started at: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
# ============================================================================
# 1. MODEL ARCHITECTURE
# ============================================================================
class UltraSimpleModel(nn.Module):
def __init__(self, n_channels=3, n_classes=5):
super().__init__()
self.encoder = nn.Sequential(
nn.Conv2d(n_channels, 32, 3, padding=1),
nn.ReLU(),
nn.Conv2d(32, 32, 3, padding=1),
nn.ReLU(),
nn.MaxPool2d(2),
nn.Conv2d(32, 64, 3, padding=1),
nn.ReLU(),
nn.Conv2d(64, 64, 3, padding=1),
nn.ReLU(),
nn.MaxPool2d(2),
nn.Conv2d(64, 128, 3, padding=1),
nn.ReLU(),
nn.Conv2d(128, 128, 3, padding=1),
nn.ReLU(),
nn.MaxPool2d(2),
)
self.decoder = nn.Sequential(
nn.ConvTranspose2d(128, 64, 2, stride=2),
nn.ReLU(),
nn.Conv2d(64, 64, 3, padding=1),
nn.ReLU(),
nn.ConvTranspose2d(64, 32, 2, stride=2),
nn.ReLU(),
nn.Conv2d(32, 32, 3, padding=1),
nn.ReLU(),
nn.ConvTranspose2d(32, 16, 2, stride=2),
nn.ReLU(),
nn.Conv2d(16, n_classes, 1),
)
def forward(self, x):
x = self.encoder(x)
x = self.decoder(x)
return x
# ============================================================================
# 2. DATASET CLASS
# ============================================================================
class SimpleDataset(Dataset):
def __init__(self, data_dir, image_size=224):
self.data_dir = data_dir
self.image_size = image_size
# Get image files
self.image_files = []
for file in os.listdir(data_dir):
if file.endswith('_image.png'):
mask_file = file.replace('_image.png', '_mask.png')
if os.path.exists(os.path.join(data_dir, mask_file)):
self.image_files.append(file)
print(f"π Found {len(self.image_files)} image-mask pairs in {data_dir}")
def __len__(self):
return len(self.image_files)
def __getitem__(self, idx):
# Load image
image_file = self.image_files[idx]
image_path = os.path.join(self.data_dir, image_file)
mask_path = os.path.join(self.data_dir, image_file.replace('_image.png', '_mask.png'))
# Load and preprocess
image = cv2.imread(image_path)
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
image = cv2.resize(image, (self.image_size, self.image_size))
mask = cv2.imread(mask_path, cv2.IMREAD_GRAYSCALE)
mask = cv2.resize(mask, (self.image_size, self.image_size))
# Convert to tensors
image = torch.from_numpy(image).float().permute(2, 0, 1) / 255.0
mask = torch.from_numpy(mask).long()
return image, mask
# ============================================================================
# 3. TRAINING SETUP
# ============================================================================
def setup_training():
"""Setup training environment"""
print("π§ Setting up training environment...")
# Clear GPU memory
torch.cuda.empty_cache()
gc.collect()
# Check device
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
print(f"β
Using device: {device}")
if torch.cuda.is_available():
print(f"β
GPU: {torch.cuda.get_device_name(0)}")
print(f"β
GPU Memory: {torch.cuda.get_device_properties(0).total_memory / 1e9:.1f} GB")
# Training parameters
BATCH_SIZE = 4
IMAGE_SIZE = 224
EPOCHS = 50
LEARNING_RATE = 1e-4
print(f"π Training Configuration:")
print(f" Batch size: {BATCH_SIZE}")
print(f" Image size: {IMAGE_SIZE}x{IMAGE_SIZE}")
print(f" Epochs: {EPOCHS}")
print(f" Learning rate: {LEARNING_RATE}")
return device, BATCH_SIZE, IMAGE_SIZE, EPOCHS, LEARNING_RATE
def create_data_loaders(BATCH_SIZE, IMAGE_SIZE):
"""Create training and validation data loaders"""
print("π Creating data loaders...")
# Check if data exists
if not os.path.exists('processed_data'):
print("β processed_data directory not found!")
print("π‘ Please upload processed_data.zip to this repository")
return None, None
# Create datasets
train_dataset = SimpleDataset('processed_data/train', image_size=IMAGE_SIZE)
val_dataset = SimpleDataset('processed_data/val', image_size=IMAGE_SIZE)
# Create loaders
train_loader = DataLoader(train_dataset, batch_size=BATCH_SIZE, shuffle=True, num_workers=2)
val_loader = DataLoader(val_dataset, batch_size=BATCH_SIZE, shuffle=False, num_workers=2)
print(f"β
Data loaders created!")
print(f" Training batches: {len(train_loader)}")
print(f" Validation batches: {len(val_loader)}")
return train_loader, val_loader
# ============================================================================
# 4. TRAINING LOOP
# ============================================================================
def train_model(model, train_loader, val_loader, device, EPOCHS, LEARNING_RATE):
"""Main training loop"""
print(f"\nπ― Starting training for {EPOCHS} epochs...")
# Setup training components
criterion = nn.CrossEntropyLoss()
optimizer = optim.Adam(model.parameters(), lr=LEARNING_RATE)
scheduler = optim.lr_scheduler.CosineAnnealingLR(optimizer, T_max=EPOCHS, eta_min=1e-6)
# Training history
history = {
'train_loss': [],
'val_loss': [],
'learning_rate': []
}
best_val_loss = float('inf')
start_time = time.time()
for epoch in range(EPOCHS):
epoch_start_time = time.time()
print(f"\nπ
Epoch {epoch+1}/{EPOCHS}")
# Training phase
model.train()
train_loss = 0.0
train_pbar = tqdm(train_loader, desc="Training")
for batch_idx, (images, masks) in enumerate(train_pbar):
images = images.to(device)
masks = masks.to(device)
# Forward pass
optimizer.zero_grad()
outputs = model(images)
loss = criterion(outputs, masks)
# Backward pass
loss.backward()
optimizer.step()
# Update metrics
train_loss += loss.item()
# Update progress bar
train_pbar.set_postfix({
'Loss': f'{loss.item():.4f}',
'GPU': f'{torch.cuda.memory_allocated()/1e9:.1f}GB'
})
# Clear cache periodically
if batch_idx % 100 == 0:
torch.cuda.empty_cache()
avg_train_loss = train_loss / len(train_loader)
# Validation phase
model.eval()
val_loss = 0.0
with torch.no_grad():
val_pbar = tqdm(val_loader, desc="Validation")
for batch_idx, (images, masks) in enumerate(val_pbar):
images = images.to(device)
masks = masks.to(device)
outputs = model(images)
loss = criterion(outputs, masks)
val_loss += loss.item()
val_pbar.set_postfix({
'Loss': f'{loss.item():.4f}'
})
avg_val_loss = val_loss / len(val_loader)
# Update learning rate
scheduler.step()
current_lr = optimizer.param_groups[0]['lr']
# Update history
history['train_loss'].append(avg_train_loss)
history['val_loss'].append(avg_val_loss)
history['learning_rate'].append(current_lr)
# Calculate epoch time
epoch_time = time.time() - epoch_start_time
# Print results
print(f"π Train Loss: {avg_train_loss:.4f}")
print(f" Val Loss: {avg_val_loss:.4f}")
print(f"π Learning Rate: {current_lr:.6f}")
print(f" GPU Memory: {torch.cuda.memory_allocated()/1e9:.2f} GB")
print(f"β±οΈ Epoch time: {epoch_time:.1f}s")
# Save best model
if avg_val_loss < best_val_loss:
best_val_loss = avg_val_loss
torch.save({
'epoch': epoch,
'model_state_dict': model.state_dict(),
'optimizer_state_dict': optimizer.state_dict(),
'scheduler_state_dict': scheduler.state_dict(),
'best_val_loss': best_val_loss,
'history': history,
'config': {
'model_type': 'ultra_simple',
'n_channels': 3,
'n_classes': 5,
'image_size': 224,
'batch_size': 4
}
}, 'best_model.pth')
print(f"β
New best model saved! Loss: {best_val_loss:.4f}")
# Save checkpoint every 10 epochs
if (epoch + 1) % 10 == 0:
torch.save({
'epoch': epoch,
'model_state_dict': model.state_dict(),
'optimizer_state_dict': optimizer.state_dict(),
'scheduler_state_dict': scheduler.state_dict(),
'best_val_loss': best_val_loss,
'history': history
}, f'checkpoint_epoch_{epoch+1}.pth')
print(f"πΎ Checkpoint saved: checkpoint_epoch_{epoch+1}.pth")
# Clear cache after each epoch
torch.cuda.empty_cache()
# Progress update
if (epoch + 1) % 5 == 0:
elapsed_time = time.time() - start_time
avg_epoch_time = elapsed_time / (epoch + 1)
remaining_epochs = EPOCHS - (epoch + 1)
estimated_time = remaining_epochs * avg_epoch_time
print(f"\nπ Progress Update:")
print(f" Epochs completed: {epoch+1}/{EPOCHS}")
print(f" Best validation loss: {best_val_loss:.4f}")
print(f" Average epoch time: {avg_epoch_time:.1f}s")
print(f" Estimated time remaining: {estimated_time/60:.1f} minutes")
# Training complete
total_time = time.time() - start_time
print(f"\nπ Training completed!")
print(f"β±οΈ Total time: {total_time/3600:.1f} hours")
print(f" Best validation loss: {best_val_loss:.4f}")
return history
# ============================================================================
# 5. VISUALIZATION
# ============================================================================
def plot_training_history(history):
"""Plot training history"""
if len(history['train_loss']) > 0:
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(15, 5))
# Plot losses
ax1.plot(history['train_loss'], label='Train Loss')
ax1.plot(history['val_loss'], label='Val Loss')
ax1.set_title('Training and Validation Loss')
ax1.set_xlabel('Epoch')
ax1.set_ylabel('Loss')
ax1.legend()
ax1.grid(True)
# Plot learning rate
ax2.plot(history['learning_rate'], label='Learning Rate')
ax2.set_title('Learning Rate Schedule')
ax2.set_xlabel('Epoch')
ax2.set_ylabel('Learning Rate')
ax2.legend()
ax2.grid(True)
plt.tight_layout()
plt.savefig('training_history.png', dpi=150, bbox_inches='tight')
print("π Training history plotted and saved as 'training_history.png'")
# ============================================================================
# 6. MAIN FUNCTION
# ============================================================================
def main():
"""Main training function"""
try:
# Setup
device, BATCH_SIZE, IMAGE_SIZE, EPOCHS, LEARNING_RATE = setup_training()
# Create data loaders
train_loader, val_loader = create_data_loaders(BATCH_SIZE, IMAGE_SIZE)
if train_loader is None:
return
# Create model
model = UltraSimpleModel(n_channels=3, n_classes=5).to(device)
print(f"β
Model created! Parameters: {sum(p.numel() for p in model.parameters()):,}")
# Train model
history = train_model(model, train_loader, val_loader, device, EPOCHS, LEARNING_RATE)
# Plot results
plot_training_history(history)
print("\nβ
Training completed successfully!")
print("πΎ Best model saved as 'best_model.pth'")
print("π Training history saved as 'training_history.png'")
except Exception as e:
print(f"β Training failed with error: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
main() |