[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;
|
---|
[12893] | 25 | Clear();
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | public void Clear() {
|
---|
[11865] | 29 | BestSentenceQuality = double.NegativeInfinity;
|
---|
| 30 | BestSentence = string.Empty;
|
---|
| 31 | FirstSentence = string.Empty;
|
---|
| 32 | LastSentence = string.Empty;
|
---|
[11847] | 33 | }
|
---|
| 34 |
|
---|
[11727] | 35 | public void AddSentence(string sentence, double quality) {
|
---|
[11730] | 36 | sumQualities += quality;
|
---|
| 37 | NumberOfSentences++;
|
---|
| 38 |
|
---|
| 39 | if (NumberOfSentences == 1) {
|
---|
[11727] | 40 | FirstSentence = sentence;
|
---|
| 41 | FirstSentenceQuality = quality;
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 | if (quality > BestSentenceQuality) {
|
---|
| 45 | BestSentence = sentence;
|
---|
| 46 | BestSentenceQuality = quality;
|
---|
[11730] | 47 | BestSentenceIndex = NumberOfSentences;
|
---|
[11727] | 48 | }
|
---|
| 49 |
|
---|
| 50 | LastSentence = sentence;
|
---|
| 51 | LastSentenceQuality = quality;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | public override string ToString() {
|
---|
| 55 | return
|
---|
[12298] | 56 | 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] | 57 | NumberOfSentences, AverageQuality,
|
---|
[11847] | 58 | BestSentenceQuality, DoubleExtensions.IsAlmost(BestSentenceQuality, bestKnownQuality) ? 1.0 : 0.0,
|
---|
[11846] | 59 | BestSentenceIndex, TrimToSize(BestSentence, 30),
|
---|
| 60 | LastSentenceQuality, TrimToSize(LastSentence, 20)
|
---|
[12893] | 61 | //LastSentenceQuality, TrimToSize(LastSentence, 20)
|
---|
[11727] | 62 | );
|
---|
| 63 | }
|
---|
[11846] | 64 |
|
---|
| 65 | private string TrimToSize(string s, int len) {
|
---|
| 66 | if (s.Length < len) return s;
|
---|
| 67 | else {
|
---|
| 68 | var sb = new StringBuilder(len);
|
---|
| 69 | sb.Append(s.Substring(0, len - 3));
|
---|
| 70 | sb.Append("...");
|
---|
| 71 | return sb.ToString();
|
---|
| 72 | }
|
---|
| 73 | }
|
---|
[11727] | 74 | }
|
---|
| 75 | }
|
---|