-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
Description: PyDeepFlow currently has monolithic model classes. Modern frameworks use modular layer architecture where each layer is an independent, composable unit. This enables flexible model building and easier debugging.
Current Problem:
# Current - rigid, monolithic structure
model = Multi_Layer_ANN(X_train, y_train, [128, 64], ['relu', 'sigmoid'])
# Can't inspect individual layers, can't reuse layers