Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions JC2.py
Original file line number Diff line number Diff line change
Expand Up @@ -813,8 +813,9 @@ def joycaption2_simple(
model = self.previous_model

except Exception as e:
print(f"Error loading model: {e}")
return None
# print(f"Error loading model: {e}")
raise Exception(f"Error loading model: {e}")
# return None

print(f"Model loaded on {model_loaded_on}")

Expand Down