develop #4

Merged
Fabel merged 103 commits from develop into main 2025-03-01 21:47:17 +00:00
1 changed files with 2 additions and 0 deletions
Showing only changes of commit 9187ebe012 - Show all commits

View File

@ -274,6 +274,8 @@ class FineTuner:
# Forward pass (we'll use the model's existing architecture without adding layers)
try:
features = self.model(low_ress)
print("Features shape:", features.shape) # Check output dimensions
print("High-res shape:", high_ress.shape) # Check target dimensions
except Exception as e:
raise RuntimeError(f"Error during forward pass: {str(e)}")