Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add back warning a bout image_value_range
  • Loading branch information
Ludwig Schubert committed Apr 18, 2019
1 parent 6edbda6 commit 3503a5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lucid/modelzoo/vision_base.py
Expand Up @@ -258,7 +258,8 @@ def suggest_save_args(graph_def=None):
warnings.warn("Could not infer output_names.")

report = []
report.append("# Please sanity check all inferred values before using this code!")
report.append("# Please sanity check all inferred values before using this code.")
report.append("Incorrect `image_value_range` is the most common cause of feature visualization bugs! Most methods will fail silently with incorrect visualizations!")
report.append("Model.save(")

suggestions = {
Expand Down

0 comments on commit 3503a5b

Please sign in to comment.