Skip to content

Instantly share code, notes, and snippets.

@sgsg704
Created November 26, 2021 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgsg704/de258dd79e0095ba5148ded3c08f80e9 to your computer and use it in GitHub Desktop.
Save sgsg704/de258dd79e0095ba5148ded3c08f80e9 to your computer and use it in GitHub Desktop.
MLP = MLPRegressor(activation='relu', alpha=10, batch_size='auto', beta_1=0.9,
beta_2=0.999, early_stopping=False, epsilon=1e-08,
hidden_layer_sizes=(100,), learning_rate='constant',
learning_rate_init=0.001, max_iter=500, momentum=0.9,
nesterovs_momentum=True, power_t=0.5, random_state=None,
shuffle=True, solver='adam', tol=0.0001, validation_fraction=0.1,
verbose=False, warm_start=False)
# scores
model_score_error(MLP)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment