You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Print the number of samples and features in the feature matrix
466
467
n_samples=feature_matrix.shape[0]
467
-
print(f"tunedAnomalyDetectionExplained: Tuned Anomaly Detection: Number of samples: {n_samples}, Number of features: {feature_matrix.shape[1]}, Number of trials: {number_of_trials}")
468
+
print(f"tunedAnomalyDetectionExplained: Tuning Anomaly Detection: Number of samples: {n_samples}, Number of features: {feature_matrix.shape[1]}, Number of trials: {number_of_trials}")
print(f"Best Isolation & Random Forest parameters for {parameters.get_plot_prefix()} after {len(study.trials)}/{number_of_trials} trials with best #{study.best_trial.number} (Optuna):", study.best_params)
print(f"Best Leiden Community Detection parameters for {parameters.get_projection_name()} (Optuna):", study.best_params)
365
+
print(f"Best Leiden Community Detection parameters for {parameters.get_projection_name()}after {len(study.trials)}/20 trials with best #{study.best_trial.number}(Optuna):", study.best_params)
print(f"Best Fast Random Projection (FastRP) parameters for {parameters.get_projection_name()} (Optuna):", study.best_params)
717
+
print(f"Best Fast Random Projection (FastRP) parameters for {parameters.get_projection_name()}after {len(study.trials)}/80 trials with best #{study.best_trial.number}(Optuna):", study.best_params)
716
718
ifparameters.is_verbose():
717
719
output_detailed_optuna_tuning_results(study, 'Fast Random Projection (FastRP)')
0 commit comments