Skip to content

Commit

Permalink
Fix version number in plots
Browse files Browse the repository at this point in the history
  • Loading branch information
pemistahl committed Oct 15, 2020
1 parent f8ad855 commit d6f05a8
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 3 deletions.
Binary file modified images/plots/barplot-average.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-sentences.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-single-words.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/barplot-word-pairs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-average.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-sentences.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-single-words.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/plots/boxplot-word-pairs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 2 additions & 3 deletions src/python-scripts/draw_accuracy_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from math import floor

import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
import seaborn as sns
from math import floor
from matplotlib.patches import Patch

matplotlib.use('TkAgg')
Expand All @@ -39,7 +38,7 @@ class AccuracyPlotDrawer(object):
__plot_title_suffix = 'Detection Performance'
__column_prefixes = ('single-words', 'word-pairs', 'sentences', 'average')
__column_suffixes = ('optimaize', 'opennlp', 'tika', 'lingua')
__legend_labels = ('Optimaize 0.6', 'OpenNLP 1.9.3', 'Tika 1.24.1', 'Lingua 1.0.2')
__legend_labels = ('Optimaize 0.6', 'OpenNLP 1.9.3', 'Tika 1.24.1', 'Lingua 1.0.3')
__hatches = ('/', '+', '.', 'O')
__palette = ('#b259ff', '#ff6347', '#ffc400', '#41c46b')
__ticks = np.arange(0, 101, 10)
Expand Down

0 comments on commit d6f05a8

Please sign in to comment.