Skip to content

Commit

Permalink
Fixed a bug which prevented the GUI from closing
Browse files Browse the repository at this point in the history
  • Loading branch information
Callidior committed Jul 30, 2016
1 parent 7d13a8f commit 78f5884
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ARTOS Changelog
===============

Version 2.0-rc1 (2016-03-12)
----------------------------
Version 2.0 (2016-03-12)
------------------------

- **[Feature]** Model Evaluation API for libartos and PyARTOS, including GUI support for evaluating models and plotting recall-precision graphs.
- **[Feature]** ARTOS now ships with `CaffeFeatureExtractor` which uses the *Caffe* library to extract image features from the layer of a CNN
Expand Down
2 changes: 2 additions & 0 deletions PyARTOS/GUI/Evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
except:
import Image, ImageTk
try:
import matplotlib
matplotlib.use('Agg')
from matplotlib import pyplot
HAS_MATPLOTLIB = True
except:
Expand Down

0 comments on commit 78f5884

Please sign in to comment.