Skip to content
Snippets Groups Projects
Commit c055faa6 authored by Nikolai's avatar Nikolai
Browse files

fix transformation function in plot_NN_2D for all neurons mode

parent 45f0ff96
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ if args.mode.startswith("mean"): ...@@ -129,7 +129,7 @@ if args.mode.startswith("mean"):
if hasattr(c, "get_input_list"): if hasattr(c, "get_input_list"):
transform_function = lambda inp : c.get_input_list(c.scaler.transform(inp)) transform_function = lambda inp : c.get_input_list(c.scaler.transform(inp))
else: else:
transform_function = c.scaler.transform(inp) transform_function = c.scaler.transform
plot_NN_vs_var_2D_all( plot_NN_vs_var_2D_all(
args.output_filename, args.output_filename,
means=means, means=means,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment