[11727] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using System.Threading.Tasks;
|
---|
[11730] | 6 | using HeuristicLab.Common;
|
---|
[11727] | 7 |
|
---|
| 8 | namespace HeuristicLab.Problems.GrammaticalOptimization {
|
---|
| 9 | public class SentenceSetStatistics {
|
---|
| 10 | public int NumberOfSentences { get; private set; }
|
---|
| 11 | public string BestSentence { get; private set; }
|
---|
| 12 | public string FirstSentence { get; private set; }
|
---|
| 13 | public string LastSentence { get; private set; }
|
---|
| 14 | public double BestSentenceQuality { get; private set; }
|
---|
[11730] | 15 | public double BestSentenceIndex { get; private set; }
|
---|
[11727] | 16 | public double FirstSentenceQuality { get; private set; }
|
---|
| 17 | public double LastSentenceQuality { get; private set; }
|
---|
| 18 | public double AverageQuality { get { return sumQualities / NumberOfSentences; } }
|
---|
| 19 | // public double MedianQuality { get; private set; }
|
---|
| 20 | private double sumQualities;
|
---|
| 21 |
|
---|
[11847] | 22 | private readonly double bestKnownQuality;
|
---|
| 23 | public SentenceSetStatistics(double bestKnownQuality = 1.0) {
|
---|
| 24 | this.bestKnownQuality = bestKnownQuality;
|
---|
[11865] | 25 | BestSentenceQuality = double.NegativeInfinity;
|
---|
| 26 | BestSentence = string.Empty;
|
---|
| 27 | FirstSentence = string.Empty;
|
---|
| 28 | LastSentence = string.Empty;
|
---|
[11847] | 29 | }
|
---|
| 30 |
|
---|
[11727] | 31 | public void AddSentence(string sentence, double quality) {
|
---|
[11730] | 32 | sumQualities += quality;
|
---|
| 33 | NumberOfSentences++;
|
---|
| 34 |
|
---|
| 35 | if (NumberOfSentences == 1) {
|
---|
[11727] | 36 | FirstSentence = sentence;
|
---|
| 37 | FirstSentenceQuality = quality;
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | if (quality > BestSentenceQuality) {
|
---|
| 41 | BestSentence = sentence;
|
---|
| 42 | BestSentenceQuality = quality;
|
---|
[11730] | 43 | BestSentenceIndex = NumberOfSentences;
|
---|
[11727] | 44 | }
|
---|
| 45 |
|
---|
| 46 | LastSentence = sentence;
|
---|
| 47 | LastSentenceQuality = quality;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | public override string ToString() {
|
---|
| 51 | return
|
---|
[12298] | 52 | string.Format("Sentences: {0,10} avg.-quality {1,7:F5} best {2,7:F5} {3,2} {4,10} {5,30} last {6,7:F5} {7,20}",
|
---|
[11727] | 53 | NumberOfSentences, AverageQuality,
|
---|
[11847] | 54 | BestSentenceQuality, DoubleExtensions.IsAlmost(BestSentenceQuality, bestKnownQuality) ? 1.0 : 0.0,
|
---|
[11846] | 55 | BestSentenceIndex, TrimToSize(BestSentence, 30),
|
---|
| 56 | LastSentenceQuality, TrimToSize(LastSentence, 20)
|
---|
[12298] | 57 | //LastSentenceQuality, TrimToSize(LastSentence, 20)
|
---|
[11727] | 58 | );
|
---|
| 59 | }
|
---|
[11846] | 60 |
|
---|
| 61 | private string TrimToSize(string s, int len) {
|
---|
| 62 | if (s.Length < len) return s;
|
---|
| 63 | else {
|
---|
| 64 | var sb = new StringBuilder(len);
|
---|
| 65 | sb.Append(s.Substring(0, len - 3));
|
---|
| 66 | sb.Append("...");
|
---|
| 67 | return sb.ToString();
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
[11727] | 70 | }
|
---|
| 71 | }
|
---|