Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/revert all method names for backwards compatibility #14

Merged
Prev Previous commit
Revert method, prop, attr names: .neural (#7)
  • Loading branch information
knakamura13 committed Sep 14, 2024
commit c441d7ce6c64527c1f6f54285507aa2a2d747b0e
7 changes: 5 additions & 2 deletions src/mlrose_ky/neural/__init__.py
Original file line number Diff line number Diff line change
@@ -3,10 +3,13 @@
# Authors: Genevieve Hayes (modified by Andrew Rollings, Kyle Nakamura)
# License: BSD 3-clause

from .activation import identity, relu, leaky_relu, sigmoid, softmax, tanh
from .fitness.network_weights import NetworkWeights
from .linear_regression import LinearRegression
from .logistic_regression import LogisticRegression
from .neural_network import NeuralNetwork
from .nn_classifier import NNClassifier

from .activation import identity, relu, leaky_relu, sigmoid, softmax, tanh

from .fitness.network_weights import NetworkWeights

from .utils import flatten_weights, unflatten_weights
Loading