diff --git a/Examples/CLI/Monitor/CompactCliTaskMonitor.cs b/Examples/CLI/Monitor/CompactCliTaskMonitor.cs index 30b730a..3c79a3e 100644 --- a/Examples/CLI/Monitor/CompactCliTaskMonitor.cs +++ b/Examples/CLI/Monitor/CompactCliTaskMonitor.cs @@ -32,7 +32,7 @@ public class CompactCliTaskMonitor : TaskMonitor sb.Append(task.Exception is not null ? 'X' : StatusMap[status].First()); } - sb.AppendLine($" ({completed}/{total - 1})"); + sb.AppendLine($" ({completed}/{total})"); Console.Clear(); Console.Write(sb.ToString()); diff --git a/Examples/CLI/Program.cs b/Examples/CLI/Program.cs index 92f23b8..1d7da95 100644 --- a/Examples/CLI/Program.cs +++ b/Examples/CLI/Program.cs @@ -26,12 +26,12 @@ public class Program [SuppressMessage("ReSharper", "ArrangeObjectCreationWhenTypeNotEvident")] private static IEnumerable MakeThresholdVariations() { - for (int i = 0; i <= 24; i += 2) + for (int i = 4; i <= 24; i += 4) { yield return new(new ThresholdAdaptiveProcessor(i)); } - for (int i = 0; i <= 100; i += 10) + for (int i = 20; i <= 80; i += 10) { yield return new(new ThresholdProcessor(i)); } diff --git a/Examples/Common/Extensions/EnumerableExtensions.cs b/Examples/Common/Extensions/EnumerableExtensions.cs new file mode 100644 index 0000000..901ce8e --- /dev/null +++ b/Examples/Common/Extensions/EnumerableExtensions.cs @@ -0,0 +1,16 @@ +namespace Common.Extensions; + +public static class EnumerableExtensions +{ + public static double Median(this IEnumerable values) + { + var tValues = values.ToArray(); + return tValues + .OrderBy(x => x) + .Skip(tValues.Length / 2) + .First(); + } + + public static double Median(this IEnumerable items, Func selector) => + items.Select(selector).Median(); +} diff --git a/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs b/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs index a848d7a..d6e1b51 100644 --- a/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs +++ b/Examples/ReportGenerator/Generator/Generator/HtmlDocumentGenerator.cs @@ -40,6 +40,6 @@ public class HtmlDocumentGenerator : DocumentGeneratorBase private static string GetStyle() => HtmlTools.Wrap("style", - "html,body{width:100%;height:100%;overflow:scroll;} td,th{border:1px solid #777;padding:.5rem;text-align:center}table{border-collapse:collapse}tbody tr:nth-child(odd){background:#eee}caption{font-size:.8rem}" + "td,th{border:1px solid #777;padding:.5rem;text-align:center}table{border-collapse:collapse}tbody tr:nth-child(odd){background:#eee}caption{font-size:.8rem}" ); } diff --git a/Examples/ReportGenerator/Program.cs b/Examples/ReportGenerator/Program.cs index cf4c492..34bafc0 100644 --- a/Examples/ReportGenerator/Program.cs +++ b/Examples/ReportGenerator/Program.cs @@ -18,10 +18,11 @@ internal static class Program Console.WriteLine("Generating report"); var scans = Scan(tagFileInfos, scanFileInfos); - new ReportGenerator(scans, new HtmlDocumentGenerator()) - .WithTitle("OCR Report") - .WithBestOf("Best of") - .WithFullStatistic("Statistic") + new ReportGenerator("OCR Report", new HtmlDocumentGenerator(), scans) + .AddComparison("Processing summary (Average)", v => v.Average()) + // .AddComparison("Processing summary (Median)", v => v.Median()) + .AddImageStats("Image summary") + .AddImageStatsFull("Scan Results") .ToFile("report"); Console.WriteLine("Completed"); diff --git a/Examples/ReportGenerator/ReportGenerator.cs b/Examples/ReportGenerator/ReportGenerator.cs index 0edcdae..447b6c8 100644 --- a/Examples/ReportGenerator/ReportGenerator.cs +++ b/Examples/ReportGenerator/ReportGenerator.cs @@ -1,4 +1,6 @@ -using ReportGenerator.Generator.Abstract; +using Common.Extensions; +using ReportGenerator.Generator; +using ReportGenerator.Generator.Abstract; using ReportGenerator.Generator.Interface; using ReportGenerator.Generator.Model; using ReportGenerator.Models; @@ -7,19 +9,35 @@ namespace ReportGenerator; public class ReportGenerator : FileSerializableBase { + /// + public override string FileExtension => Document.FileExtension; + private IDocumentGenerator Document { get; } + private ICollection Images { get; } - public ReportGenerator(IEnumerable stats, IDocumentGenerator document) + public ReportGenerator( + IDocumentGenerator document, + IEnumerable data + ) { - Images = stats.ToArray(); Document = document; + Images = data.ToArray(); + } + + public ReportGenerator( + string title, + IDocumentGenerator document, + IEnumerable data + ) : this(document, data) + { + WithTitle(title); } /// public override string ToString() => Document.ToString(); - #region Fluent definition + #region Report content generation public ReportGenerator WithTitle(string text) { @@ -27,7 +45,7 @@ public class ReportGenerator : FileSerializableBase return this; } - public ReportGenerator WithFullStatistic(string title) + public ReportGenerator AddImageStatsFull(string title) { Document.AppendHeading(2, title); @@ -77,73 +95,125 @@ public class ReportGenerator : FileSerializableBase return this; } - - public ReportGenerator WithBestOf(string title, int context = 5) + public ReportGenerator AddImageStats(string title) { Document.AppendHeading(2, title); + foreach (var image in Images) + { + Document + .AppendHeading(3, image.ImageName) + .AppendLine(HtmlTools.FormatImage( + Path.Combine("img", image.ImageName), + new Bounds(0, 300) + )); + + var byWer = image + .Processors + .Select(p => (p.Name, p.Distance)) + .OrderBy(t => t.Item2); + Document.AppendHeading(4, "WER"); + AppendComparison(("Error", "%"), byWer); + + var byCerAvg = image + .Processors + .Select(p => (p.Name, p.Words.Average(w => w.Distance))) + .OrderBy(t => t.Item2); + Document.AppendHeading(4, "CER (Average)"); + AppendComparison(("Changes", string.Empty), byCerAvg); + + var byCerMedian = image + .Processors + .Select(p => (p.Name, p.Words.Median(w => w.Distance))) + .OrderBy(t => t.Item2); + Document.AppendHeading(4, "CER (Median)"); + AppendComparison(("Changes", string.Empty), byCerMedian); + + var byTime = image + .Processors + .Select(p => (p.Name, p.ProcessingTime)) + .OrderBy(t => t.Item2); + Document.AppendHeading(4, "Time"); + AppendComparison(("Time", "ms"), byTime); + } + + return this; + + } + + + public ReportGenerator AddComparison( + string title, + Func, double> evaluationFunc + ) + { var lookup = Images .SelectMany(s => s.Processors) .ToLookup(p => p.Name); - // Compare time across all images - var byTime = lookup - .Select(g => (Name: g.Key, Value: g.Average(p => p.ProcessingTime) * 1000)) - .OrderBy(g => g.Value); + Document.AppendHeading(2, title); - // Compare WER across all images var byWer = lookup - .Select(g => (Name: g.Key, Value: g.Average(p => p.Distance) * 100)) + .Select(g => ( + Name: g.Key, + Value: evaluationFunc(g.Select(p => p.Distance)) * 100 + )) .OrderBy(g => g.Value); + Document.AppendHeading(3, "WER"); + AppendComparison(("Error", "%"), byWer); - // Compare CER across all images var byCer = lookup - .Select(g => (Name: g.Key, Value: g.Average(p => p.Words.Average(w => w.Distance)))) + .Select(g => ( + Name: g.Key, + Value: evaluationFunc(g.SelectMany(p => p.Words, (_, word) => word.Distance)) + )) .OrderBy(g => g.Value); + Document.AppendHeading(3, "CER"); + AppendComparison(("Changes", string.Empty), byCer); - // Print - AppendComparison(3, "Time", byTime, " ms"); - AppendComparison(3, "WER", byWer, " %"); - AppendComparison(3, "CER", byCer, " changes"); + var byTime = lookup + .Select(g => ( + Name: g.Key, + Value: evaluationFunc(g.Select(p => p.ProcessingTime)) * 1000 + )) + .OrderBy(g => g.Value); + Document.AppendHeading(3, "Time"); + AppendComparison(("Time", "ms"), byTime); return this; + } - void AppendComparison( - int level, - string title, - IEnumerable<(string, double)> values, - string valueUnit = "" - ) + + private void AppendComparison( + (string name, string unit)? valueInfo, + IEnumerable<(string, double)> values + ) + { + const int context = 5; + + var tValues = values.ToArray(); + var tContext = Math.Min(tValues.Length / 2, context); + + Document.AppendTable(2, table => { - var tValues = values.ToArray(); - var tContext = Math.Min(tValues.Length / 2, context); - - Document - .AppendHeading(level, title) - .AppendTable(2, table => table - .AppendHeader(new[] { "Processor", "Average" }) - .AppendRows(tValues - .Take(tContext).Select(v => new[] - { - v.Item1, - v.Item2.ToString("F2") + valueUnit - })) - .AppendRow("...") - .AppendRows(tValues.TakeLast(tContext).Select(v => new[] - { - v.Item1, - v.Item2.ToString("F2") + valueUnit - })) + table + .AppendHeader(new[] { "Processor", valueInfo?.name ?? "Value" }) + .AppendRows(tValues + .Take(tContext) + .Select(MakeRow)) + .AppendRow("...") + .AppendRows( + tValues + .TakeLast(tContext) + .Select(MakeRow) ); - } + + return; + + string[] MakeRow((string, double) v) => + new[] { v.Item1, v.Item2.ToString("F2") + valueInfo?.unit }; + }); } #endregion - - #region Overrides of FileSerializableBase - - /// - public override string FileExtension => Document.FileExtension; - - #endregion } diff --git a/Examples/testdata/report.html b/Examples/testdata/report.html index 0a101b1..2bc5384 100644 --- a/Examples/testdata/report.html +++ b/Examples/testdata/report.html @@ -1,142 +1,1502 @@ -

OCR Report

-

Best of

-

Time

-
ProcessorAverage -
ThresholdAdaptiveProcessor(08_08)0,40 ms -
ThresholdAdaptiveProcessor(10_10)0,42 ms -
ThresholdAdaptiveProcessor(16_16)0,45 ms -
ThresholdAdaptiveProcessor(14_14)0,47 ms -
ThresholdAdaptiveProcessor(12_12)0,48 ms -
...... -
ThresholdAdaptiveProcessor(24_24)1,42 ms -
ThresholdProcessor(40%)1,44 ms -
ThresholdProcessor(80%)1,59 ms -
ThresholdProcessor(100%)2,79 ms -
ThresholdProcessor(50%)46,05 ms -
+

OCR Report

+

Processing summary (Average)

WER

-
ProcessorAverage -
ThresholdProcessor(40%)46,27 % -
ThresholdProcessor(30%)47,08 % -
AutoThresholdProcessor(OTSU)48,99 % -
ThresholdProcessor(50%)50,19 % -
ThresholdProcessor(70%)50,19 % +
ProcessorError +
ThresholdProcessor(40%)46,27% +
ThresholdProcessor(30%)47,08% +
AutoThresholdProcessor(OTSU)48,99% +
ThresholdProcessor(50%)50,19% +
ThresholdProcessor(70%)50,19%
...... -
ThresholdProcessor(0%)92,25 % -
ThresholdAdaptiveProcessor(04_04)94,55 % -
ThresholdAdaptiveProcessor(02_02)98,80 % -
ThresholdAdaptiveProcessor(00_00)99,50 % -
ThresholdProcessor(100%)100,00 % +
ThresholdAdaptiveProcessor(12_12)70,85% +
ThresholdAdaptiveProcessor(16_16)71,55% +
ThresholdAdaptiveProcessor(08_08)73,94% +
AutoThresholdProcessor(Triangle)91,47% +
ThresholdAdaptiveProcessor(04_04)94,55%

CER

-
ProcessorAverage -
ThresholdProcessor(40%)1,45 changes -
ThresholdProcessor(30%)1,69 changes -
ThresholdProcessor(50%)1,77 changes -
ThresholdProcessor(70%)1,94 changes -
AutoThresholdProcessor(OTSU)1,97 changes +
ProcessorChanges +
ThresholdProcessor(40%)1,53 +
ThresholdProcessor(30%)1,73 +
ThresholdProcessor(50%)1,90 +
ThresholdProcessor(70%)2,11 +
AutoThresholdProcessor(OTSU)2,12
...... -
ThresholdProcessor(0%)4,97 changes -
AutoThresholdProcessor(Triangle)4,97 changes -
ThresholdAdaptiveProcessor(02_02)5,47 changes -
ThresholdAdaptiveProcessor(00_00)5,87 changes -
ThresholdProcessor(100%)6,02 changes +
ThresholdAdaptiveProcessor(24_24)2,98 +
ThresholdAdaptiveProcessor(08_08)3,10 +
ThresholdAdaptiveProcessor(16_16)3,20 +
ThresholdAdaptiveProcessor(04_04)4,54 +
AutoThresholdProcessor(Triangle)4,69
-

Statistic

+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,49ms +
ThresholdAdaptiveProcessor(16_16)0,54ms +
ThresholdAdaptiveProcessor(12_12)0,60ms +
ThresholdAdaptiveProcessor(08_08)0,65ms +
ThresholdProcessor(50%)0,79ms +
...... +
AutoThresholdProcessor(Triangle)0,93ms +
AutoThresholdProcessor(Kapur)1,02ms +
AutoThresholdProcessor(OTSU)1,16ms +
ThresholdAdaptiveProcessor(04_04)1,40ms +
ThresholdProcessor(30%)1,40ms +
+

Image summary

+

command-processing_screentypes_controlgroup_005

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(OTSU)0,00% +
ThresholdProcessor(30%)0,00% +
ThresholdProcessor(40%)0,00% +
ThresholdProcessor(50%)0,00% +
ThresholdProcessor(60%)0,00% +
...... +
ThresholdAdaptiveProcessor(16_16)0,67% +
ThresholdAdaptiveProcessor(12_12)0,78% +
ThresholdAdaptiveProcessor(04_04)0,89% +
AutoThresholdProcessor(Triangle)1,00% +
ThresholdAdaptiveProcessor(08_08)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
ThresholdProcessor(60%)0,00 +
...... +
ThresholdAdaptiveProcessor(16_16)2,00 +
ThresholdAdaptiveProcessor(04_04)2,78 +
ThresholdAdaptiveProcessor(12_12)3,00 +
AutoThresholdProcessor(Triangle)5,89 +
ThresholdAdaptiveProcessor(08_08)5,89 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(24_24)0,00 +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
...... +
ThresholdAdaptiveProcessor(16_16)2,00 +
ThresholdAdaptiveProcessor(20_20)2,00 +
ThresholdAdaptiveProcessor(12_12)3,00 +
AutoThresholdProcessor(Triangle)5,00 +
ThresholdAdaptiveProcessor(08_08)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdAdaptiveProcessor(20_20)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdProcessor(20%)0,00ms +
...... +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
ThresholdProcessor(50%)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
+

driver_archdrv_variablendefinition_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(30%)0,22% +
ThresholdProcessor(40%)0,22% +
ThresholdProcessor(50%)0,22% +
AutoThresholdProcessor(OTSU)0,28% +
ThresholdProcessor(60%)0,28% +
...... +
ThresholdAdaptiveProcessor(20_20)0,67% +
ThresholdAdaptiveProcessor(08_08)0,72% +
AutoThresholdProcessor(Kapur)1,00% +
ThresholdAdaptiveProcessor(04_04)1,00% +
ThresholdAdaptiveProcessor(12_12)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdAdaptiveProcessor(16_16)1,00 +
ThresholdAdaptiveProcessor(24_24)1,00 +
AutoThresholdProcessor(OTSU)1,28 +
ThresholdProcessor(30%)1,28 +
ThresholdProcessor(40%)1,28 +
...... +
ThresholdProcessor(80%)3,39 +
ThresholdAdaptiveProcessor(08_08)4,17 +
ThresholdAdaptiveProcessor(12_12)5,78 +
AutoThresholdProcessor(Kapur)6,61 +
ThresholdAdaptiveProcessor(04_04)7,50 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(24_24)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
...... +
ThresholdAdaptiveProcessor(08_08)3,00 +
ThresholdProcessor(80%)3,00 +
AutoThresholdProcessor(Kapur)5,00 +
ThresholdAdaptiveProcessor(12_12)5,00 +
ThresholdAdaptiveProcessor(04_04)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdAdaptiveProcessor(24_24)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(20_20)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
ThresholdProcessor(30%)0,01ms +
+

driver_BQLSX00_connections_002

+ +

WER

+
ProcessorError +
ThresholdProcessor(20%)0,70% +
ThresholdProcessor(40%)0,70% +
ThresholdProcessor(30%)0,74% +
ThresholdProcessor(50%)0,85% +
AutoThresholdProcessor(Kapur)0,96% +
...... +
ThresholdAdaptiveProcessor(08_08)1,00% +
ThresholdAdaptiveProcessor(12_12)1,00% +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(60%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(20%)3,37 +
ThresholdProcessor(30%)3,56 +
ThresholdProcessor(40%)3,70 +
ThresholdProcessor(50%)4,93 +
AutoThresholdProcessor(Kapur)6,11 +
...... +
ThresholdAdaptiveProcessor(04_04)7,67 +
ThresholdAdaptiveProcessor(08_08)7,67 +
ThresholdAdaptiveProcessor(16_16)7,67 +
ThresholdAdaptiveProcessor(24_24)7,67 +
ThresholdProcessor(60%)7,67 +
+

CER (Median)

+
ProcessorChanges +
ThresholdProcessor(20%)2,00 +
ThresholdProcessor(30%)2,00 +
ThresholdProcessor(40%)3,00 +
ThresholdProcessor(50%)4,00 +
AutoThresholdProcessor(Kapur)5,00 +
...... +
ThresholdAdaptiveProcessor(08_08)6,00 +
ThresholdAdaptiveProcessor(16_16)6,00 +
ThresholdAdaptiveProcessor(24_24)6,00 +
ThresholdProcessor(60%)6,00 +
ThresholdProcessor(70%)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(20_20)0,00ms +
...... +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdProcessor(80%)0,00ms +
AutoThresholdProcessor(Triangle)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
ThresholdProcessor(50%)0,00ms +
+

driver_brpvi_offlineimport_004

+ +

WER

+
ProcessorError +
ThresholdProcessor(50%)0,23% +
ThresholdProcessor(60%)0,31% +
ThresholdProcessor(40%)0,38% +
ThresholdProcessor(70%)0,38% +
AutoThresholdProcessor(OTSU)0,46% +
...... +
ThresholdAdaptiveProcessor(20_20)0,92% +
AutoThresholdProcessor(Triangle)1,00% +
ThresholdAdaptiveProcessor(04_04)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(20%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(50%)0,92 +
ThresholdProcessor(40%)1,15 +
AutoThresholdProcessor(OTSU)1,31 +
ThresholdProcessor(60%)1,38 +
ThresholdProcessor(30%)1,62 +
...... +
ThresholdAdaptiveProcessor(20_20)4,08 +
ThresholdAdaptiveProcessor(04_04)4,38 +
ThresholdAdaptiveProcessor(08_08)4,54 +
ThresholdAdaptiveProcessor(24_24)5,54 +
AutoThresholdProcessor(Triangle)6,00 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
...... +
ThresholdProcessor(20%)3,00 +
ThresholdProcessor(80%)3,00 +
AutoThresholdProcessor(Triangle)4,00 +
ThresholdAdaptiveProcessor(08_08)4,00 +
ThresholdAdaptiveProcessor(24_24)4,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(20_20)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(30%)0,00ms +
ThresholdProcessor(40%)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdProcessor(80%)0,00ms +
+

driver_SEL_Options_002

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(OTSU)0,22% +
ThresholdAdaptiveProcessor(12_12)0,22% +
ThresholdAdaptiveProcessor(16_16)0,22% +
ThresholdProcessor(60%)0,22% +
ThresholdProcessor(70%)0,22% +
...... +
ThresholdProcessor(40%)0,33% +
ThresholdProcessor(50%)0,33% +
ThresholdAdaptiveProcessor(04_04)0,89% +
AutoThresholdProcessor(Triangle)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,56 +
AutoThresholdProcessor(OTSU)0,56 +
ThresholdAdaptiveProcessor(08_08)0,56 +
ThresholdAdaptiveProcessor(12_12)0,56 +
ThresholdAdaptiveProcessor(16_16)0,56 +
...... +
ThresholdProcessor(70%)0,56 +
ThresholdProcessor(80%)0,56 +
ThresholdAdaptiveProcessor(04_04)2,89 +
AutoThresholdProcessor(Triangle)4,22 +
ThresholdAdaptiveProcessor(24_24)4,22 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(08_08)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
...... +
ThresholdProcessor(70%)0,00 +
ThresholdProcessor(80%)0,00 +
AutoThresholdProcessor(Triangle)3,00 +
ThresholdAdaptiveProcessor(04_04)3,00 +
ThresholdAdaptiveProcessor(24_24)3,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(20_20)0,00ms +
ThresholdProcessor(60%)0,00ms +
...... +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(20%)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

driver_simotion_online_import_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(50%)0,26% +
ThresholdAdaptiveProcessor(20_20)0,32% +
ThresholdProcessor(60%)0,32% +
ThresholdProcessor(80%)0,32% +
AutoThresholdProcessor(OTSU)0,37% +
...... +
ThresholdProcessor(30%)0,63% +
ThresholdAdaptiveProcessor(16_16)0,84% +
AutoThresholdProcessor(Triangle)0,89% +
ThresholdAdaptiveProcessor(04_04)0,95% +
ThresholdProcessor(20%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(70%)0,42 +
AutoThresholdProcessor(OTSU)0,58 +
ThresholdProcessor(50%)0,58 +
ThresholdProcessor(60%)0,63 +
ThresholdProcessor(80%)0,63 +
...... +
ThresholdAdaptiveProcessor(24_24)1,84 +
ThresholdAdaptiveProcessor(16_16)3,74 +
AutoThresholdProcessor(Triangle)3,79 +
ThresholdAdaptiveProcessor(04_04)4,58 +
ThresholdProcessor(20%)5,63 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
...... +
ThresholdProcessor(30%)2,00 +
AutoThresholdProcessor(Triangle)3,00 +
ThresholdAdaptiveProcessor(16_16)3,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
ThresholdProcessor(20%)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(80%)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdProcessor(20%)0,00ms +
ThresholdProcessor(30%)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

editor_multimonitor_example_007

+ +

WER

+
ProcessorError +
ThresholdProcessor(70%)0,28% +
ThresholdProcessor(80%)0,31% +
AutoThresholdProcessor(OTSU)0,34% +
ThresholdProcessor(60%)0,38% +
ThresholdProcessor(40%)0,41% +
...... +
ThresholdAdaptiveProcessor(16_16)0,79% +
ThresholdAdaptiveProcessor(20_20)0,83% +
AutoThresholdProcessor(Kapur)1,00% +
ThresholdAdaptiveProcessor(04_04)1,00% +
ThresholdProcessor(20%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(70%)0,52 +
AutoThresholdProcessor(OTSU)0,62 +
ThresholdProcessor(80%)0,62 +
ThresholdProcessor(60%)0,69 +
ThresholdProcessor(40%)1,17 +
...... +
ThresholdAdaptiveProcessor(16_16)2,86 +
ThresholdAdaptiveProcessor(20_20)2,90 +
ThresholdAdaptiveProcessor(04_04)3,97 +
AutoThresholdProcessor(Kapur)4,48 +
ThresholdProcessor(20%)4,83 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(60%)0,00 +
ThresholdProcessor(70%)0,00 +
ThresholdProcessor(80%)0,00 +
...... +
ThresholdAdaptiveProcessor(16_16)3,00 +
ThresholdAdaptiveProcessor(20_20)3,00 +
AutoThresholdProcessor(Kapur)4,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
ThresholdProcessor(20%)4,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(30%)0,00ms +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(80%)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

editor_startpage_project-exist_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(40%)0,13% +
AutoThresholdProcessor(OTSU)0,16% +
ThresholdProcessor(30%)0,20% +
ThresholdProcessor(50%)0,20% +
AutoThresholdProcessor(Kapur)0,21% +
...... +
ThresholdProcessor(70%)0,46% +
ThresholdAdaptiveProcessor(08_08)0,62% +
AutoThresholdProcessor(Triangle)0,80% +
ThresholdProcessor(80%)0,82% +
ThresholdAdaptiveProcessor(04_04)0,88% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,17 +
ThresholdProcessor(40%)0,18 +
ThresholdProcessor(50%)0,22 +
ThresholdProcessor(30%)0,26 +
AutoThresholdProcessor(Kapur)0,28 +
...... +
ThresholdProcessor(20%)0,86 +
ThresholdAdaptiveProcessor(08_08)1,64 +
ThresholdProcessor(80%)2,82 +
AutoThresholdProcessor(Triangle)3,13 +
ThresholdAdaptiveProcessor(04_04)3,14 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
...... +
ThresholdProcessor(70%)0,00 +
ThresholdAdaptiveProcessor(08_08)1,00 +
ThresholdProcessor(80%)2,00 +
AutoThresholdProcessor(Triangle)3,00 +
ThresholdAdaptiveProcessor(04_04)3,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

editor_windows_position_006

+ +

WER

+
ProcessorError +
ThresholdProcessor(20%)0,56% +
ThresholdProcessor(30%)0,58% +
AutoThresholdProcessor(Kapur)0,60% +
ThresholdProcessor(40%)0,62% +
ThresholdAdaptiveProcessor(20_20)0,76% +
...... +
ThresholdAdaptiveProcessor(04_04)0,99% +
ThresholdAdaptiveProcessor(08_08)0,99% +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(80%)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)1,31 +
ThresholdProcessor(30%)1,38 +
ThresholdProcessor(20%)1,64 +
ThresholdProcessor(40%)1,76 +
ThresholdAdaptiveProcessor(20_20)2,82 +
...... +
AutoThresholdProcessor(Triangle)4,29 +
ThresholdAdaptiveProcessor(24_24)4,36 +
ThresholdAdaptiveProcessor(16_16)4,39 +
ThresholdAdaptiveProcessor(04_04)4,89 +
ThresholdProcessor(80%)5,71 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdAdaptiveProcessor(20_20)3,00 +
...... +
ThresholdProcessor(50%)4,00 +
ThresholdProcessor(60%)4,00 +
ThresholdProcessor(70%)4,00 +
ThresholdAdaptiveProcessor(04_04)5,00 +
ThresholdProcessor(80%)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

etm_gantt_runtime_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(50%)0,82% +
ThresholdProcessor(30%)0,88% +
AutoThresholdProcessor(Kapur)0,91% +
ThresholdProcessor(20%)0,91% +
ThresholdProcessor(70%)0,94% +
...... +
ThresholdAdaptiveProcessor(12_12)1,00% +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdAdaptiveProcessor(20_20)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(60%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)2,45 +
ThresholdProcessor(20%)2,48 +
ThresholdProcessor(40%)2,76 +
ThresholdProcessor(50%)2,85 +
AutoThresholdProcessor(Kapur)3,21 +
...... +
ThresholdAdaptiveProcessor(08_08)5,27 +
ThresholdAdaptiveProcessor(04_04)5,73 +
ThresholdAdaptiveProcessor(16_16)5,73 +
ThresholdAdaptiveProcessor(20_20)5,73 +
ThresholdAdaptiveProcessor(24_24)5,73 +
+

CER (Median)

+
ProcessorChanges +
ThresholdProcessor(20%)2,00 +
ThresholdProcessor(30%)2,00 +
AutoThresholdProcessor(Kapur)3,00 +
ThresholdProcessor(40%)3,00 +
ThresholdProcessor(50%)3,00 +
...... +
ThresholdAdaptiveProcessor(08_08)5,00 +
ThresholdAdaptiveProcessor(16_16)5,00 +
ThresholdAdaptiveProcessor(20_20)5,00 +
ThresholdAdaptiveProcessor(24_24)5,00 +
ThresholdProcessor(70%)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

historian_assistent_001

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(OTSU)0,15% +
ThresholdProcessor(60%)0,15% +
ThresholdProcessor(30%)0,17% +
ThresholdProcessor(40%)0,17% +
ThresholdProcessor(50%)0,17% +
...... +
AutoThresholdProcessor(Triangle)0,47% +
ThresholdAdaptiveProcessor(12_12)0,57% +
ThresholdAdaptiveProcessor(16_16)0,72% +
ThresholdAdaptiveProcessor(04_04)0,98% +
ThresholdAdaptiveProcessor(20_20)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(60%)0,08 +
ThresholdProcessor(70%)0,08 +
ThresholdProcessor(40%)0,11 +
AutoThresholdProcessor(OTSU)0,13 +
ThresholdProcessor(30%)0,13 +
...... +
AutoThresholdProcessor(Triangle)0,98 +
ThresholdAdaptiveProcessor(12_12)1,77 +
ThresholdAdaptiveProcessor(16_16)2,53 +
ThresholdAdaptiveProcessor(04_04)4,02 +
ThresholdAdaptiveProcessor(20_20)5,15 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
AutoThresholdProcessor(Triangle)0,00 +
ThresholdAdaptiveProcessor(08_08)0,00 +
ThresholdAdaptiveProcessor(24_24)0,00 +
...... +
ThresholdProcessor(80%)0,00 +
ThresholdAdaptiveProcessor(12_12)1,00 +
ThresholdAdaptiveProcessor(16_16)3,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
ThresholdAdaptiveProcessor(20_20)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

reporting-server_report-assistant_007

+ +

WER

+
ProcessorError +
ThresholdProcessor(40%)0,86% +
AutoThresholdProcessor(Kapur)0,93% +
ThresholdProcessor(30%)0,93% +
ThresholdProcessor(50%)0,95% +
ThresholdAdaptiveProcessor(08_08)0,98% +
...... +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(20%)1,00% +
ThresholdProcessor(60%)1,00% +
ThresholdProcessor(70%)1,00% +
ThresholdProcessor(80%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(40%)4,55 +
AutoThresholdProcessor(Kapur)4,95 +
ThresholdProcessor(30%)5,07 +
ThresholdProcessor(20%)5,30 +
ThresholdAdaptiveProcessor(20_20)5,39 +
...... +
ThresholdAdaptiveProcessor(12_12)7,48 +
ThresholdAdaptiveProcessor(24_24)7,48 +
ThresholdProcessor(60%)7,48 +
ThresholdProcessor(70%)7,48 +
ThresholdProcessor(80%)7,48 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)5,00 +
ThresholdAdaptiveProcessor(20_20)5,00 +
ThresholdProcessor(20%)5,00 +
ThresholdProcessor(30%)5,00 +
ThresholdProcessor(40%)5,00 +
...... +
ThresholdAdaptiveProcessor(12_12)7,00 +
ThresholdAdaptiveProcessor(24_24)7,00 +
ThresholdProcessor(60%)7,00 +
ThresholdProcessor(70%)7,00 +
ThresholdProcessor(80%)7,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

report_example_data-time_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(30%)0,21% +
ThresholdProcessor(20%)0,26% +
ThresholdProcessor(40%)0,32% +
AutoThresholdProcessor(OTSU)0,37% +
ThresholdProcessor(50%)0,37% +
...... +
ThresholdAdaptiveProcessor(08_08)1,00% +
ThresholdAdaptiveProcessor(12_12)1,00% +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdAdaptiveProcessor(20_20)1,00% +
ThresholdProcessor(80%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)0,16 +
ThresholdProcessor(40%)0,47 +
ThresholdProcessor(20%)0,53 +
AutoThresholdProcessor(OTSU)0,63 +
ThresholdProcessor(50%)0,63 +
...... +
ThresholdAdaptiveProcessor(08_08)7,42 +
ThresholdAdaptiveProcessor(12_12)7,42 +
ThresholdAdaptiveProcessor(16_16)7,42 +
ThresholdAdaptiveProcessor(20_20)7,42 +
ThresholdProcessor(80%)7,42 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
...... +
ThresholdAdaptiveProcessor(08_08)8,00 +
ThresholdAdaptiveProcessor(12_12)8,00 +
ThresholdAdaptiveProcessor(16_16)8,00 +
ThresholdAdaptiveProcessor(20_20)8,00 +
ThresholdProcessor(80%)8,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
AutoThresholdProcessor(Triangle)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

runtime_function_create_002

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(OTSU)0,08% +
ThresholdProcessor(70%)0,12% +
AutoThresholdProcessor(Kapur)0,21% +
ThresholdProcessor(60%)0,25% +
ThresholdProcessor(80%)0,25% +
...... +
AutoThresholdProcessor(Triangle)0,67% +
ThresholdAdaptiveProcessor(08_08)0,67% +
ThresholdAdaptiveProcessor(12_12)0,71% +
ThresholdAdaptiveProcessor(04_04)1,00% +
ThresholdProcessor(20%)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,25 +
ThresholdProcessor(70%)0,33 +
ThresholdProcessor(80%)0,38 +
ThresholdProcessor(60%)0,46 +
AutoThresholdProcessor(Kapur)0,54 +
...... +
ThresholdProcessor(30%)2,17 +
AutoThresholdProcessor(Triangle)2,46 +
ThresholdAdaptiveProcessor(08_08)2,46 +
ThresholdAdaptiveProcessor(04_04)5,00 +
ThresholdProcessor(20%)5,46 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
ThresholdProcessor(60%)0,00 +
ThresholdProcessor(70%)0,00 +
...... +
ThresholdProcessor(30%)2,00 +
ThresholdProcessor(40%)2,00 +
AutoThresholdProcessor(Triangle)3,00 +
ThresholdAdaptiveProcessor(04_04)5,00 +
ThresholdProcessor(20%)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdProcessor(30%)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

straton_runtime_configuration_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(40%)0,28% +
ThresholdProcessor(20%)0,34% +
ThresholdProcessor(30%)0,34% +
AutoThresholdProcessor(OTSU)0,36% +
ThresholdProcessor(50%)0,36% +
...... +
ThresholdAdaptiveProcessor(12_12)0,76% +
ThresholdAdaptiveProcessor(20_20)0,78% +
ThresholdAdaptiveProcessor(04_04)0,80% +
ThresholdAdaptiveProcessor(24_24)0,84% +
AutoThresholdProcessor(Triangle)0,98% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(40%)0,88 +
ThresholdProcessor(50%)1,02 +
AutoThresholdProcessor(OTSU)1,08 +
ThresholdProcessor(30%)1,10 +
ThresholdProcessor(20%)1,14 +
...... +
ThresholdAdaptiveProcessor(12_12)2,80 +
ThresholdAdaptiveProcessor(20_20)2,98 +
ThresholdAdaptiveProcessor(04_04)3,08 +
ThresholdAdaptiveProcessor(24_24)3,08 +
AutoThresholdProcessor(Triangle)3,86 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
...... +
AutoThresholdProcessor(Triangle)3,00 +
ThresholdAdaptiveProcessor(04_04)3,00 +
ThresholdAdaptiveProcessor(12_12)3,00 +
ThresholdAdaptiveProcessor(20_20)3,00 +
ThresholdAdaptiveProcessor(24_24)3,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

worldview_zoom_steps_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(30%)0,29% +
ThresholdProcessor(20%)0,43% +
ThresholdProcessor(70%)0,57% +
ThresholdProcessor(40%)0,64% +
ThresholdAdaptiveProcessor(12_12)0,86% +
...... +
ThresholdAdaptiveProcessor(20_20)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(50%)1,00% +
ThresholdProcessor(60%)1,00% +
ThresholdProcessor(80%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)0,50 +
ThresholdProcessor(20%)1,21 +
ThresholdProcessor(70%)1,71 +
ThresholdProcessor(40%)1,93 +
ThresholdAdaptiveProcessor(12_12)2,50 +
...... +
ThresholdAdaptiveProcessor(20_20)3,79 +
ThresholdAdaptiveProcessor(24_24)3,79 +
ThresholdProcessor(50%)3,79 +
ThresholdProcessor(60%)3,79 +
ThresholdProcessor(80%)3,79 +
+

CER (Median)

+
ProcessorChanges +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(70%)1,00 +
ThresholdAdaptiveProcessor(12_12)2,00 +
ThresholdProcessor(40%)2,00 +
...... +
ThresholdAdaptiveProcessor(20_20)4,00 +
ThresholdAdaptiveProcessor(24_24)4,00 +
ThresholdProcessor(50%)4,00 +
ThresholdProcessor(60%)4,00 +
ThresholdProcessor(80%)4,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdAdaptiveProcessor(24_24)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
...... +
ThresholdAdaptiveProcessor(20_20)0,00ms +
ThresholdProcessor(40%)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
ThresholdProcessor(30%)0,00ms +
ThresholdProcessor(60%)0,00ms +
+

zrs_MetadataEditor_variables_001

+ +

WER

+
ProcessorError +
ThresholdAdaptiveProcessor(12_12)0,87% +
ThresholdAdaptiveProcessor(20_20)0,90% +
AutoThresholdProcessor(OTSU)0,92% +
ThresholdProcessor(60%)0,92% +
ThresholdProcessor(70%)0,92% +
...... +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdAdaptiveProcessor(24_24)1,00% +
ThresholdProcessor(20%)1,00% +
ThresholdProcessor(30%)1,00% +
ThresholdProcessor(50%)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(80%)3,13 +
ThresholdProcessor(70%)3,19 +
ThresholdAdaptiveProcessor(12_12)3,73 +
AutoThresholdProcessor(OTSU)3,85 +
ThresholdProcessor(60%)3,87 +
...... +
ThresholdAdaptiveProcessor(24_24)5,77 +
AutoThresholdProcessor(Kapur)6,46 +
AutoThresholdProcessor(Triangle)6,46 +
ThresholdProcessor(20%)6,46 +
ThresholdProcessor(30%)6,46 +
+

CER (Median)

+
ProcessorChanges +
ThresholdProcessor(70%)3,00 +
ThresholdProcessor(80%)3,00 +
AutoThresholdProcessor(OTSU)4,00 +
ThresholdAdaptiveProcessor(08_08)4,00 +
ThresholdAdaptiveProcessor(12_12)4,00 +
...... +
AutoThresholdProcessor(Kapur)6,00 +
AutoThresholdProcessor(Triangle)6,00 +
ThresholdAdaptiveProcessor(24_24)6,00 +
ThresholdProcessor(20%)6,00 +
ThresholdProcessor(30%)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_REPORTS_EfficencyClass_009

+ +

WER

+
ProcessorError +
ThresholdProcessor(30%)0,30% +
ThresholdProcessor(20%)0,33% +
AutoThresholdProcessor(OTSU)0,36% +
ThresholdProcessor(70%)0,39% +
ThresholdAdaptiveProcessor(20_20)0,44% +
...... +
ThresholdProcessor(60%)0,52% +
ThresholdAdaptiveProcessor(08_08)0,62% +
ThresholdProcessor(50%)0,62% +
ThresholdAdaptiveProcessor(04_04)0,94% +
AutoThresholdProcessor(Triangle)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(40%)0,44 +
ThresholdProcessor(60%)0,47 +
AutoThresholdProcessor(Kapur)0,52 +
ThresholdProcessor(50%)0,56 +
ThresholdProcessor(30%)0,58 +
...... +
ThresholdProcessor(80%)1,25 +
ThresholdAdaptiveProcessor(16_16)1,34 +
ThresholdAdaptiveProcessor(08_08)1,55 +
ThresholdAdaptiveProcessor(04_04)3,73 +
AutoThresholdProcessor(Triangle)5,16 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
...... +
ThresholdProcessor(70%)0,00 +
ThresholdProcessor(80%)0,00 +
ThresholdAdaptiveProcessor(08_08)1,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
AutoThresholdProcessor(Triangle)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_REPORTS_extended-analysis_017

+ +

WER

+
ProcessorError +
ThresholdProcessor(30%)0,32% +
ThresholdProcessor(60%)0,36% +
AutoThresholdProcessor(Kapur)0,37% +
ThresholdProcessor(20%)0,38% +
AutoThresholdProcessor(OTSU)0,41% +
...... +
ThresholdProcessor(80%)0,46% +
ThresholdAdaptiveProcessor(08_08)0,55% +
ThresholdAdaptiveProcessor(12_12)0,55% +
ThresholdAdaptiveProcessor(04_04)0,89% +
AutoThresholdProcessor(Triangle)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)0,79 +
ThresholdProcessor(50%)0,79 +
ThresholdProcessor(40%)0,86 +
ThresholdProcessor(60%)0,88 +
AutoThresholdProcessor(Kapur)0,91 +
...... +
ThresholdProcessor(80%)1,42 +
ThresholdAdaptiveProcessor(12_12)1,57 +
ThresholdAdaptiveProcessor(08_08)1,83 +
ThresholdAdaptiveProcessor(04_04)3,82 +
AutoThresholdProcessor(Triangle)5,88 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
...... +
ThresholdProcessor(70%)0,00 +
ThresholdProcessor(80%)0,00 +
ThresholdAdaptiveProcessor(08_08)1,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
AutoThresholdProcessor(Triangle)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_ZAMS_3rd-connector_014

+ +

WER

+
ProcessorError +
ThresholdProcessor(20%)0,32% +
AutoThresholdProcessor(Kapur)0,35% +
ThresholdProcessor(30%)0,41% +
ThresholdProcessor(40%)0,62% +
ThresholdAdaptiveProcessor(20_20)0,68% +
...... +
ThresholdProcessor(60%)0,97% +
AutoThresholdProcessor(Triangle)1,00% +
ThresholdAdaptiveProcessor(12_12)1,00% +
ThresholdAdaptiveProcessor(16_16)1,00% +
ThresholdProcessor(80%)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,82 +
ThresholdProcessor(20%)0,85 +
ThresholdProcessor(30%)1,18 +
ThresholdProcessor(40%)2,00 +
ThresholdAdaptiveProcessor(20_20)2,88 +
...... +
ThresholdProcessor(60%)4,79 +
AutoThresholdProcessor(Triangle)5,88 +
ThresholdAdaptiveProcessor(12_12)5,88 +
ThresholdAdaptiveProcessor(16_16)5,88 +
ThresholdProcessor(80%)5,88 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
ThresholdProcessor(20%)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdAdaptiveProcessor(20_20)2,00 +
ThresholdAdaptiveProcessor(24_24)2,00 +
...... +
ThresholdAdaptiveProcessor(08_08)5,00 +
ThresholdAdaptiveProcessor(12_12)5,00 +
ThresholdAdaptiveProcessor(16_16)5,00 +
ThresholdProcessor(60%)5,00 +
ThresholdProcessor(80%)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_ZAMS_filter-alarmgroup_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(40%)0,13% +
ThresholdProcessor(30%)0,20% +
ThresholdProcessor(50%)0,20% +
ThresholdProcessor(20%)0,27% +
ThresholdProcessor(60%)0,40% +
...... +
ThresholdAdaptiveProcessor(20_20)0,60% +
ThresholdAdaptiveProcessor(24_24)0,60% +
ThresholdAdaptiveProcessor(08_08)0,73% +
ThresholdAdaptiveProcessor(04_04)0,80% +
AutoThresholdProcessor(Triangle)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)0,20 +
ThresholdProcessor(40%)0,20 +
ThresholdProcessor(50%)0,20 +
ThresholdProcessor(20%)0,40 +
AutoThresholdProcessor(OTSU)1,07 +
...... +
AutoThresholdProcessor(Kapur)1,53 +
ThresholdProcessor(80%)1,53 +
ThresholdAdaptiveProcessor(08_08)2,73 +
ThresholdAdaptiveProcessor(04_04)4,27 +
AutoThresholdProcessor(Triangle)7,00 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
ThresholdAdaptiveProcessor(24_24)0,00 +
...... +
ThresholdProcessor(80%)0,00 +
AutoThresholdProcessor(Kapur)1,00 +
ThresholdAdaptiveProcessor(08_08)3,00 +
ThresholdAdaptiveProcessor(04_04)5,00 +
AutoThresholdProcessor(Triangle)7,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_ZAMS_OLEDB-server_001

+ +

WER

+
ProcessorError +
ThresholdProcessor(50%)0,39% +
AutoThresholdProcessor(OTSU)0,43% +
ThresholdProcessor(40%)0,44% +
ThresholdProcessor(60%)0,44% +
ThresholdProcessor(70%)0,44% +
...... +
ThresholdAdaptiveProcessor(20_20)0,82% +
ThresholdAdaptiveProcessor(24_24)0,87% +
AutoThresholdProcessor(Triangle)0,93% +
ThresholdAdaptiveProcessor(04_04)0,93% +
ThresholdAdaptiveProcessor(16_16)1,00% +
+

CER (Average)

+
ProcessorChanges +
ThresholdProcessor(30%)0,82 +
ThresholdProcessor(50%)0,82 +
ThresholdProcessor(40%)1,10 +
ThresholdProcessor(60%)1,21 +
AutoThresholdProcessor(OTSU)1,30 +
...... +
ThresholdAdaptiveProcessor(20_20)2,98 +
ThresholdAdaptiveProcessor(24_24)3,34 +
ThresholdAdaptiveProcessor(04_04)3,61 +
AutoThresholdProcessor(Triangle)3,62 +
ThresholdAdaptiveProcessor(16_16)5,31 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdProcessor(30%)0,00 +
ThresholdProcessor(40%)0,00 +
ThresholdProcessor(50%)0,00 +
...... +
ThresholdAdaptiveProcessor(20_20)3,00 +
ThresholdAdaptiveProcessor(24_24)3,00 +
AutoThresholdProcessor(Triangle)4,00 +
ThresholdAdaptiveProcessor(04_04)4,00 +
ThresholdAdaptiveProcessor(16_16)5,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_ZAMS_scatter_002

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(Kapur)0,09% +
ThresholdProcessor(80%)0,09% +
ThresholdAdaptiveProcessor(24_24)0,18% +
AutoThresholdProcessor(OTSU)0,27% +
ThresholdAdaptiveProcessor(20_20)0,27% +
...... +
ThresholdAdaptiveProcessor(12_12)0,45% +
ThresholdAdaptiveProcessor(16_16)0,45% +
ThresholdAdaptiveProcessor(04_04)0,91% +
AutoThresholdProcessor(Triangle)1,00% +
ThresholdProcessor(20%)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
ThresholdProcessor(80%)0,00 +
AutoThresholdProcessor(OTSU)0,18 +
ThresholdProcessor(50%)0,18 +
ThresholdProcessor(60%)0,18 +
...... +
ThresholdAdaptiveProcessor(12_12)2,27 +
ThresholdAdaptiveProcessor(08_08)2,36 +
ThresholdAdaptiveProcessor(04_04)6,45 +
ThresholdProcessor(20%)6,64 +
AutoThresholdProcessor(Triangle)9,18 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(Kapur)0,00 +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(08_08)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
...... +
ThresholdProcessor(70%)0,00 +
ThresholdProcessor(80%)0,00 +
ThresholdProcessor(20%)6,00 +
ThresholdAdaptiveProcessor(04_04)7,00 +
AutoThresholdProcessor(Triangle)8,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

zrs_ZAMS_windrose_002

+ +

WER

+
ProcessorError +
AutoThresholdProcessor(OTSU)0,28% +
ThresholdAdaptiveProcessor(20_20)0,32% +
ThresholdProcessor(60%)0,32% +
ThresholdProcessor(70%)0,32% +
ThresholdAdaptiveProcessor(16_16)0,36% +
...... +
AutoThresholdProcessor(Triangle)0,84% +
AutoThresholdProcessor(Kapur)0,92% +
ThresholdAdaptiveProcessor(04_04)0,96% +
ThresholdProcessor(20%)1,00% +
ThresholdProcessor(30%)1,00% +
+

CER (Average)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,52 +
ThresholdProcessor(60%)0,56 +
ThresholdProcessor(70%)0,60 +
ThresholdAdaptiveProcessor(16_16)0,64 +
ThresholdAdaptiveProcessor(20_20)0,64 +
...... +
AutoThresholdProcessor(Triangle)4,08 +
AutoThresholdProcessor(Kapur)4,16 +
ThresholdAdaptiveProcessor(04_04)4,48 +
ThresholdProcessor(20%)6,12 +
ThresholdProcessor(30%)6,12 +
+

CER (Median)

+
ProcessorChanges +
AutoThresholdProcessor(OTSU)0,00 +
ThresholdAdaptiveProcessor(08_08)0,00 +
ThresholdAdaptiveProcessor(12_12)0,00 +
ThresholdAdaptiveProcessor(16_16)0,00 +
ThresholdAdaptiveProcessor(20_20)0,00 +
...... +
AutoThresholdProcessor(Kapur)4,00 +
AutoThresholdProcessor(Triangle)4,00 +
ThresholdAdaptiveProcessor(04_04)5,00 +
ThresholdProcessor(20%)6,00 +
ThresholdProcessor(30%)6,00 +
+

Time

+
ProcessorTime +
ThresholdAdaptiveProcessor(24_24)0,00ms +
ThresholdAdaptiveProcessor(16_16)0,00ms +
ThresholdAdaptiveProcessor(08_08)0,00ms +
ThresholdAdaptiveProcessor(12_12)0,00ms +
ThresholdProcessor(50%)0,00ms +
...... +
ThresholdProcessor(40%)0,00ms +
ThresholdProcessor(70%)0,00ms +
AutoThresholdProcessor(Kapur)0,00ms +
AutoThresholdProcessor(OTSU)0,00ms +
ThresholdAdaptiveProcessor(04_04)0,00ms +
+

Scan Results

command-processing_screentypes_controlgroup_005

ProcessorElapsedWERCER (avg)Image10034activeidinterlockinginterlockingsnostatictexttyp -
AutoThresholdProcessor(OTSU)0,8ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp -
ThresholdProcessor(40%)0,8ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp +
ThresholdProcessor(60%)0,7ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp
ThresholdProcessor(30%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp -
ThresholdProcessor(70%)1,0ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp -
ThresholdProcessor(50%)1,1ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp -
ThresholdProcessor(60%)1,2ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp -
ThresholdProcessor(80%)0,8ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp -
AutoThresholdProcessor(Kapur)0,9ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp -
ThresholdAdaptiveProcessor(18_18)0,6ms22,2%0,8910034activeidinterlockinginterlockingsnoidtextid -
ThresholdProcessor(10%)1,0ms33,3%0,1110034activeidinterlockinginterlackingsnostatictexttyp -
ThresholdProcessor(0%)1,9ms33,3%0,1110034activeidinterlockinginterlackingsnostatictexttyp -
ThresholdProcessor(20%)2,1ms33,3%0,1110034activeidinterlockinginterlackingsnostatictexttyp -
ThresholdAdaptiveProcessor(24_24)0,4ms44,4%1,67noactivenointerlockinginterlockingsnoactivetextno -
ThresholdAdaptiveProcessor(22_22)0,7ms44,4%1,67eeactiveeeinterlockinginterlockingsnoactivetextee +
ThresholdProcessor(70%)0,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp +
ThresholdProcessor(40%)1,0ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp +
ThresholdProcessor(50%)1,8ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp +
AutoThresholdProcessor(OTSU)2,9ms0,0%0,0010034activeidinterlockinginterlockingsnostatictexttyp +
AutoThresholdProcessor(Kapur)0,7ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp +
ThresholdProcessor(80%)0,7ms11,1%0,2210034activeidinterlockinginterlockingsidstatictexttyp +
ThresholdProcessor(20%)0,7ms33,3%0,1110034activeidinterlockinginterlackingsnostatictexttyp +
ThresholdAdaptiveProcessor(24_24)1,1ms44,4%1,67noactivenointerlockinginterlockingsnoactivetextno
ThresholdAdaptiveProcessor(20_20)0,5ms55,6%1,89textactive`null`interlockinginterlockings`null`texttexttext -
ThresholdAdaptiveProcessor(16_16)0,6ms66,7%2,00textactive`null`interlockinginterlocking`null`activetexttext -
ThresholdAdaptiveProcessor(12_12)0,4ms77,8%3,00nononointerlockinginterlockingnononono -
ThresholdAdaptiveProcessor(04_04)0,4ms88,9%2,78texttext`null`interlockings'interlockings'`null`texttexttext -
ThresholdAdaptiveProcessor(14_14)0,4ms88,9%3,22`null``null``null`interlockinginterlocking`null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms88,9%4,67`null`static`null`staticstatic`null`static`null``null` -
ThresholdAdaptiveProcessor(10_10)0,6ms88,9%5,22nonononononononono -
ThresholdAdaptiveProcessor(06_06)0,4ms100,0%3,44`null``null``null`interlockings'interlockings'`null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,89`null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(08_08)0,5ms100,0%5,89`null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,2ms100,0%5,89`null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)3,0ms100,0%5,89`null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)3,1ms100,0%5,89`null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(16_16)0,7ms66,7%2,00textactive`null`interlockinginterlocking`null`activetexttext +
ThresholdAdaptiveProcessor(12_12)0,5ms77,8%3,00nononointerlockinginterlockingnononono +
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%2,78texttext`null`interlockings'interlockings'`null`texttexttext +
AutoThresholdProcessor(Triangle)1,0ms100,0%5,89`null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(08_08)1,3ms100,0%5,89`null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 9 tagged words.*

driver_archdrv_variablendefinition_001

ProcessorElapsedWERCER (avg)Imagearchivebitbytdasdoppelwortfloatgewünschtehilfekonfigurationneuobjektselektierensiestringtreibervariablevariablendefinitionverlassenwort -
ThresholdProcessor(50%)1,2ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationbiobjektselektierensiestringtreibervariableverlassenverlassenwort -
ThresholdProcessor(30%)1,4ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort -
ThresholdProcessor(40%)1,4ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort -
AutoThresholdProcessor(OTSU)0,8ms27,8%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationxlobjektselektierensiestringtreibervariableverlassenverlassenwort -
ThresholdProcessor(60%)0,9ms27,8%1,33hilfebitbytedasdoppelwortfloatgewunschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort +
ThresholdProcessor(50%)0,7ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationbiobjektselektierensiestringtreibervariableverlassenverlassenwort +
ThresholdProcessor(40%)1,0ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort +
ThresholdProcessor(30%)11,6ms22,2%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort +
ThresholdProcessor(60%)0,8ms27,8%1,33hilfebitbytedasdoppelwortfloatgewunschtehilfekonfigurationdasobjektselektierensiestringtreibervariableverlassenverlassenwort +
AutoThresholdProcessor(OTSU)1,1ms27,8%1,28hilfebitbytedasdoppelwortfloatgewünschtehilfekonfigurationxlobjektselektierensiestringtreibervariableverlassenverlassenwort
ThresholdAdaptiveProcessor(24_24)0,5ms38,9%1,00siebitbytedasdoppelwortfloatgewünschtesiekonfigurationwiobjektselektierensiestringtreibervariableyariablendefiiverlassenwort -
ThresholdAdaptiveProcessor(16_16)0,4ms44,4%1,00archivebitbytedasdoppelwortfloatgewünschtesiekonfigurationffbitselektierensiestringtreibervariablevariablendefinitionarchivewort -
ThresholdAdaptiveProcessor(14_14)0,4ms50,0%1,50archivebitbytedasdoppelwortfloatgewünschteiewortenbitselektierensiestringtreibervariablevariablendefinitionenwort -
ThresholdProcessor(70%)1,3ms55,6%2,72hilfebitbitortdoppelwortfloatverlassenhilfekonfigurationortortverlassenbitstringtreibervariableverlassenverlassenort -
ThresholdProcessor(20%)4,0ms55,6%3,28archivesiedasdasobjektfloatgewunschtehilfefloatdasobjektselektierensiesieverlassenverlassenverlassenfloat +
ThresholdAdaptiveProcessor(16_16)1,2ms44,4%1,00archivebitbytedasdoppelwortfloatgewünschtesiekonfigurationffbitselektierensiestringtreibervariablevariablendefinitionarchivewort +
ThresholdProcessor(20%)0,8ms55,6%3,28archivesiedasdasobjektfloatgewunschtehilfefloatdasobjektselektierensiesieverlassenverlassenverlassenfloat +
ThresholdProcessor(70%)0,8ms55,6%2,72hilfebitbitortdoppelwortfloatverlassenhilfekonfigurationortortverlassenbitstringtreibervariableverlassenverlassenort +
ThresholdProcessor(80%)0,7ms61,1%3,39stringbitbitbldoppelwortfloatwortblkonfigurationblbitstringbitstringtreibervariablekonfigurationblwort
AutoThresholdProcessor(Triangle)0,8ms61,1%3,28stringbitbytenewdoppelwortfloatnewbytekonfigurationnewbitstringbitstringtreibervariablekonfigurationnewwort -
ThresholdProcessor(80%)1,1ms61,1%3,39stringbitbitbldoppelwortfloatwortblkonfigurationblbitstringbitstringtreibervariablekonfigurationblwort -
ThresholdAdaptiveProcessor(18_18)0,5ms66,7%4,00stringbitbitbitdoppelwortfloatwortbitfloatbitbitstringbitstringtreibervariabletreibervariablestringwort -
ThresholdAdaptiveProcessor(22_22)0,5ms66,7%4,00stringbitbytebitdoppelwortfloatbytebytefloatbitbitstringbitstringtreibervariabletreibervariablestringwort -
ThresholdAdaptiveProcessor(20_20)0,6ms66,7%2,72archivebitbyteetdoppelwortfloatetbytewortetetstringbitstringtreibervariablevariablendefinitionarchivewort -
ThresholdAdaptiveProcessor(08_08)0,4ms72,2%4,17archivesiedasdasfloatfloatgewünschtesiefloatdassieelektierensiesieelektierenelektierenelektierenfloat -
ThresholdProcessor(90%)1,4ms77,8%3,28stingbitbytebitdoppelwortfloatwortbytefloatbitbitstingbitstingtreibervariableyariablendefinitionstingwort -
ThresholdProcessor(10%)1,0ms88,9%5,72archive`null``null``null`floatfloatarchivefloatfloat`null`floatfloat`null`floatarchivearchivearchivefloat -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%6,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null`yariablendefinitionyariablendefinition`null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(10_10)0,5ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(20_20)0,7ms66,7%2,72archivebitbyteetdoppelwortfloatetbytewortetetstringbitstringtreibervariablevariablendefinitionarchivewort +
ThresholdAdaptiveProcessor(08_08)0,6ms72,2%4,17archivesiedasdasfloatfloatgewünschtesiefloatdassieelektierensiesieelektierenelektierenelektierenfloat
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%5,78aisaisyoaiselyoessenelaiselessenessenaiswgessenessenessenwg -
ThresholdAdaptiveProcessor(06_06)0,7ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,8ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,9ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Kapur)1,2ms100,0%6,61ayigyomyomyomyomyomgqyomayigyomyomayigyomayigayigayigayigyom +
AutoThresholdProcessor(Kapur)0,6ms100,0%6,61ayigyomyomyomyomyomgqyomayigyomyomayigyomayigayigayigayigyom +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,50`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 18 tagged words.*

driver_BQLSX00_connections_002

ProcessorElapsedWERCER (avg)Image01abbrechenarchiv kennungdatenbausteindatenbausteinkonfigurationdatensatzdatentypdoppelworteinstellungenfreiidlöschennameneueneueroffsetohneokprodukt IDS7-300schreibstatusseriellSOspaltenorientiertstellewert -
ThresholdProcessor(20%)1,5ms70,4%3,37`null``null`techenkennungdaterbaustaindaterbaustaindatensatzdatensatzwerteinstellungenfreiidtechennamenameneveroffsetohnesofreifreidatensatzstelesodatensatzstelewert -
ThresholdProcessor(40%)1,7ms70,4%3,70`null``null`archivkennungdatenbausteindatenbausteindatensatzdatentypwertkennungnameidarchivnamenamenameoffsetohnesoproduktnamedatensatzwertsodatenbausteinnamewert -
ThresholdProcessor(30%)0,9ms74,1%3,56501dabbrechenkennungdatenbausteindatenbausteindatenbausteinseneilooppetwortkennungsoidabbrechennamenamenameoffsetohnesoso50screbstetusseriesodatenbausteinseriewert -
ThresholdProcessor(0%)0,8ms77,8%3,26`null``null`abbrechenkennungdaterbaustandatenbausteinkonfigurationsenasenawertstelehetidsenanameneueneuerhetohnesoproduktsenasenaserielsoserielstelewert -
ThresholdProcessor(10%)0,9ms85,2%3,15`null``null`kchenkennungdatersatzdatenbausteinkonfigurationdatersatzstetewertstetefreiidkchennameneueneveroffsetintltl57-300schrebstetusnevertlstetestetewert -
ThresholdProcessor(50%)1086,4ms85,2%4,93`null``null`stelefreidatentypdatentypdatentypdatentypdoppelwortstelefrei`null`stelestelestelestelefreistele`null`stelestelefreistele`null`datentypstelewert -
ThresholdAdaptiveProcessor(20_20)0,4ms96,3%6,15`null``null`werekawertwertwertwertwertwerewerekawerekawerewerewertwerekakakawertwerekawertwerewert -
ThresholdAdaptiveProcessor(18_18)0,6ms96,3%6,07`null``null`neverneverwertwertwertwertwertneverflflneverneverneverneverflflflwertflwertwertflneverflwert -
AutoThresholdProcessor(Kapur)1,0ms96,3%6,11`null``null`bseubseubseubseuwertwertwertbseubseu`null`bseubseubseubseubseubseu`null`bseubseubseuwert`null`wertbseuwert -
ThresholdProcessor(80%)1,8ms96,3%6,52`null``null`wertwertwertwertwertwertwertwertwert`null`wertwertwertwertwertwert`null`wertwertwertwert`null`wertwertwert -
ThresholdProcessor(70%)2,0ms96,3%6,52`null``null`namenamenamenamenamenamenamenamename`null`namenamenamenamenamename`null`namenamenamename`null`namenamename -
ThresholdAdaptiveProcessor(08_08)0,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(10_10)0,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(12_12)0,4ms100,0%6,63`null``null`enenenenenenenenenenenenenenenenenenenenenenenenen -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(14_14)0,5ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%6,07`null``null`steletestelesteletetestelesteletetetetetetetetetetetestelesteletestelestelete -
ThresholdProcessor(90%)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(24_24)0,7ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)0,8ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(OTSU)1,0ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(16_16)1,2ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(60%)1,7ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(04_04)2,1ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)0,9ms70,4%3,37`null``null`techenkennungdaterbaustaindaterbaustaindatensatzdatensatzwerteinstellungenfreiidtechennamenameneveroffsetohnesofreifreidatensatzstelesodatensatzstelewert +
ThresholdProcessor(40%)0,9ms70,4%3,70`null``null`archivkennungdatenbausteindatenbausteindatensatzdatentypwertkennungnameidarchivnamenamenameoffsetohnesoproduktnamedatensatzwertsodatenbausteinnamewert +
ThresholdProcessor(30%)1,0ms74,1%3,56501dabbrechenkennungdatenbausteindatenbausteindatenbausteinseneilooppetwortkennungsoidabbrechennamenamenameoffsetohnesoso50screbstetusseriesodatenbausteinseriewert +
ThresholdProcessor(50%)1,7ms85,2%4,93`null``null`stelefreidatentypdatentypdatentypdatentypdoppelwortstelefrei`null`stelestelestelestelefreistele`null`stelestelefreistele`null`datentypstelewert +
ThresholdAdaptiveProcessor(20_20)0,6ms96,3%6,15`null``null`werekawertwertwertwertwertwerewerekawerekawerewerewertwerekakakawertwerekawertwerewert +
ThresholdProcessor(70%)0,7ms96,3%6,52`null``null`namenamenamenamenamenamenamenamename`null`namenamenamenamenamename`null`namenamenamename`null`namenamename +
AutoThresholdProcessor(Kapur)1,1ms96,3%6,11`null``null`bseubseubseubseuwertwertwertbseubseu`null`bseubseubseubseubseubseu`null`bseubseubseuwert`null`wertbseuwert +
ThresholdProcessor(80%)1,1ms96,3%6,52`null``null`wertwertwertwertwertwertwertwertwert`null`wertwertwertwertwertwert`null`wertwertwertwert`null`wertwertwert +
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%6,63`null``null`enenenenenenenenenenenenenenenenenenenenenenenenen +
ThresholdAdaptiveProcessor(16_16)0,6ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(60%)0,9ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(OTSU)1,1ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)1,2ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,67`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 27 tagged words.*

driver_brpvi_offlineimport_004

@@ -145,478 +1505,313 @@
ThresholdProcessor(50%)0,7ms23,1%0,92`null`backcanceldeclarationdescriptionfilefilenamefinishhelpnewnewopctag
ThresholdProcessor(60%)0,9ms30,8%1,38`null`backcanceldeclarationdescriptionfilefilenamefilefilenewinewopopctag
ThresholdProcessor(70%)0,8ms38,5%1,69`null`backanewdeclarationdescriptionfilefilenamefilefilenewdeclarationopctag -
ThresholdProcessor(40%)1,4ms38,5%1,15`null`backcanceldeclarationcescriptiorfilefileramefinishhelpnewnewopctag -
AutoThresholdProcessor(OTSU)0,8ms46,2%1,31`null`backanewdeclarationdescriptionfilefilenamefishfilenewnewopcopctag -
ThresholdProcessor(30%)0,8ms53,8%1,62`null`backcanceldeclarationdeclarationfilefilefinishhelpnewscescrigücropctag -
AutoThresholdProcessor(Kapur)1,0ms53,8%1,69`null`taganewdeclarationdescriptionfilefilenamefilefilenewnewopcopctag -
ThresholdAdaptiveProcessor(16_16)0,4ms69,2%2,62`null`taganewdeclarationdeclarationfilefilefilefilenewdeclarationopctag -
ThresholdAdaptiveProcessor(10_10)0,5ms69,2%2,69`null`taganewdescriptiondescriptionfilefilefilefileanewopcopctag -
ThresholdAdaptiveProcessor(14_14)0,5ms76,9%3,85`null`taganewanewfilefilefilefileldanewopcopctag -
ThresholdProcessor(80%)0,8ms76,9%3,62`null`taganewtogtogfilefilefilenewnewnewopctag -
ThresholdAdaptiveProcessor(12_12)0,3ms84,6%3,15`null`tadanewdescriptiondescriptionficficfictadanewopcopctad -
ThresholdAdaptiveProcessor(08_08)0,4ms84,6%4,54`null`taganewtagtagtagtaganewtaganewopcopctag -
ThresholdProcessor(90%)1,0ms84,6%4,08`null`opcanewfilefilefilefilefilefileanewopcopcopc -
ThresholdAdaptiveProcessor(20_20)0,6ms92,3%4,08`null`tagsesesefilefilefileseseopcopctag -
ThresholdAdaptiveProcessor(06_06)1,0ms92,3%4,23`null`taganewfleopgflefleflefleanewopgopgtag -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%4,38cacaanewcatiletiletileanewtileanewcacaca -
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,54`null`cscscscscscscscscscscscs -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,31`null`eeeeeeeeeeeeeeeeeeeeeeee -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%5,38`null`ioioioioioioioioioioioio -
AutoThresholdProcessor(Triangle)0,8ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(18_18)0,8ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(10%)0,8ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(20%)0,8ms100,0%3,38`null`falfalzeclarationzeclarationfalfalfalfalmewzeclarationopctay -
ThresholdProcessor(0%)0,9ms100,0%5,31`null`eseseseseseseseseseseses -
ThresholdProcessor(100%)1,1ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(40%)1,3ms38,5%1,15`null`backcanceldeclarationcescriptiorfilefileramefinishhelpnewnewopctag +
AutoThresholdProcessor(OTSU)1,1ms46,2%1,31`null`backanewdeclarationdescriptionfilefilenamefishfilenewnewopcopctag +
AutoThresholdProcessor(Kapur)1,1ms53,8%1,69`null`taganewdeclarationdescriptionfilefilenamefilefilenewnewopcopctag +
ThresholdProcessor(30%)1,1ms53,8%1,62`null`backcanceldeclarationdeclarationfilefilefinishhelpnewscescrigücropctag +
ThresholdAdaptiveProcessor(16_16)0,5ms69,2%2,62`null`taganewdeclarationdeclarationfilefilefilefilenewdeclarationopctag +
ThresholdProcessor(80%)1,4ms76,9%3,62`null`taganewtogtogfilefilefilenewnewnewopctag +
ThresholdAdaptiveProcessor(08_08)0,6ms84,6%4,54`null`taganewtagtagtagtaganewtaganewopcopctag +
ThresholdAdaptiveProcessor(12_12)0,6ms84,6%3,15`null`tadanewdescriptiondescriptionficficfictadanewopcopctad +
ThresholdAdaptiveProcessor(20_20)0,5ms92,3%4,08`null`tagsesesefilefilefileseseopcopctag +
AutoThresholdProcessor(Triangle)0,9ms100,0%6,00`null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)1,0ms100,0%3,38`null`falfalzeclarationzeclarationfalfalfalfalmewzeclarationopctay +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%4,38cacaanewcatiletiletileanewtileanewcacaca +
ThresholdAdaptiveProcessor(24_24)1,4ms100,0%5,54`null`cscscscscscscscscscscscs

*Comparison data generated based on 13 tagged words.*

driver_SEL_Options_002

ProcessorElapsedWERCER (avg)Image100180000anandbetweenenterintegerokSEL -
ThresholdAdaptiveProcessor(12_12)0,3ms22,2%0,56100180000anandbetweenenterintegeran100 -
ThresholdAdaptiveProcessor(16_16)0,4ms22,2%0,56100180000anandbetweenenterintegeranan -
ThresholdAdaptiveProcessor(10_10)0,5ms22,2%0,56100180000anandbetweenenterintegeranand -
ThresholdAdaptiveProcessor(14_14)0,5ms22,2%0,56100180000anandbetweenenterintegeranan +
ThresholdAdaptiveProcessor(16_16)0,5ms22,2%0,56100180000anandbetweenenterintegeranan
ThresholdProcessor(60%)0,7ms22,2%0,56100180000anandbetweenenterintegeran100 -
AutoThresholdProcessor(OTSU)0,8ms22,2%0,56100180000anandbetweenenterintegeran100 -
ThresholdProcessor(70%)0,9ms22,2%0,56100180000anandbetweenenterintegeranand -
ThresholdProcessor(80%)1,2ms22,2%0,56100180000anandbetweenenterintegeranan -
ThresholdProcessor(90%)2,0ms22,2%0,56100180000anandbetweenenterintegeranan -
ThresholdAdaptiveProcessor(08_08)0,3ms33,3%0,56100180000anandbetweenenterintegeranan +
ThresholdProcessor(70%)0,7ms22,2%0,56100180000anandbetweenenterintegeranand +
ThresholdProcessor(80%)0,9ms22,2%0,56100180000anandbetweenenterintegeranan +
ThresholdAdaptiveProcessor(12_12)1,0ms22,2%0,56100180000anandbetweenenterintegeran100 +
AutoThresholdProcessor(OTSU)1,1ms22,2%0,56100180000anandbetweenenterintegeran100 +
ThresholdAdaptiveProcessor(08_08)0,5ms33,3%0,56100180000anandbetweenenterintegeranan
ThresholdAdaptiveProcessor(20_20)0,5ms33,3%0,56100180000anandbetweenenterintegeranfin -
ThresholdAdaptiveProcessor(22_22)0,6ms33,3%0,56100180000anandbetweenenterintegerayay -
AutoThresholdProcessor(Kapur)0,8ms33,3%0,56100180000anandbetweenenterintegereqeq -
ThresholdProcessor(30%)0,8ms33,3%0,56100180000anandbetweenenterintegereqeq
ThresholdProcessor(40%)0,8ms33,3%0,56100180000anandbetweenenterintegerinin -
ThresholdProcessor(50%)0,9ms33,3%0,56100180000anandbetweenenterintegeran100 -
ThresholdProcessor(20%)2,1ms33,3%0,56100180000anandbetweenenterintegereaea -
ThresholdProcessor(10%)2,8ms55,6%0,67190180000anandbetweenenterintegeran190 -
ThresholdAdaptiveProcessor(06_06)0,4ms77,8%1,89`null`1180000`null``null`betweenintegerinteger`null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms88,9%2,67100100aneaneaneaneane`null`ane -
ThresholdAdaptiveProcessor(04_04)1,1ms88,9%2,89`null`300001`null``null`betweenbetweenbetween`null``null` +
ThresholdProcessor(50%)0,8ms33,3%0,56100180000anandbetweenenterintegeran100 +
ThresholdProcessor(30%)0,9ms33,3%0,56100180000anandbetweenenterintegereqeq +
ThresholdProcessor(20%)1,0ms33,3%0,56100180000anandbetweenenterintegereaea +
AutoThresholdProcessor(Kapur)1,2ms33,3%0,56100180000anandbetweenenterintegereqeq +
ThresholdAdaptiveProcessor(04_04)1,4ms88,9%2,89`null`300001`null``null`betweenbetweenbetween`null``null`
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%4,22`null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%4,22`null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(18_18)0,6ms100,0%4,22`null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%4,22`null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)1,1ms100,0%4,22`null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,8ms100,0%4,22`null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)0,8ms100,0%4,22`null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 9 tagged words.*

driver_simotion_online_import_001

ProcessorElapsedWERCER (avg)Image(1)aallcancelconnectionconnectionsD445existingfilterimportlabelnewokonlyresourcesselectsetvariablevariables
ThresholdProcessor(50%)0,7ms26,3%0,5811`null`alllabelconnectionconnectionsd426existingfilterimportlabelnew11onlyresourcesselectsetvariablevariables -
ThresholdAdaptiveProcessor(20_20)0,4ms31,6%0,95ei`null`alllabelconnectionconnectionseiexistingeiimportlabelneweionlyresourcesselectsetvariablevariables
ThresholdProcessor(60%)0,8ms31,6%0,63all`null`alllabelconnectionconnectionsd445existingfilterimportlabelnew`null`ovonlyresourcesselectsetvariablevariables +
ThresholdAdaptiveProcessor(20_20)0,9ms31,6%0,95ei`null`alllabelconnectionconnectionseiexistingeiimportlabelneweionlyresourcesselectsetvariablevariables
ThresholdProcessor(80%)0,9ms31,6%0,63ok`null`oklabelconnectionconnectionsd445existingfiterimportlabelnewokonlyresourcesselectsetvariablevariables -
ThresholdProcessor(70%)1,0ms36,8%0,42ox`null`allcanceconnectionconnectionsd445existingfitterimportlabelnewoxonlyresourcesselectsetvariablevariables -
AutoThresholdProcessor(OTSU)1,1ms36,8%0,58all`null`alllabelconnectionconnectionsd445existingfitterimportlabelnew`null`onlyresourcesselectsetvariablevariables -
ThresholdAdaptiveProcessor(12_12)0,5ms42,1%0,95alalallabelconnectionconnectionsd445existingalimportlabelnewalonlyresourcesselectnewvariablevariables -
ThresholdAdaptiveProcessor(14_14)0,4ms47,4%1,11new`null`onlylabelconnectionconnectionsd445existingimportimportlabelnew`null`onlyresourcesselectnewvariablesvariables -
ThresholdProcessor(40%)1,5ms47,4%0,89et`null`allcancelconnectienconnectionsetexistingfitterimportlabelnewetallresourcesselectetvariablesvariables -
ThresholdAdaptiveProcessor(08_08)0,3ms57,9%1,58tew`null`onlylabelconnectionconnectiononlyexistingtewimportlabelnew`null`onlyvariablesselecttewvariablevariables -
AutoThresholdProcessor(Kapur)1,0ms57,9%1,00ck`null`ckcancelconnecticnconnectionsckexistingfitterimportlabelnewcknewresourcesselectetvariablesvariables -
ThresholdAdaptiveProcessor(10_10)0,4ms63,2%0,95ooalallabelconnectionconnectionsd445existingalimportlabelnewooonlyresourcesselectnewvariablesvariables -
ThresholdAdaptiveProcessor(24_24)0,4ms63,2%1,84mm`null`allallconnectionconnectionsd445existingallmmallnewmmoniyvariablesselectnewvariablesvariables -
ThresholdProcessor(30%)1,0ms63,2%1,58all`null`alllabelcennecticncennecticnallistingfilterimportlabelsetokallresourcesselectsetyanablesyanables -
ThresholdAdaptiveProcessor(22_22)0,4ms84,2%3,74`null``null``null`d445connectionconnectionsd445selectselectselectd445`null``null`d445selectselectselectd445select -
ThresholdAdaptiveProcessor(16_16)0,6ms84,2%3,74445`null`445445connectionconnections445selectselectselect445445`null`445selectselect445445select -
ThresholdAdaptiveProcessor(18_18)0,4ms89,5%3,95`null``null``null`selectconnectionconnection`null`selectselectselectselect`null``null``null`selectselectselectselectselect -
AutoThresholdProcessor(Triangle)0,8ms89,5%3,79`null``null``null`0445connectionconnection0445selectselectselect0445`null``null`0445selectselectselect0445select -
ThresholdProcessor(90%)0,9ms89,5%3,74-c`null`-c-cconnectionconnectiond445selectselectselect-c-c-c-cselectselect-c-cselect -
ThresholdAdaptiveProcessor(04_04)0,3ms94,7%4,58`null``null``null``null`connectionconnection`null`connection`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)0,4ms94,7%4,58`null``null``null``null`connectionconnection`null`connection`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)1,0ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(10%)1,2ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(20%)1,3ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)22,4ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(OTSU)0,9ms36,8%0,58all`null`alllabelconnectionconnectionsd445existingfitterimportlabelnew`null`onlyresourcesselectsetvariablevariables +
ThresholdProcessor(70%)0,9ms36,8%0,42ox`null`allcanceconnectionconnectionsd445existingfitterimportlabelnewoxonlyresourcesselectsetvariablevariables +
ThresholdAdaptiveProcessor(12_12)0,4ms42,1%0,95alalallabelconnectionconnectionsd445existingalimportlabelnewalonlyresourcesselectnewvariablevariables +
ThresholdProcessor(40%)0,7ms47,4%0,89et`null`allcancelconnectienconnectionsetexistingfitterimportlabelnewetallresourcesselectetvariablesvariables +
AutoThresholdProcessor(Kapur)0,9ms57,9%1,00ck`null`ckcancelconnecticnconnectionsckexistingfitterimportlabelnewcknewresourcesselectetvariablesvariables +
ThresholdAdaptiveProcessor(08_08)1,1ms57,9%1,58tew`null`onlylabelconnectionconnectiononlyexistingtewimportlabelnew`null`onlyvariablesselecttewvariablevariables +
ThresholdAdaptiveProcessor(24_24)0,5ms63,2%1,84mm`null`allallconnectionconnectionsd445existingallmmallnewmmoniyvariablesselectnewvariablesvariables +
ThresholdProcessor(30%)1,1ms63,2%1,58all`null`alllabelcennecticncennecticnallistingfilterimportlabelsetokallresourcesselectsetyanablesyanables +
ThresholdAdaptiveProcessor(16_16)0,4ms84,2%3,74445`null`445445connectionconnections445selectselectselect445445`null`445selectselect445445select +
AutoThresholdProcessor(Triangle)0,9ms89,5%3,79`null``null``null`0445connectionconnection0445selectselectselect0445`null``null`0445selectselectselect0445select +
ThresholdAdaptiveProcessor(04_04)1,4ms94,7%4,58`null``null``null``null`connectionconnection`null`connection`null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)1,1ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 19 tagged words.*

editor_multimonitor_example_007

ProcessorElapsedWERCER (avg)Image0000001108019203840alternativebottomcanceldefinedisplayforhelpinleftMmenuMMmonitornameokonlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(70%)0,8ms27,6%0,52`null`1080m_o1108019203840alternativebottomnamedefinedisplayforhelpinleft`null`menuinmonitornameforonlineoptionsphysicalpositionrightthetopundedactable -
ThresholdProcessor(80%)1,8ms31,0%0,62`null`m_00ee108019203840alternativebottomnamedefinedisplayforeeinleft`null`menueemonitornameeeonlineoptionsphysicalpositionrightthetopundedactable -
AutoThresholdProcessor(OTSU)0,9ms34,5%0,62`null`1080m_o1108019203840alternativebottomnamedefinedisplayforleftinleft`null`menuinmonitornameforonlineoptionsphysicalpositionrightthetopundedactable +
ThresholdProcessor(80%)1,0ms31,0%0,62`null`m_00ee108019203840alternativebottomnamedefinedisplayforeeinleft`null`menueemonitornameeeonlineoptionsphysicalpositionrightthetopundedactable +
AutoThresholdProcessor(OTSU)1,4ms34,5%0,62`null`1080m_o1108019203840alternativebottomnamedefinedisplayforleftinleft`null`menuinmonitornameforonlineoptionsphysicalpositionrightthetopundedactable
ThresholdProcessor(60%)0,8ms37,9%0,69`null`1030for103019203340alternativebottomnamedefinedisplayformenuinleft`null`menuinmonitornameforonlineoptionsphysicalpositionrightthetopundedactable -
ThresholdProcessor(40%)1,5ms41,4%1,17`null`toptopnamenamenamealternativebottomnameonlinedisplayfortopinleft`null`menuinmonitornametoponlineoptionsphysicalpositionrightthetopundedactable -
ThresholdProcessor(50%)0,6ms55,2%1,62`null`m_00m_00m_00m_00m_00alternativebottommenuonlinedisplayfortopinmenu`null`menuinmonitortheforonlineoptionsdisplaypositioninthetopundedactable -
ThresholdAdaptiveProcessor(24_24)0,4ms62,1%1,83`null`forformerumerumerualternativemonitormenudefinedisplayformeruinmeru`null`menuinmonitoronineforonineoptionsphysicaloptionsintheforundedactable -
ThresholdAdaptiveProcessor(12_12)0,5ms62,1%2,07`null`forforforforforonlinemonitorindefinedisplayformenuinmenu`null`menuinmonitortheforonlineonlinephysicalpositionintheforundedactable +
ThresholdProcessor(40%)0,9ms41,4%1,17`null`toptopnamenamenamealternativebottomnameonlinedisplayfortopinleft`null`menuinmonitornametoponlineoptionsphysicalpositionrightthetopundedactable +
ThresholdProcessor(50%)0,7ms55,2%1,62`null`m_00m_00m_00m_00m_00alternativebottommenuonlinedisplayfortopinmenu`null`menuinmonitortheforonlineoptionsdisplaypositioninthetopundedactable +
ThresholdAdaptiveProcessor(24_24)0,5ms62,1%1,83`null`forformerumerumerualternativemonitormenudefinedisplayformeruinmeru`null`menuinmonitoronineforonineoptionsphysicaloptionsintheforundedactable +
ThresholdAdaptiveProcessor(12_12)0,6ms62,1%2,07`null`forforforforforonlinemonitorindefinedisplayformenuinmenu`null`menuinmonitortheforonlineonlinephysicalpositionintheforundedactable
ThresholdProcessor(30%)0,9ms62,1%1,90`null`tontontiontiontiononlinebottomcancelonlinetionforhelpinleft`null`menuinmonitortheokonlineoptianscanceltionnightthetonundedactable -
ThresholdAdaptiveProcessor(08_08)0,4ms69,0%2,41`null`cacacacacaonlinemonitorcadefinedisplaygotheinmenu`null`menucamonitorcacaonlineoptionsphysicaloptionsgothegodefine -
ThresholdAdaptiveProcessor(18_18)0,5ms72,4%2,45`null`monmonmonmonmonnamemonnamedefinehelpforhelpmonhelp`null`mon`null`monnamemondefineoptionsphysicalpositionmonmonmonundedactable -
ThresholdAdaptiveProcessor(22_22)1,8ms75,9%2,76`null`okokhelphelphelpdefinemonitorcanceldefinehelpokhelpokhelp`null`helpokmonitorhelpokdefinepositionphysicalpositionhelphelpokphysical +
ThresholdAdaptiveProcessor(08_08)0,6ms69,0%2,41`null`cacacacacaonlinemonitorcadefinedisplaygotheinmenu`null`menucamonitorcacaonlineoptionsphysicaloptionsgothegodefine
ThresholdAdaptiveProcessor(16_16)0,5ms79,3%2,86`null`forforforforfordefinemonitorfordefinedefineforfor`null`for`null`for`null`monitorforfordefinepositionphysicalpositionforforforundedactable
AutoThresholdProcessor(Triangle)0,9ms79,3%2,83`null`letletletletletlettopmatteronlineletforletmalet`null`menumapositionmamaonlineoptipositionpositionrichtthetoplet -
ThresholdAdaptiveProcessor(20_20)0,6ms82,8%2,90`null`tostostostostosdefinetoscanceldefinetostostosmmtos`null`mmmmmonitormmtosdefinetosphysicalpositiontostostosphysical -
ThresholdAdaptiveProcessor(14_14)1,9ms82,8%3,03`null`forforforforfordefinemonitorfordefinephysicalforfor`null`for`null`for`null`monitorforfordefinedefinephysicalmonitorforforforundedactable -
ThresholdAdaptiveProcessor(10_10)0,4ms89,7%3,48`null``null``null``null``null``null`definemonitordefinedefinedefine`null``null``null`define`null`define`null`monitor`null``null`definedefinephysicalmonitor`null``null``null`define -
ThresholdProcessor(90%)0,9ms93,1%3,83`null``null``null`menumenumenumenuoptionsmenumenumenu`null`menu`null`menu`null`menu`null`menumenu`null`optionsoptionsoptionsoptionsmenu`null``null`menu -
ThresholdAdaptiveProcessor(06_06)1,0ms96,6%3,93`null`lealealealealeadefinedefineleadefinedefinelealea`null`lea`null`lea`null`definelea`null`definedefinedefinedefinelealealeadefine -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(04_04)0,5ms100,0%3,97`null``null``null``null``null``null`detinedetinedetinedetinedetine`null``null``null``null``null`detine`null`detine`null``null`detinedetinedetinedetine`null``null``null`detine -
ThresholdProcessor(10%)0,8ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Kapur)1,0ms100,0%4,48`null`cocococo43cococococococococo`null`cococococococococococococo -
ThresholdProcessor(20%)1,9ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)2,7ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)22,4ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(20_20)0,9ms82,8%2,90`null`tostostostostosdefinetoscanceldefinetostostosmmtos`null`mmmmmonitormmtosdefinetosphysicalpositiontostostosphysical +
AutoThresholdProcessor(Kapur)0,8ms100,0%4,48`null`cocococo43cococococococococo`null`cococococococococococococo +
ThresholdProcessor(20%)0,9ms100,0%4,83`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%3,97`null``null``null``null``null``null`detinedetinedetinedetinedetine`null``null``null``null``null`detine`null`detine`null``null`detinedetinedetinedetine`null``null``null`detine

*Comparison data generated based on 29 tagged words.*

editor_startpage_project-exist_001

ProcessorElapsedWERCER (avg)Imageaandanythingapplicationarebackbasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednextnotofparameterspointsprocessesprojectprojectspropertiesrprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour -
ThresholdProcessor(40%)1,5ms13,2%0,18`null`andanythingapplicationaredatabasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneedneednotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwebecausewhatworkyouyour -
AutoThresholdProcessor(OTSU)0,9ms15,8%0,17`null`andanythingapplicationareeasybasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednotnotofparameterspointsprocessesprojectprojectspropertesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwelowhatworkyouyour -
ThresholdProcessor(50%)0,8ms19,7%0,22`null`andanythingapplicationarebastcbastcbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowitinincorporateintointroducingtsitmakeneednotnotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwelowhatworkyouyour +
ThresholdProcessor(40%)0,9ms13,2%0,18`null`andanythingapplicationaredatabasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneedneednotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwebecausewhatworkyouyour +
AutoThresholdProcessor(OTSU)1,1ms15,8%0,17`null`andanythingapplicationareeasybasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednotnotofparameterspointsprocessesprojectprojectspropertesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwelowhatworkyouyour +
ThresholdProcessor(50%)0,7ms19,7%0,22`null`andanythingapplicationarebastcbastcbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowitinincorporateintointroducingtsitmakeneednotnotofparameterspointsprocessesprojectprojectsproperbesprojectscreenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwelowhatworkyouyour
ThresholdProcessor(30%)0,9ms19,7%0,26`null`andanythingapplicationareeasybasicbecausebeencanchapterscompileconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontexecutiongenerallyhashowifinincorporateintointroducingijitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolframevisualizationwantwewelcomewhatworkyouyour -
AutoThresholdProcessor(Kapur)1,0ms21,1%0,28`null`andanythingapplicationareeasybasicbecausebeencanchapterscompleconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectiongenerallyhashowifinincorporateintointroducing'sitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolframevisualizationwantwewelcomewhatworkyouyour +
AutoThresholdProcessor(Kapur)1,1ms21,1%0,28`null`andanythingapplicationareeasybasicbecausebeencanchapterscompleconfiguredconfiguringconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectiongenerallyhashowifinincorporateintointroducing'sitmakeneedneednotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolframevisualizationwantwewelcomewhatworkyouyour
ThresholdProcessor(60%)0,8ms27,6%0,32`null`andanythingapplicationarecybasicbecausebeencanchapterscompileconfiguredconfiguitngconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowininincorporateintointroducing1sitınakeneedneednotofparameterspointsprocessesprojectprojectspropectprojectscreenseeservicesettingstartstepsstudiothethemthenthistotovariablevisualizationwantweenginewhatworkyouyour -
ThresholdAdaptiveProcessor(22_22)0,5ms30,3%0,21`null`andanythingapplicationarerandbasicbecausebeencanchapterscompileconfiguredconfiguringfunctioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfistfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisismakeneednenotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour -
ThresholdProcessor(20%)1,0ms31,6%0,86`null`andengineapplicationareeasybasiceasybeencanchapterscompileconfiguredconfiguringconnectiontoolcreatedataistodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectioneasyhashowifinincorporateintoiniroducingisitmakeneedneeditofchapterspointsprojectsprojectprojectsprojectsprojectseeseeserviceenginestartstepsstudiothethenthenthistotoolarevisualizationwantwewelcomewhatworkyouyour -
ThresholdAdaptiveProcessor(18_18)0,5ms32,9%0,51`null`andanythingapplicationweeasyeasybecausebeencanchapterscontroconfiguredconfiguringexecutioncontrocreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforfrstfrontexecutiongenerallyhashowifinincorporateintoineeringisftmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstartstepsstudiothethemthenistotoolvariablevisualizationwantwewelcomewhatworkyouyour -
ThresholdAdaptiveProcessor(20_20)0,6ms32,9%0,30`null`andanythingapplicationarebackbasicbecausebeencanchapterscompteconfiguredconfiguringcontrolcontrolcreatedataiododrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontexecutiongenerallyhashowifinincorporateintointroducingisiomakeneednextnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstatstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour -
ThresholdAdaptiveProcessor(12_12)0,5ms34,2%0,49`null`andanythingfunctionareatabasicbecausebeencanchaptersapplconfiguredconfiguringfunctioncontrolcreatedatadtalogsdodrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontfunctiongenerallyhashowifinincorporateintointroducingititmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewantworkyouyour -
ThresholdAdaptiveProcessor(14_14)0,4ms35,5%0,57`null`andanythingvisualizationarebandbasicbecausebeencanchaptersineconfiguredconfiguringfunctioncontrocreatedataintodorivereasyendengineengineeringexecutionfirstfollowingforarefontfunctiongenerallyhashowifinincorporateintointroducingksifmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstudstepsstudiothethemthemthistotoolarevisualizationwantwewelcomewhatworkyouyour -
ThresholdAdaptiveProcessor(10_10)0,4ms36,8%0,45`null`andanythingappliaredatabasicbecausebeencancreatecompleconfiguredconfiguringfunctioncontrocreatedatadialogsdoframeeasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongenerallyhashowifinincorporateintointroducingisitmakeneednextnotofparameterspointsprocessesprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolvariablevisualizationwantwemewhatworkyouyour -
ThresholdAdaptiveProcessor(16_16)0,4ms36,8%0,51aeandanythingapplicationareaebasicbecausebeencanchapterscreateconfiguredconfiguringconnectiontoolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforaefrontfunctioneasyhashowifinincorporateintointroducingisitmakeneedneedunatofparameterspointsprojetsprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour -
ThresholdProcessor(10%)0,9ms36,8%1,16`null`andthisapplicationarebeenbasiceasybeencanchapterstoolconfiguredconfiguringapplicationtoolcreatedatainkotoareeasyendengineengineeringapplicationfirstfollowingforarefrontinkoeasyhashowifinincorporateinkointroducingisismakeneedneedhowofchapterspointsprocessesprojectprojectsprocessesprojectseeseeserviceservicestartstepsstudiothethenthenthistotoolarevisualizationwantwewelcomewhatworkyouyour -
ThresholdAdaptiveProcessor(24_24)1,9ms38,2%0,66aaandanythingvisualizationareastbasicbecausebeenenchaptersengineconfiguredconfiguringconnectioncontrolcreateaadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongeneraltyhasfoifincreateintheintroducingififmakeneednotnotofparametersfrontprocessesprojectprojectspropertiesprojectseeseeenginesettingaststepsstudiothethemthenthistotootvariablevisualizationwantwewelcomewhatworkyouyour -
ThresholdProcessor(70%)1,0ms46,1%0,51`null`andanythingapplicationarebackbasicbecausedeencanchaptersconiplecont-quredconfguungconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollawingforframefrontfunctiongenerallyhashowitinincorperateinteintroducingtsitareneednextentofchapterspointsprocessesprojectproyectspropericsprojectscreenseeservicesettingstartstepsstudiothethenthentstotoolvariablevisualizationentwebecausewhatworkyouyour -
ThresholdAdaptiveProcessor(06_06)1,0ms50,0%0,89`null`andsettingapplicationarewantbasicbecauseseecancreatecorpconfiguringconfiguringgonnectioncontrolcreatedatadialogsioiehasendendiweengineeringexecutionisfollowingforcreatefrontexecutiongenerallyhasioieinincorporateintointroducingisiemakeneedneneofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingwantstepsstudiothethemthenthistotorcreatevisualizationwantwecoewhatworkyouyour -
ThresholdAdaptiveProcessor(08_08)0,4ms61,8%1,64`null`endthisvisualizationaredatabasiccreateneedcanchapterscolconfiguringconfiguringgonnectioncolcreatedatadatatoaredataendendengineeringexezutionforfollowingforcreateforgonnectiongreatehowhowininincorporateintointroducingininmakeneedneedforforchapterspointsprojedisprojectprojectprojedisprojectcreateweserviceservicewantstepsstudiothethethethistocolcreatevisualizationwantwewewhatworkyouyour -
AutoThresholdProcessor(Triangle)1,0ms80,3%3,13`null`andtentfiatmalemaleeasyeasyhewantwhatmaleyourengineeringenginecsingtentmalemalemaletoendereasyandenderengineeringstudiofirstwantformaletenttentenderheheininmaleinenginecsingininmalehetentforhestepstentendertenttenttenttentstepshestudiotenttentstepsstudiothethethethetotomalestudiowantwewelcomewhatworkyouryour -
ThresholdProcessor(80%)1,8ms81,6%2,82caandatefunctionatebackbackateatecaateappleconnectionconnectionconnectiontalcreateatetalctdriverateandihedriverexecutionfirstwiezurframeframefunctionwalltalateiheihecreateatestudsihectatenextnextctctframestudscreatectcreatecreateapplescreenateihestudsstudsstepsstudsthethethethetetalvariablevisualizationwallwiewiewhatzuratezur -
ThresholdProcessor(90%)1,1ms82,9%3,37`null`backfunctionvisualizationframebackbackframenextbackstepscreateconnectionconnectionconnectionfunctioncreatebackdriver`null`driverbacknextdriverdriverexecutionfirstfunctionfirstframeframefunctionframeback`null``null``null`createfirstfunction`null``null`framenextnextnext`null`framedrivercreatedrivercreatecreatedriverscreenstepsdriverstepsstepsstepssteps`null`framestepssteps`null`stepsvariablevisualizationnext`null`framenextback`null`next -
ThresholdAdaptiveProcessor(04_04)0,4ms88,2%3,14`null`endconhguringmiatyouthegataigeleligmiatyouigconhguringconhguringconhguringmiatyougatagatamiatyoutoigelendendengineeringmiatyouforconhguringforrowrowmiatyoueligrowigigincorporatetomtrodvcngigigtheendelofofbasicstepsigprojectprojectprojectprojectprojecteleligigtoeltothethethethetotogatamiatyouendigeltheforyouyou -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%4,68`null`ongongcivatongongcivatcivatongcivatcivatcivatongongcivatongcivatcivatcivat`null`civatongongongongcivatcivatongongcivatongcivatcivatongong`null`ongcivatongong`null``null`ongongcivatongongcivatongcivatcivatcivatcivatcivatcivatongcivatongcivatcivatcivatongongongong`null`ongcivatcivatong`null`ongcivatongongong -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,25aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -
ThresholdProcessor(0%)0,8ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,63`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)0,9ms31,6%0,86`null`andengineapplicationareeasybasiceasybeencanchapterscompileconfiguredconfiguringconnectiontoolcreatedataistodrivereasyendengineengineeringexecutionfirstfollowingforframefrontconnectioneasyhashowifinincorporateintoiniroducingisitmakeneedneeditofchapterspointsprojectsprojectprojectsprojectsprojectseeseeserviceenginestartstepsstudiothethenthenthistotoolarevisualizationwantwewelcomewhatworkyouyour +
ThresholdAdaptiveProcessor(20_20)0,9ms32,9%0,30`null`andanythingapplicationarebackbasicbecausebeencanchapterscompteconfiguredconfiguringcontrolcontrolcreatedataiododrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontexecutiongenerallyhashowifinincorporateintointroducingisiomakeneednextnotofparameterspointsprocessesprojectprojectspropertiesprojectscreenseeservicesettingstatstepsstudiothethemthenthistotoolvariablevisualizationwantwewelcomewhatworkyouyour +
ThresholdAdaptiveProcessor(12_12)0,6ms34,2%0,49`null`andanythingfunctionareatabasicbecausebeencanchaptersapplconfiguredconfiguringfunctioncontrolcreatedatadtalogsdodrivereasyendengineengineeringexecutionfirstfollowingforcreatefrontfunctiongenerallyhashowifinincorporateintointroducingititmakeneednotnotofparameterspointsprocessesprojectprojectspropertiesprojectseeseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewantworkyouyour +
ThresholdAdaptiveProcessor(16_16)0,5ms36,8%0,51aeandanythingapplicationareaebasicbecausebeencanchapterscreateconfiguredconfiguringconnectiontoolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforaefrontfunctioneasyhashowifinincorporateintointroducingisitmakeneedneedunatofparameterspointsprojetsprojectprojectspropertiesprojectbeenseeservicesettingstartstepsstudiothethemthenthistotoolcreatevisualizationwantwewelcomewhatworkyouyour +
ThresholdAdaptiveProcessor(24_24)0,4ms38,2%0,66aaandanythingvisualizationareastbasicbecausebeenenchaptersengineconfiguredconfiguringconnectioncontrolcreateaadialogsdodrivereasyendengineengineeringexecutionfirstfollowingforframefrontfunctiongeneraltyhasfoifincreateintheintroducingififmakeneednotnotofparametersfrontprocessesprojectprojectspropertiesprojectseeseeenginesettingaststepsstudiothethemthenthistotootvariablevisualizationwantwewelcomewhatworkyouyour +
ThresholdProcessor(70%)0,9ms46,1%0,51`null`andanythingapplicationarebackbasicbecausedeencanchaptersconiplecont-quredconfguungconnectioncontrolcreatedatadialogsdodrivereasyendengineengineeringexecutionfirstfollawingforframefrontfunctiongenerallyhashowitinincorperateinteintroducingtsitareneednextentofchapterspointsprocessesprojectproyectspropericsprojectscreenseeservicesettingstartstepsstudiothethenthentstotoolvariablevisualizationentwebecausewhatworkyouyour +
ThresholdAdaptiveProcessor(08_08)0,6ms61,8%1,64`null`endthisvisualizationaredatabasiccreateneedcanchapterscolconfiguringconfiguringgonnectioncolcreatedatadatatoaredataendendengineeringexezutionforfollowingforcreateforgonnectiongreatehowhowininincorporateintointroducingininmakeneedneedforforchapterspointsprojedisprojectprojectprojedisprojectcreateweserviceservicewantstepsstudiothethethethistocolcreatevisualizationwantwewewhatworkyouyour +
AutoThresholdProcessor(Triangle)0,9ms80,3%3,13`null`andtentfiatmalemaleeasyeasyhewantwhatmaleyourengineeringenginecsingtentmalemalemaletoendereasyandenderengineeringstudiofirstwantformaletenttentenderheheininmaleinenginecsingininmalehetentforhestepstentendertenttenttenttentstepshestudiotenttentstepsstudiothethethethetotomalestudiowantwewelcomewhatworkyouryour +
ThresholdProcessor(80%)0,8ms81,6%2,82caandatefunctionatebackbackateatecaateappleconnectionconnectionconnectiontalcreateatetalctdriverateandihedriverexecutionfirstwiezurframeframefunctionwalltalateiheihecreateatestudsihectatenextnextctctframestudscreatectcreatecreateapplescreenateihestudsstudsstepsstudsthethethethetetalvariablevisualizationwallwiewiewhatzuratezur +
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%3,14`null`endconhguringmiatyouthegataigeleligmiatyouigconhguringconhguringconhguringmiatyougatagatamiatyoutoigelendendengineeringmiatyouforconhguringforrowrowmiatyoueligrowigigincorporatetomtrodvcngigigtheendelofofbasicstepsigprojectprojectprojectprojectprojecteleligigtoeltothethethethetotogatamiatyouendigeltheforyouyou

*Comparison data generated based on 76 tagged words.*

editor_windows_position_006

ProcessorElapsedWERCER (avg)Image100aactivatestartupscreenalsoandbriefCEcontrolcrossdependeddisplayedDOKUeachediteditionelementeenergyetcfilefilterfilteredforfromfunctionshelphistorianinformationisitslanguagelinklistloadnameneedednetworkononlineoptionsotheroutputprojectpropertiespropertyproperyprovidedreadyrecipesreferencereportscreensselectshowsstandardstarttextthetimetotopologytotaltreevaluevariablesVBAVSTAwelcomewhatwindowwindowsyouzenon -
ThresholdProcessor(20%)1,0ms55,6%1,64ooiafitteredalsoandbriefoocerscersdependeddisplayedcerseachediteditionselectenergyetcfiefiefitteredforfromoptionshelpfitteredinformationistslanguagelinklinkoonameneadedcersononlineoptionsotherotherprojectpropertiespropertypropertyprovidedreadyrepltreereplcersselectshowsstandardsrcersthefietooptionstotreevaluevalueoocerswelcomewhatwindowwindowyouzenon +
ThresholdProcessor(20%)0,9ms55,6%1,64ooiafitteredalsoandbriefoocerscersdependeddisplayedcerseachediteditionselectenergyetcfiefiefitteredforfromoptionshelpfitteredinformationistslanguagelinklinkoonameneadedcersononlineoptionsotherotherprojectpropertiespropertypropertyprovidedreadyrepltreereplcersselectshowsstandardsrcersthefietooptionstotreevaluevalueoocerswelcomewhatwindowwindowyouzenon
ThresholdProcessor(30%)0,9ms58,3%1,38ke`null`screensalsoandbriefkecortocrowedependeddisplayedfraneachediteditionselectenergyetcfilefilefileforfromoptionshelpfraninformationisitelanguagelinklinkloadnameneededhetwarkononlineoptionsotherstatprojectpropertiespropertypropertyprovidedreplracpesfranreportscreensselectshowsstandardstatkethetmetotopologystattreevalueracpeskefranwewhatwindowwindowyouzenon -
ThresholdProcessor(10%)0,9ms59,7%1,861s`null`filteredalsoandbrief_ywindowproneededfilteredadseachediteditionselectenergyatefeefilteredfilteredforfromoptionshelpstanedition1sitsvaluelinklinkadsnameneededreportononlingoptionsotherotherprojectpropertypropertypropertypromdedreadyrepcfeereportscreensselectshowsstandardstanfeetheihetooptionsstantreevaluebriefadsadswelcomewhatwindowwindowyouzenon -
AutoThresholdProcessor(Kapur)1,0ms59,7%1,3100k`null`filteredalsoandbriefooooproydependeddisplayedbateachediteditionselectenergyetcflefilteredfilteredforfromfunctonshelpfilteredinformationisitslanguagelinklinkloadnameneededhetwarkononlineoptionsotherstatprosectpropertiespropertypropertyprovidedreereereereportscreensselectshowsstandardstatbatthetmetotopologygrotalreevaluebriefbatbatweicomewhatwindowswindowsyouzenon -
ThresholdProcessor(40%)1,5ms62,5%1,76fiearfiltereditoancbriefswcotcotdependeddependedfieeacheditediteteeteetefilefilefilteredforfromfurcbonshelpitoinformationisitolanguagefieisloadnameneedednetworkonfieitootherotherprojectpropertiespropertypropertyprovectreplreplscreens'report'screensselectshowsstandardareditthetimetotapatogytotaltreevaluefilefiefiewelcomewhatwindowwindowsyouzenon -
ThresholdAdaptiveProcessor(18_18)0,5ms70,8%2,68vbaiaisthealsoandbettcothorfromdependeddependedvbaeachwhatothordependedonlinetciteiteistheforfromonlinehelpistheothorisisnamenkisoadnameneededothorononlineothorothorothorprojectpropertypropertypropertyneededeachonlineneededreportshowshelpshowsstandardwhatbettheitetoothortothethevaluevaluevbavbaonlinewhatandshowsyouon -
ThresholdAdaptiveProcessor(20_20)0,6ms76,4%2,82oneiainformationaseandietsonethowsneededieoneeachieononeonetsieieneededfrfrthowshelpinformationinformationistsvalueoneisloadnameneededthorononethowsthoroneprojectpropertiespropertypropertyneededloadiereportreportonereportthowsstandardwhattetheietothortothetevaluevalueoneoneonewhatandthowsyouon -
ThresholdProcessor(0%)0,8ms83,3%2,99fafascreenstesanconeffaonefprojadedadedonefsachieeditienarlıneenergyateiheiheihefaprojscreenshelpsianopticaieiheaneiheihefaateadedreportonarlıneopticatheopticaprojpropertypropertyproperyprojreacyihescreensreportscreenssachsomsansantestheihetoprojtotesvaluearlınefaonefwelcomewhatvercowvercowsomzenon -
ThresholdProcessor(50%)0,8ms90,3%3,61we`null`properyaseasewewetotalookwelcomeproperyweaseioioselectproperywewefrproperyfrfrwelcomehelptotalookioioandtheookioloadumewewelcomeweandtheookweookprojectproperyproperyproperyproperyloadwelcomeselect'report'selectselectweandthefrweweumeiototaltotalweueasewewewelcomeweiowelcomeookwe -
ThresholdAdaptiveProcessor(12_12)0,5ms91,7%3,83rmxvatreermxrmxbetvatreecrosstreemanagerrmxvabetbetbetrmxbettreebettreermxrmxcrosshelptreermxvarmxmanagerrmxbetvarmxtreebetvatreecrosstreeoutputprojectpropertypropertypropertypropertyrmxtreetreebettreebetcrossmanagerbetbettreetreevapropertybettreevamanagerrmxrmxhelpbetrmxcrossrmxbet +
AutoThresholdProcessor(Kapur)1,1ms59,7%1,3100k`null`filteredalsoandbriefooooproydependeddisplayedbateachediteditionselectenergyetcflefilteredfilteredforfromfunctonshelpfilteredinformationisitslanguagelinklinkloadnameneededhetwarkononlineoptionsotherstatprosectpropertiespropertypropertyprovidedreereereereportscreensselectshowsstandardstatbatthetmetotopologygrotalreevaluebriefbatbatweicomewhatwindowswindowsyouzenon +
ThresholdProcessor(40%)0,9ms62,5%1,76fiearfiltereditoancbriefswcotcotdependeddependedfieeacheditediteteeteetefilefilefilteredforfromfurcbonshelpitoinformationisitolanguagefieisloadnameneedednetworkonfieitootherotherprojectpropertiespropertypropertyprovectreplreplscreens'report'screensselectshowsstandardareditthetimetotapatogytotaltreevaluefilefiefiewelcomewhatwindowwindowsyouzenon +
ThresholdAdaptiveProcessor(20_20)0,9ms76,4%2,82oneiainformationaseandietsonethowsneededieoneeachieononeonetsieieneededfrfrthowshelpinformationinformationistsvalueoneisloadnameneededthorononethowsthoroneprojectpropertiespropertypropertyneededloadiereportreportonereportthowsstandardwhattetheietothortothetevaluevalueoneoneonewhatandthowsyouon +
ThresholdProcessor(50%)0,7ms90,3%3,61we`null`properyaseasewewetotalookwelcomeproperyweaseioioselectproperywewefrproperyfrfrwelcomehelptotalookioioandtheookioloadumewewelcomeweandtheookweookprojectproperyproperyproperyproperyloadwelcomeselect'report'selectselectweandthefrweweumeiototaltotalweueasewewewelcomeweiowelcomeookwe +
ThresholdAdaptiveProcessor(12_12)0,6ms91,7%3,83rmxvatreermxrmxbetvatreecrosstreemanagerrmxvabetbetbetrmxbettreebettreermxrmxcrosshelptreermxvarmxmanagerrmxbetvarmxtreebetvatreecrosstreeoutputprojectpropertypropertypropertypropertyrmxtreetreebettreebetcrossmanagerbetbettreetreevapropertybettreevamanagerrmxrmxhelpbetrmxcrossrmxbet
ThresholdProcessor(60%)0,8ms93,1%4,07`null``null`prajectloadloadload`null`windowloadwindowloadloadloadloadwindowprajectpropertyhelphelploadloadloadloadgutauthelploadload`null``null`mansgerloadloadloadloadloadload`null`loadloadhelpgutautprojectpropertypropertypropertypropertyloadhelpprajectpropertyprajectprajectloadloadgutauthelphelpload`null`loadloadloadhelppraject`null`loadloadloadwindowwindowloadwindow -
ThresholdAdaptiveProcessor(10_10)0,4ms94,4%3,82li`null`dienenliomdtreelitreeomddienendienenlilaklidienendienenenergylilidienendienenliomdnipiniohedienennipiniolilimanigerlililoadomdsexeomdlililiheomdprojectprojectprojectprojectprojéctloadsexedienenomdtreesexeomdmanigersexesexehetreeliloadloadtreelimanigerliliomdhelililidienen -
AutoThresholdProcessor(OTSU)0,9ms94,4%4,08`null``null`marsgerleadleadlead`null`window'dokuleadleadleadleadleadwindowleadleadleadhelpleadlead`null`leadwindowhelpwindowwindow`null``null`leadleadleadleadleadleadlead`null`lead'dokuhelp'dokuprojectpropertypropertypropertyprojectleadhelpprojectpropertyleadlead'dokuleadleadleadhelplead`null`propertyleadleadhelpmarsger`null`leadwindowleadwindowwindow'dokulead -
AutoThresholdProcessor(Triangle)1,0ms95,8%4,29nm`null`'report'nmnmnmnmtotalooknmprajectnmnmnmookprojectnmnmnmtotalloadooknmnmnmtotalnmnmnmloadnmloadloadnmnmooknmnmookookookprojectprojectprojectprojectprojectload'report'project'report'nmprojectooktotaltotalnmnmnmnmtotaltotalnmnmtotalnmnmloadloadnmnmooknm -
ThresholdProcessor(70%)1,0ms95,8%4,14mor`null`reportsgermorsger`null`mormorreportsgersgersgersgermorreportsgermornelpsgersgermormormornelpsgerreport`null`morloadloadloadloadnelpnelpreportmorloadmorsgernelpprojectprojectprojectprojectprojectloadnelpreportreportsgersgersgersgersgernelpsgersgermorloadloadsgernelpsgermorsgerloadloadmormormormor -
ThresholdProcessor(90%)1,1ms95,8%4,42`null``null`reportloadloadprojece`null`reportloadreportloadloadloadreportreportreportreport`null`loadloadprojeceloadloadreportloadreportreport`null``null`loadloadloadloadloadreportreport`null`loadreportreportreportprojectprojeceprojectprojeceprojeceloadreportreportreportreportreportloadloadreportreport`null`load`null`reportloadprojeceloadprojece`null`loadreportloadloadreportloadreport -
ThresholdAdaptiveProcessor(02_02)0,5ms97,2%4,18auaupropertiesauaueeaureportaureportlidauaueeeereporteeeeeeeeeeauaupropertieseereportpropertiesauauaulidlidlidaueereportaulidpropertieseeaupropertiespropertiespropertiespropertiespropertiesaureportreportreporteereportauauaueeeeeeaureportaueeaupropertiesauaureportaulidlidaureport -
ThresholdAdaptiveProcessor(06_06)1,0ms97,2%4,61vw`null`editionvwvwvwvweditionvwreferenceditionvwvweditioneditionreferencenergyvwvwvwreferencvwvweditionvweditioneditionvwvwenergyvwvwvwvwreferencvwvwenergyeditionvwvwvwreferencenergyenergyvwenergyreferencreferencreferencreferencenergyvwenergyvwvwvwvwvwenergyvwvwvwvwvwvwenergyvwvwvwvwvw -
ThresholdAdaptiveProcessor(04_04)0,4ms98,6%4,89`null``null`maneger`null``null`project`null`manegerprojectmanegerproject`null``null``null`projectprojectmaneger`null``null`manegermaneger`null``null`maneger`null`projectproject`null``null`maneger`null``null``null``null`manegermaneger`null`manegerprojectmanegerprojectprojectprojectprojectprojectproject`null`manegerprojectprojectprojectproject`null`maneger`null``null``null``null``null`project`null``null`manegermaneger`null``null`project`null`manegermaneger`null``null` -
ThresholdAdaptiveProcessor(08_08)0,4ms98,6%4,25iiaumanageauauiiiimanageiimanegemanageiiauiiiimanagemanegeeeiiiimanegeiiiimanageeeiimanageiiiimanageiiiiaumanageeeeeiimanageiieeauprojectprojectprojectprojectprojectaueemanegeprojecteeprojectiimanageaueeeeiiiimanageaueeaumanageiiiieeaumanagemanageauee -
ThresholdAdaptiveProcessor(14_14)0,4ms100,0%4,83svx`null`ginoginoindgino`null`ginoginoindindginoginoginoginoginoindsvxginoginoindsvxginoginoginoginoginoindindginoginoginoindginoindginoindginoginoginoginoginoginoginoginoindindginoginoginoginosvxsvxindsvxsvxsvxgino`null`ginoginoginoginoginosvxginoginoginoginoginosvxgino -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%4,398x`null`croswlsnnre8xcroscrosnnwls8xcy8xnnnnnn8xwlswlsre8xcroscroswlsnnnn8xwlsnnnnwlsdokunnnnnnnnnncrosredokurecrosrererererererecroswlscrosnnre8xrere8xwlsdokurewlswls8x8xwlswlsnnwlsdokunn -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,71`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%4,2404auavedaauauenughothotenavedaugauhotenenenenpueererhothotunghothothotugugugenhothotmyavedapeorenenpeorerpuehotpeorpeorpeorprmyenenpeorenhothotavedahothotpuemygopeorhotenauauugugpeorhothothothoten -
ThresholdProcessor(100%)0,9ms100,0%5,71`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(80%)1,8ms100,0%5,71`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(24_24)1,9ms100,0%4,3610300uadiasouareuajonyousdiadiauauadiadiajondoyuadiadiaresosojonresojonuauauadiasouauadiasojondiajonreoureyousdoydoyrerererereresosouauarerediasodoyuareuadiauauasouadoyyousyousjon +
AutoThresholdProcessor(OTSU)1,1ms94,4%4,08`null``null`marsgerleadleadlead`null`window'dokuleadleadleadleadleadwindowleadleadleadhelpleadlead`null`leadwindowhelpwindowwindow`null``null`leadleadleadleadleadleadlead`null`lead'dokuhelp'dokuprojectpropertypropertypropertyprojectleadhelpprojectpropertyleadlead'dokuleadleadleadhelplead`null`propertyleadleadhelpmarsger`null`leadwindowleadwindowwindow'dokulead +
AutoThresholdProcessor(Triangle)0,9ms95,8%4,29nm`null`'report'nmnmnmnmtotalooknmprajectnmnmnmookprojectnmnmnmtotalloadooknmnmnmtotalnmnmnmloadnmloadloadnmnmooknmnmookookookprojectprojectprojectprojectprojectload'report'project'report'nmprojectooktotaltotalnmnmnmnmtotaltotalnmnmtotalnmnmloadloadnmnmooknm +
ThresholdProcessor(70%)0,9ms95,8%4,14mor`null`reportsgermorsger`null`mormorreportsgersgersgersgermorreportsgermornelpsgersgermormormornelpsgerreport`null`morloadloadloadloadnelpnelpreportmorloadmorsgernelpprojectprojectprojectprojectprojectloadnelpreportreportsgersgersgersgersgernelpsgersgermorloadloadsgernelpsgermorsgerloadloadmormormormor +
ThresholdAdaptiveProcessor(08_08)0,6ms98,6%4,25iiaumanageauauiiiimanageiimanegemanageiiauiiiimanagemanegeeeiiiimanegeiiiimanageeeiimanageiiiimanageiiiiaumanageeeeeiimanageiieeauprojectprojectprojectprojectprojectaueemanegeprojecteeprojectiimanageaueeeeiiiimanageaueeaumanageiiiieeaumanagemanageauee +
ThresholdAdaptiveProcessor(04_04)1,4ms98,6%4,89`null``null`maneger`null``null`project`null`manegerprojectmanegerproject`null``null``null`projectprojectmaneger`null``null`manegermaneger`null``null`maneger`null`projectproject`null``null`maneger`null``null``null``null`manegermaneger`null`manegerprojectmanegerprojectprojectprojectprojectprojectproject`null`manegerprojectprojectprojectproject`null`maneger`null``null``null``null``null`project`null``null`manegermaneger`null``null`project`null`manegermaneger`null``null` +
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%4,3610300uadiasouareuajonyousdiadiauauadiadiajondoyuadiadiaresosojonresojonuauauadiasouauadiasojondiajonreoureyousdoydoyrerererereresosouauarerediasodoyuareuadiauauasouadoyyousyousjon +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%4,398x`null`croswlsnnre8xcroscrosnnwls8xcy8xnnnnnn8xwlswlsre8xcroscroswlsnnnn8xwlsnnnnwlsdokunnnnnnnnnncrosredokurecrosrererererererecroswlscrosnnre8xrere8xwlsdokurewlswls8x8xwlswlsnnwlsdokunn +
ThresholdProcessor(80%)0,8ms100,0%5,71`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 72 tagged words.*

etm_gantt_runtime_001

ProcessorElapsedWERCER (avg)ImageactiveaxisclipboardcolorcontinuecopycursorcurvedeletediagramexportfilterimportnameoffonplayprintprofilesrefreshrezoomsavvesettingsstoptexttitletotrendWIZ_VAR_10WIZ_VAR_11WIZ_VAR_12WIZ10zoom -
ThresholdProcessor(50%)0,8ms81,8%2,85talettclipboardcursorsettingscopycursorcursortalereroamexporttaleexportnamettttlagtrendtalereroamreroamtalesettingstotttaletotrend10101010zoom +
ThresholdProcessor(50%)0,7ms81,8%2,85talettclipboardcursorsettingscopycursorcursortalereroamexporttaleexportnamettttlagtrendtalereroamreroamtalesettingstotttaletotrend10101010zoom
ThresholdProcessor(30%)0,9ms87,9%2,45tileiaclipboardcolortilecopycursorcunetileacımmexporttileimportsavevazcovazpoettiletrendzoomsavesetungstotiletitletotrendwu_var_11wu_var_11wu_var_1110zoom -
ThresholdProcessor(10%)0,9ms90,9%2,88cureiachipboardzoomsettingscopycursercureteleiaexportleexportsave1010leiarefreshrefreshzoomsavesettingszoomteletele10tele10101010zoom -
AutoThresholdProcessor(Kapur)1,0ms90,9%3,21tifinexportcrtuecopycrcrweegmexportfinimponnamecrcrqafinfinweevazionamesettingstoweetitotrendwuz_var_10wuz_var_10wuz_var_1010cum -
ThresholdProcessor(20%)1,0ms90,9%2,48acineacineclipboardoostopcontinuecopycursorcuretileitaexporttileimportnamefoooitaacinerefreshrefreshzoomsavesetiingstotiletiletocure10101010zoom -
ThresholdProcessor(70%)1,0ms93,9%4,61wiswiswis17wis17wis17trendwis17wis1717171717trendprofilesprofilestrend17wis17trendwis17trend1017171017 -
AutoThresholdProcessor(OTSU)0,9ms97,0%4,79wiswiswiswiswiswiswiswistrendwiswiswiswiswiswis10wistrendwistrendtrendwiswiswistrendwis10trend10101010wis -
ThresholdProcessor(40%)1,5ms97,0%2,76activeyaxisclipboardcoloractivecopycolorcunewelziaexportcolorexportnameototiapontactivetrendotsesetoottaletotrendwiz_var_10wiz_var_12wiz_var_1210ot -
ThresholdProcessor(80%)1,8ms97,0%3,94tileletcolorcolortilecolorcolorgeeletgeecolortilecolorgeelet18letlettilegeeletgeeletlettexttile18text10181810color -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(08_08)0,4ms100,0%5,27ftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftft -
ThresholdAdaptiveProcessor(10_10)0,4ms100,0%4,55mvmmflerflertertmmtertmvtertvartertflertertmmmmmmflertertflertertmmmvtertmmterttertmmtertmmmmmmmmmm -
ThresholdAdaptiveProcessor(14_14)0,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%4,94oeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoeoe -
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%4,55faesssfaetottottotsssfaefaefaetotfaetotfaefaetotfaetotfaefaetotfaessstottottottotfaefaefaefaefaetot -
ThresholdAdaptiveProcessor(18_18)0,5ms100,0%5,36namnamnamnamnamnamnamnamnamnamnamnamnamnamnam`null`namnamnamnamnamnamnamnamnamnam`null`namnamnamnamnamnam -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(20_20)0,6ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%4,48otototototototleeleeototleeotleeototleeotleeleeotleeotototleotlee10102210ot +
ThresholdProcessor(20%)0,9ms90,9%2,48acineacineclipboardoostopcontinuecopycursorcuretileitaexporttileimportnamefoooitaacinerefreshrefreshzoomsavesetiingstotiletiletocure10101010zoom +
AutoThresholdProcessor(Kapur)1,1ms90,9%3,21tifinexportcrtuecopycrcrweegmexportfinimponnamecrcrqafinfinweevazionamesettingstoweetitotrendwuz_var_10wuz_var_10wuz_var_1010cum +
ThresholdProcessor(70%)0,9ms93,9%4,61wiswiswis17wis17wis17trendwis17wis1717171717trendprofilesprofilestrend17wis17trendwis17trend1017171017 +
ThresholdProcessor(80%)0,8ms97,0%3,94tileletcolorcolortilecolorcolorgeeletgeecolortilecolorgeelet18letlettilegeeletgeeletlettexttile18text10181810color +
ThresholdProcessor(40%)0,9ms97,0%2,76activeyaxisclipboardcoloractivecopycolorcunewelziaexportcolorexportnameototiapontactivetrendotsesetoottaletotrendwiz_var_10wiz_var_12wiz_var_1210ot +
AutoThresholdProcessor(OTSU)1,1ms97,0%4,79wiswiswiswiswiswiswiswistrendwiswiswiswiswiswis10wistrendwistrendtrendwiswiswistrendwis10trend10101010wis +
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%5,27ftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftftft +
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%4,55faesssfaetottottotsssfaefaefaetotfaetotfaefaetotfaetotfaefaetotfaessstottottottotfaefaefaefaefaetot
ThresholdProcessor(60%)0,8ms100,0%3,91cuneaxaxcunecunecunecunecunetalenamaaxtaletwatnamaaxaxaxwintaletrendwaztalewinaxtwattaleaxtrendw_var_10w_var_10w_var_1010ax -
ThresholdProcessor(100%)0,9ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%5,03gee17ged17gee1717geegeegee17gee17gee17171717geegeegeegeegee17geegee17ged1717171717 -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%4,91wiewiewiewiewiewiewiewiewiewieemwieemwiewieemwiewiewiewieemwiewiewieemwieemwiewiewiewiewieem -
ThresholdProcessor(90%)1,1ms100,0%5,24iningd1628in1628162816281628gd1628inin1628gdin1628inin162816281628in16281628ingdgd16281628162816281628 -
ThresholdAdaptiveProcessor(24_24)1,9ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)0,9ms100,0%5,03gee17ged17gee1717geegeegee17gee17gee17171717geegeegeegeegee17geegee17ged1717171717 +
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,73`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 33 tagged words.*

historian_assistent_001

ProcessorElapsedWERCER (avg)Imageaaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizedteditorthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(60%)0,8ms15,1%0,08anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
AutoThresholdProcessor(OTSU)0,9ms15,1%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
ThresholdProcessor(50%)0,8ms17,0%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
AutoThresholdProcessor(OTSU)1,1ms15,1%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
ThresholdProcessor(50%)0,7ms17,0%0,13anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
ThresholdProcessor(80%)0,8ms17,0%0,19anaggregatedanandarchivearchivesassistantaverageanbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou
ThresholdProcessor(30%)0,9ms17,0%0,13anaggregatedanandarchivearchivesassistantaverageanbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
ThresholdProcessor(70%)1,0ms17,0%0,08anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
ThresholdProcessor(40%)1,5ms17,0%0,11anaggregatedanandarchivearchivesassistantaveragebaiebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
ThresholdProcessor(80%)1,8ms17,0%0,19anaggregatedanandarchivearchivesassistantaverageanbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
AutoThresholdProcessor(Kapur)1,0ms18,9%0,25anaggregatedanandarchivearchivesassistantaverageandbasicbecancancertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou -
ThresholdProcessor(20%)1,0ms18,9%0,25ancreateanandarchivearchivesassistantaveragepagebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithyithoutyou -
ThresholdAdaptiveProcessor(18_18)0,5ms28,3%0,85`null`aggregatedandandarchivearchivesassistantcreatewantifbecancancelcertaincreatedatalongerextendedforhelpifinlongermaximumminimumnownowofovertimeperiodpressprocessrecordedrecordingservesumwantsumsummarizededitthethetimetousedusedvaluevalueswantifwithoutyou -
ThresholdAdaptiveProcessor(08_08)0,4ms30,2%0,66anaggregatedanandarchivearchivesassistantoveranbasicbecancancertaintrenddataengineeringextendedforhelpofinlongermaximumminimumedittoofovervalueperiodpressprocessrecordedrecordingserveshouldwantwhesummarizededitthethisthetotrendusedvaluevalueswantwithwithoutyou -
ThresholdAdaptiveProcessor(24_24)1,9ms32,1%0,40anaggregatedanandarchivearchivesassistantaverageanbasicbecancancertaincreatedataengineeringextendedforhelpisinlongermaximumminimumsttoofoverpageperiodprocessprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithyou -
ThresholdProcessor(10%)0,9ms35,8%0,47anaggregatedanandarchivearchiveassistantservewantbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnexttoofovertimeperiodpressprocessrecordedrecordingserveshouldwanttimesummarizededitthethistimetotrendusedvaluevalueswantvithwithgutyou -
ThresholdProcessor(90%)1,1ms35,8%0,70amaggregatedananarchivearchivesassistantaverambasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongeraluetimearctnowofoverpageperiodpresspressrecordedrecordingserveshouldstartamusededitthethistimethtrendusedvaluevaluewantwithwithoutyou -
ThresholdAdaptiveProcessor(22_22)0,5ms37,7%0,68`null`trendcanandarchivearchivesassistantpagepagebasicbecancancelcertainatedataengineeringextendedforhelpififlongermaximumminimumbetoofoverpageperiodpresspressrecordedrecordingserveshouldstartcumsummarizedineditthethistimetotrendtrendvaluevalueswantwithwithoutyou -
AutoThresholdProcessor(Triangle)1,0ms47,2%0,98afaggregaananarchivearchivesassistantserveafbasicbecancancelcancreatedataengineeringextendedforhelpafinlongervaluedinnownowofvalpageperiodpresspressrecordedrecordingserveshouldstartafserveeditthethetimeiotrendusedvaluevaluewantwithwithoutyou -
ThresholdAdaptiveProcessor(14_14)0,4ms49,1%1,43`null`aggregatedinandarchivearchivesstartoverandsumbecancancertaincreatedataingrecordedfortheininlongermaximumminimumbeforofoverpageperiodpreprocessrecordedrecordiservesumstartsumsummarizedperiodthethetimetgpreprevaluevaluesandtgminimumfor -
ThresholdAdaptiveProcessor(12_12)0,5ms56,6%1,77`null`aggregatedinandarchivearchivesincreateandvaluebecancancertaincreatedatalongerrecordedoftheininlongermaximumminimumbeofofovertimeperiodprocessprocessrecordedrecordingoftmevaluetimetimesummarizedperiodthethetimeinandandvaluevaluesandtimeminimumof -
ThresholdAdaptiveProcessor(16_16)0,4ms71,7%2,53`null`aggregatedofanyouarchivearchivesassistantpagebasicbasictheofanpagecreatecreatewithengineeringtheyouhelp`null``null`pagebasicyouhelpyouyouthepageyouhelppagearchivearchivehelpshouldstartyoustartwiththethistheyouthethepagepagewithwithwithyou -
ThresholdAdaptiveProcessor(10_10)0,4ms79,2%2,83`null`archivesofforarchivesarchivestimesoveroverovertheforvaluesserveserveoverrecordingtimesfortheofoflongertimestimesoverforofovertheperiodprocessprocessrecordingrecordingserveoveroverforserveperiodthethetimesfortheovervaluesvaluesoverthethefor -
ThresholdAdaptiveProcessor(02_02)0,5ms96,2%3,85`null`archivelzlzarchivearchivestartarchivestartpaigelzlzpaigestartarchivestartpaigearchivelzlzlzlzpaigepaigepaigestartlzlzstartpaigepaigepaigepaigearchivearchivestartstartstartlzstartstartlzstartpaigelzstartlzpaigepaigestartpaigestartlz -
ThresholdAdaptiveProcessor(04_04)0,4ms98,1%4,02`null`recorded`null`setrecordedrecordedsetsetsetsetsetsetsetsetsetsetsetrecordedsetset`null``null`setsetsetsetset`null`setsetsetsetsetrecordedrecordedsetsetsetsetrecordedsetsetsetset`null`setsetsetsetsetsetsetset -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(20_20)0,6ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%4,08`null`taintaintaintaintaintaintaintaintainpetaintaintaintaintaintaintainpepepetainpetaintainpepepepepepepepepetainpetaintainpetaintainpetaintainpetainpetaintaintaintaintainpe +
ThresholdProcessor(40%)0,9ms17,0%0,11anaggregatedanandarchivearchivesassistantaveragebaiebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
ThresholdProcessor(70%)0,9ms17,0%0,08anaggregatedanandarchivearchivesassistantaveragebackbasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
ThresholdProcessor(20%)0,9ms18,9%0,25ancreateanandarchivearchivesassistantaveragepagebasicbecancancelcertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnextnowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithyithoutyou +
AutoThresholdProcessor(Kapur)1,1ms18,9%0,25anaggregatedanandarchivearchivesassistantaverageandbasicbecancancertaincreatedataengineeringextendedforhelpifinlongermaximumminimumnownowofoverpageperiodpressprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithoutyou +
ThresholdAdaptiveProcessor(08_08)0,6ms30,2%0,66anaggregatedanandarchivearchivesassistantoveranbasicbecancancertaintrenddataengineeringextendedforhelpofinlongermaximumminimumedittoofovervalueperiodpressprocessrecordedrecordingserveshouldwantwhesummarizededitthethisthetotrendusedvaluevalueswantwithwithoutyou +
ThresholdAdaptiveProcessor(24_24)0,4ms32,1%0,40anaggregatedanandarchivearchivesassistantaverageanbasicbecancancertaincreatedataengineeringextendedforhelpisinlongermaximumminimumsttoofoverpageperiodprocessprocessrecordedrecordingserveshouldstartsumsummarizededitthethistimetotrendusedvaluevalueswantwithwithyou +
AutoThresholdProcessor(Triangle)0,9ms47,2%0,98afaggregaananarchivearchivesassistantserveafbasicbecancancelcancreatedataengineeringextendedforhelpafinlongervaluedinnownowofvalpageperiodpresspressrecordedrecordingserveshouldstartafserveeditthethetimeiotrendusedvaluevaluewantwithwithoutyou +
ThresholdAdaptiveProcessor(12_12)0,6ms56,6%1,77`null`aggregatedinandarchivearchivesincreateandvaluebecancancertaincreatedatalongerrecordedoftheininlongermaximumminimumbeofofovertimeperiodprocessprocessrecordedrecordingoftmevaluetimetimesummarizedperiodthethetimeinandandvaluevaluesandtimeminimumof +
ThresholdAdaptiveProcessor(16_16)0,5ms71,7%2,53`null`aggregatedofanyouarchivearchivesassistantpagebasicbasictheofanpagecreatecreatewithengineeringtheyouhelp`null``null`pagebasicyouhelpyouyouthepageyouhelppagearchivearchivehelpshouldstartyoustartwiththethistheyouthethepagepagewithwithwithyou +
ThresholdAdaptiveProcessor(04_04)1,4ms98,1%4,02`null`recorded`null`setrecordedrecordedsetsetsetsetsetsetsetsetsetsetsetrecordedsetset`null``null`setsetsetsetset`null`setsetsetsetsetrecordedrecordedsetsetsetsetrecordedsetsetsetset`null`setsetsetsetsetsetsetset +
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%5,15`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 53 tagged words.*

reporting-server_report-assistant_007

ProcessorElapsedWERCER (avg)ImageabsabsolutealarmsbatchhistorycollectionconsumptioncostsdatadatetimefilterdevelopmentDPAelementequipmentequipmentfilterfilterfilter()frequentgroupintegermediummiscmnestinglevelmodelmostnameOEEFactorparameterlistperprojectspropertiesrdlrelatedrelativereportreport1reportassistantsinglestringtoolstypevariablesZAD_CIPZAD_GBLZAD_MAIN -
ThresholdProcessor(40%)1,5ms86,4%4,55absabsdanscostscollectioncollectioncostsdatedatedeebedeepeepropertiesdatedatereportonsdeebeonsonsdeecostsdatecollectionpropertiesperpropertiespropertiesdadatedatereportreportreportbeonstookbeabsbebebe +
ThresholdProcessor(40%)0,9ms86,4%4,55absabsdanscostscollectioncollectioncostsdatedatedeebedeepeepropertiesdatedatereportonsdeebeonsonsdeecostsdatecollectionpropertiesperpropertiespropertiesdadatedatereportreportreportbeonstookbeabsbebebe
ThresholdProcessor(30%)0,9ms93,2%5,07astoleastoletolemonmtdaedaemenmtmenmenmentoletolerecurduepeemenmtmenmodelmtdaerecurreportperrecurreportmtdaedaereportreportreporttolemttoletoledaemtmtmt -
AutoThresholdProcessor(Kapur)1,0ms93,2%4,95absabsabsanintemtteunanintemtdatedatedatedeedeeteunanintemtanintemtdateanintemtteungunanintemtteunabsanintemtdeeprtdatedateanintemtperprtreportildatedatereportreportreportilteuntookpeabsdatedateanintemt -
ThresholdProcessor(50%)0,8ms95,5%5,68oneonerdlreportoneoneoneonereportreportonereportreportoneoneonereportoneonerdloneoneoneoneonereportreportoneonereportrdlrdlrdlreportreportreportoneoneoneonerdloneoneone -
ThresholdAdaptiveProcessor(08_08)0,4ms97,7%6,1618report18reportreportreport1818reportreport18reportreportreport18reportreport18reportreport18report181818reportreport18reportreport18reportreportreportreportreport18181818report181818 -
ThresholdAdaptiveProcessor(10_10)0,4ms97,7%6,16`null`reportreportreportreportreportreport`null`reportreport`null`reportreportreportreportreportreportreportreportreport`null`report`null`report`null`reportreport`null`reportreport`null`reportreportreportreportreportreportreportreport`null`reportreportreportreport -
ThresholdAdaptiveProcessor(14_14)0,4ms97,7%5,73routootstootstootstootstootstootstootstootsreportroureportreporttootstootstootsreportroutootsrouroutootstootstootsroutootsreportroutootsreportroureportreportreportreportreporttootstootstootstootstootstootstootstoots -
ThresholdAdaptiveProcessor(16_16)0,4ms97,7%5,84adlbaebaebaebaereportbaebaebaereportbaereportreportreportbaebaereportbaebaereportbaebaeadlbaebaebaereportbaereportreportadlbaebaereportreportreportbaebaeadlbaebaebaebaebae -
ThresholdAdaptiveProcessor(18_18)0,5ms97,7%5,39adladldasreportreptrepttootsdasreptreptadlreptreptreptbiebiereptreptreptreptbiereptadlreptadlreptreportreptreptreportadlreptreptreportreportreportbierepttootsreptadlreptreptrept -
ThresholdAdaptiveProcessor(20_20)0,6ms97,7%5,39adlbledasdasbletootstootsdasblereportbleblereportblebleblereporttootsbleadldasbleadldasbleadlreportbletootsreportadlbleblereportreportreportbletootstootsblebleblebleble -
ThresholdProcessor(10%)0,9ms97,7%5,18avsstantavsfikorloeefactoroeefactoravsavscatetrnefiterstantavsstantequipmentfiterequipmentfiterfikorlfikorlstantstantstantmodelavsstantmodelavsavsoeefactormodelavsmodelmodelavsstantavsfikorlfikorlstantstantstantavsstantavsstantstantstant -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%6,27`null`flementflementflementflementflement`null``null`flementflement`null`flementflementflementflementflementflement`null`flementflement`null`flement`null``null``null`flementflement`null`flementflement`null`flementflementflementflementflement`null`flement`null``null`flementflementflementflement +
AutoThresholdProcessor(Kapur)1,1ms93,2%4,95absabsabsanintemtteunanintemtdatedatedatedeedeeteunanintemtanintemtdateanintemtteungunanintemtteunabsanintemtdeeprtdatedateanintemtperprtreportildatedatereportreportreportilteuntookpeabsdatedateanintemt +
ThresholdProcessor(50%)0,7ms95,5%5,68oneonerdlreportoneoneoneonereportreportonereportreportoneoneonereportoneonerdloneoneoneoneonereportreportoneonereportrdlrdlrdlreportreportreportoneoneoneonerdloneoneone +
ThresholdAdaptiveProcessor(16_16)0,5ms97,7%5,84adlbaebaebaebaereportbaebaebaereportbaereportreportreportbaebaereportbaebaereportbaebaeadlbaebaebaereportbaereportreportadlbaebaereportreportreportbaebaeadlbaebaebaebaebae +
ThresholdAdaptiveProcessor(08_08)0,6ms97,7%6,1618report18reportreportreport1818reportreport18reportreportreport18reportreport18reportreport18report181818reportreport18reportreport18reportreportreportreportreport18181818report181818 +
ThresholdAdaptiveProcessor(20_20)0,9ms97,7%5,39adlbledasdasbletootstootsdasblereportbleblereportblebleblereporttootsbleadldasbleadldasbleadlreportbletootsreportadlbleblereportreportreportbletootstootsblebleblebleble +
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(60%)0,8ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(OTSU)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%6,75fefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefefe -
ThresholdProcessor(20%)1,0ms100,0%5,30eefalteralteractoractorelomantovoxalteralterelomantoeefelomantoelomantofiterfiterfiterasestantvoxaltereeffiterasestantaltervoxalteractoraltereefelomantoaltereefalteralteractoractorasestantfiteraltervoxalteralteralteralteralter -
ThresholdProcessor(70%)1,0ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(80%)1,8ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(24_24)1,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)0,9ms100,0%5,30eefalteralteractoractorelomantovoxalteralterelomantoeefelomantoelomantofiterfiterfiterasestantvoxaltereeffiterasestantaltervoxalteractoraltereefelomantoaltereefalteralteractoractorasestantfiteraltervoxalteralteralteralteralter +
ThresholdProcessor(70%)0,9ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(OTSU)1,1ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,48`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 44 tagged words.*

report_example_data-time_001

ProcessorElapsedWERCER (avg)Imagealarmarchivearchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivexrcancelfunctionhelpokoptionsparametersettingssyntaxwizard
ThresholdProcessor(30%)0,9ms21,1%0,16alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrcancelfunctionhelpoloptionsparametersettingssyntaxwizard -
ThresholdProcessor(10%)0,9ms26,3%0,21alarmarchivarchiveexarchivemarchivemrarchivemsparchivemsprarchivemrarchivemsparchivemrcancelfunctionhelpokoptionsparametersettingssyntaxwizard -
ThresholdProcessor(20%)1,0ms26,3%0,53alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrlefunctionleokoptionsparametersettingssyntaxwizard -
ThresholdProcessor(40%)1,5ms31,6%0,47alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrsyntaxfunctionhelpuroptionsparametersettingssyntaxwizard -
ThresholdProcessor(50%)0,8ms36,8%0,63alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexrsyntaxfunctionthls`null`optionsparametersettingssyntaxwizard -
AutoThresholdProcessor(OTSU)0,9ms36,8%0,63alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexrsyntaxfunctionthls`null`optionsparametersettingssyntaxwizard -
ThresholdProcessor(70%)1,0ms47,4%1,47alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemralarmfunction`null``null`optionsparameteroptionsalarmalarm +
ThresholdProcessor(20%)0,9ms26,3%0,53alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrlefunctionleokoptionsparametersettingssyntaxwizard +
ThresholdProcessor(40%)0,9ms31,6%0,47alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemrsyntaxfunctionhelpuroptionsparametersettingssyntaxwizard +
ThresholdProcessor(50%)0,7ms36,8%0,63alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexrsyntaxfunctionthls`null`optionsparametersettingssyntaxwizard +
AutoThresholdProcessor(OTSU)1,1ms36,8%0,63alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchiveexrsyntaxfunctionthls`null`optionsparametersettingssyntaxwizard +
ThresholdProcessor(70%)0,9ms47,4%1,47alarmarchivemarchiveexarchivemarchivemrarchivemsparchivemsprarchiverarchivesparchivemralarmfunction`null``null`optionsparameteroptionsalarmalarm
ThresholdProcessor(60%)0,8ms73,7%2,11alarmarchivemarchiveexarchivemarchivemarchivemarchiveexrarchivemarchivemarchiveexralarmfunction`null``null`functionparameterarchivemfunctionwizard -
ThresholdAdaptiveProcessor(24_24)1,9ms89,5%5,95wizardfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunction`null``null`functionwizardfunctionfunctionwizard -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(08_08)0,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(10_10)0,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(14_14)0,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(18_18)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(22_22)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(20_20)0,6ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Kapur)1,0ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(80%)1,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(24_24)0,4ms89,5%5,95wizardfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunctionfunction`null``null`functionwizardfunctionfunctionwizard +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Kapur)0,8ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)1,3ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%7,42`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 19 tagged words.*

runtime_function_create_002

ProcessorElapsedWERCER (avg)Imageactionadministrationcanceldefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenookopenprofileprofilessaveservicethevariable -
AutoThresholdProcessor(OTSU)0,9ms8,3%0,25actionadministrationlinkeddefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable -
ThresholdProcessor(70%)1,0ms12,5%0,33actionadministrationlinkeddefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenoopenprofileprofilessaveservicethevariable -
AutoThresholdProcessor(Kapur)1,0ms20,8%0,54actionadministrationlinkeddefineddefineddialogenginefreelyfromtheinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable +
AutoThresholdProcessor(OTSU)1,1ms8,3%0,25actionadministrationlinkeddefaultdefineddialogenginefreelyfromhelpinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable +
ThresholdProcessor(70%)0,9ms12,5%0,33actionadministrationlinkeddefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenoopenprofileprofilessaveservicethevariable +
AutoThresholdProcessor(Kapur)1,1ms20,8%0,54actionadministrationlinkeddefineddefineddialogenginefreelyfromtheinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable
ThresholdProcessor(60%)0,8ms25,0%0,46actionadministrationhamedefaultdefineddialogenginefreelyfromhelpinlastlinkedoloadnameininopenprofileprofileshameservicethevariable -
ThresholdProcessor(80%)1,8ms25,0%0,38actionadministrationnamedefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable -
ThresholdAdaptiveProcessor(18_18)0,5ms50,0%0,83actionadministrationcanceopefautenginedialogenginehelpfromhelpinlasttnhkedonnamenoonopenprofileprofilesosaveservicethevariable -
ThresholdAdaptiveProcessor(22_22)0,5ms50,0%1,33alogadministrationnamedefineddefinedalogenginefreelyfromtheinnameikealogname61ikeopenprofileprofilesnameservicethevariable -
ThresholdProcessor(50%)0,8ms50,0%1,67actionadministrationsavedialogenginedialogenginehelpsavehelpinsaveloadloadsaveininpenprofileprofilessaveservicetheprofile -
ThresholdAdaptiveProcessor(10_10)0,4ms54,2%2,08otastservicenamedefaultdefinedotastenginefreelyfromname`null`otastloadloadname`null``null`otastprofileprofilesnameservicenamevariable -
ThresholdAdaptiveProcessor(20_20)0,6ms54,2%1,12actionadministrationcancethelpinkedalogenginehelpfromhelpinnameinkedoxnamenooxopenprofilesprofilesnameservicethevariable -
ThresholdProcessor(90%)1,1ms54,2%2,00actionadministrationopendialogenginedialogengineopenloadtheinloadloadloadtheininopenprofileprofilestheservicetheprofile -
ThresholdAdaptiveProcessor(16_16)0,4ms58,3%1,58inadministrationceedefautdefautdialogengineceefromloinloinloadsaveloloopenprofileprofilesaveservicetheprofile -
ThresholdProcessor(40%)1,5ms58,3%2,08actionadministrationopendialogenginedialogenginehelpopenhelpinopeninopentheininopenprofileprofiletheservicetheprofile -
ThresholdAdaptiveProcessor(24_24)1,9ms58,3%1,83inadministrationinkeddialoginkeddialogengineinkednoejinejlinkednononoejopenprofilesprofilestheservicethevariable -
ThresholdProcessor(30%)0,9ms62,5%2,17imdialogcanceldialogprefilesdialogenginehelpimhelpimsavecanceloksaveimokopenprofileprefilessaveservicetheprofile -
ThresholdAdaptiveProcessor(08_08)0,4ms66,7%2,46tameservicetamedefineddefinedtameenginefreelyfromfreely`null`tamedefinedtamename`null``null`tameprofilesprofilestameservicetamevariable -
AutoThresholdProcessor(Triangle)1,0ms66,7%2,46inadministrationopendialogenginedialogengineopenopentheinopeninopentheininopenprofilesprofilestheservicethedialog -
ThresholdAdaptiveProcessor(14_14)0,4ms70,8%2,42inadministrationemdialogenginedialogengineemememineminememememopenprofilesprofilestheservicethedialog -
ThresholdAdaptiveProcessor(12_12)0,5ms70,8%2,00inministrationinedlastinedlastenginefromfromtheinlastinedlastlastenenenprofilesprofileslastservicethevariable -
ThresholdAdaptiveProcessor(06_06)1,0ms83,3%3,46ipserviceipdefaultdefaultipengineipipipipipipipipipipipprofilesprofilesipserviceipdefault -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%5,00epepepepepepepepepepepepepepepepepepepepepepepep -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(10%)0,9ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(20%)1,1ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms25,0%0,38actionadministrationnamedefaultdefineddialogenginefreelyfromtheinlastlinkedloadnamenonoopenprofileprofilessaveservicethevariable +
ThresholdProcessor(50%)0,7ms50,0%1,67actionadministrationsavedialogenginedialogenginehelpsavehelpinsaveloadloadsaveininpenprofileprofilessaveservicetheprofile +
ThresholdAdaptiveProcessor(20_20)0,9ms54,2%1,12actionadministrationcancethelpinkedalogenginehelpfromhelpinnameinkedoxnamenooxopenprofilesprofilesnameservicethevariable +
ThresholdAdaptiveProcessor(24_24)0,4ms58,3%1,83inadministrationinkeddialoginkeddialogengineinkednoejinejlinkednononoejopenprofilesprofilestheservicethevariable +
ThresholdAdaptiveProcessor(16_16)0,5ms58,3%1,58inadministrationceedefautdefautdialogengineceefromloinloinloadsaveloloopenprofileprofilesaveservicetheprofile +
ThresholdProcessor(40%)0,9ms58,3%2,08actionadministrationopendialogenginedialogenginehelpopenhelpinopeninopentheininopenprofileprofiletheservicetheprofile +
ThresholdProcessor(30%)1,2ms62,5%2,17imdialogcanceldialogprefilesdialogenginehelpimhelpimsavecanceloksaveimokopenprofileprefilessaveservicetheprofile +
ThresholdAdaptiveProcessor(08_08)0,6ms66,7%2,46tameservicetamedefineddefinedtameenginefreelyfromfreely`null`tamedefinedtamename`null``null`tameprofilesprofilestameservicetamevariable +
AutoThresholdProcessor(Triangle)0,9ms66,7%2,46inadministrationopendialogenginedialogengineopenopentheinopeninopentheininopenprofilesprofilestheservicethedialog +
ThresholdAdaptiveProcessor(12_12)0,6ms70,8%2,00inministrationinedlastinedlastenginefromfromtheinlastinedlastlastenenenprofilesprofileslastservicethevariable +
ThresholdProcessor(20%)0,9ms100,0%5,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,00epepepepepepepepepepepepepepepepepepepepepepepep

*Comparison data generated based on 24 tagged words.*

straton_runtime_configuration_001

ProcessorElapsedWERCER (avg)Image012007009000advancedapplyboxbycancelcoldcommunicationcyclicallydatadelaydocumentseventfilesforgeneralhelphotloadmodenamenookopenpathportprioritypublicrealredundancyrestartretainrtssettingsstandardstartstartupsteppingstorestoringtestthistimeusersvariableszenon_projects -
ThresholdProcessor(40%)1,5ms28,0%0,88`null`120012009000advancedapplyboxbyadvancedcoldcommunicationcyclicallydatadelayopeneventtimeforgeneralhelphotloadmodenamenoeiopenpathportpriorityeirealredundancyrestartretainei`null`settingsstandardstartstartupsteppingstorestoringeithistimeeivariablespot -
ThresholdProcessor(10%)0,9ms34,0%1,26`null`joadboxjoadadvanceddelayboxbycancelcoldcommunicationdelaydatadelayeventeventtimeforgeneralhelphotjoadmodenamenookopenpathportportdelayrealredundancyrestartretainby`null`settingsstandardstartstartupsteppingstorestoringtimethistimestartvariablesgeneral +
ThresholdProcessor(40%)0,9ms28,0%0,88`null`120012009000advancedapplyboxbyadvancedcoldcommunicationcyclicallydatadelayopeneventtimeforgeneralhelphotloadmodenamenoeiopenpathportpriorityeirealredundancyrestartretainei`null`settingsstandardstartstartupsteppingstorestoringeithistimeeivariablespot +
ThresholdProcessor(20%)0,9ms34,0%1,14`null`joadforjoadadvanceddelayboxbycancelcoldcommunicationcyclicallydatadelayeventeventtimeforgeneraldelayhotjoadmodenamenoforopenpathportprioritydelayrealredundancyrestartretainport`null`settingsstandardstartstartupsteppingstorestoringstartthistimestartvariablesgeneral
ThresholdProcessor(30%)0,9ms34,0%1,10`null`900090009000advanceddelayboxbyadvancedcoldcommunicationyicyclicallydatadelayopeneventtimeforgeneraldelayhotloadmodenamenooadopenpathportprioritydelayrealredundancyrestartretainhot`null`settingsstandardstartstartupsteppingstorestoringstartthistimeopenvariablespriority -
ThresholdProcessor(20%)1,0ms34,0%1,14`null`joadforjoadadvanceddelayboxbycancelcoldcommunicationcyclicallydatadelayeventeventtimeforgeneraldelayhotjoadmodenamenoforopenpathportprioritydelayrealredundancyrestartretainport`null`settingsstandardstartstartupsteppingstorestoringstartthistimestartvariablesgeneral -
ThresholdProcessor(50%)0,8ms36,0%1,02`null`900090009000advanceddelayboxbynamecoldcommunicationcyclicallydatadelayuserseventtimeforgeneraldelayhotoadmodenamenaoadopenpathportpriorityusersrealredundancyrestartretainna`null`settingsstandardstartstartupsteppingstorestoringtimethistimeusersvariablespriority -
AutoThresholdProcessor(OTSU)0,9ms36,0%1,08`null`20d20d9000advanceddelayboxbyadvancedcoldcommunicationcyclicallydatadelayeventeventtimeforgeneraldelayhotoadmodenamenoinopenpathportpriorityinrealredundancyrestartretainin`null`settingsstandardstartstartupsteppingstorestoringstartthistimestartvariablesstandardport +
ThresholdProcessor(50%)0,7ms36,0%1,02`null`900090009000advanceddelayboxbynamecoldcommunicationcyclicallydatadelayuserseventtimeforgeneraldelayhotoadmodenamenaoadopenpathportpriorityusersrealredundancyrestartretainna`null`settingsstandardstartstartupsteppingstorestoringtimethistimeusersvariablespriority +
AutoThresholdProcessor(OTSU)1,1ms36,0%1,08`null`20d20d9000advanceddelayboxbyadvancedcoldcommunicationcyclicallydatadelayeventeventtimeforgeneraldelayhotoadmodenamenoinopenpathportpriorityinrealredundancyrestartretainin`null`settingsstandardstartstartupsteppingstorestoringstartthistimestartvariablesstandardport
ThresholdProcessor(60%)0,8ms38,0%1,26`null`900090009000ibandelayboxbynamecoldcommunicationcyclicallydatadelayuserseventieforgeneraliehotoadmodenamenoieopenpathportpriorityibanrealdelayrestartretainie`null`settingsstandardstartstartupsteppingstorestoringiethistimeusersvariablespriority -
ThresholdProcessor(70%)1,0ms38,0%1,26`null`900090009000advancedlcboxbyadvancedcoldcyclicallycyclicallydatadelayopeneventtimeforgenerallchotfoadmodenamenolcopenpathportpriortylcrealredundancyrestartretainlcsusettingsstandardstartstartupsteppingstorestoringsuthistimesuvariablesredundancy -
AutoThresholdProcessor(Kapur)1,0ms52,0%1,84`null`isisisvariablesdelayboxbycauserscoldcyclicallycyclicallydatadelaycausersopenisforrealteshotcoldmodenamenoisopenpathhotpriortyisrealrestartrestartretainisissteppingstartstartstartupsteppingstorestoringtesthistimecausersvariables_projects -
ThresholdProcessor(80%)1,8ms54,0%2,12`null`fififivariablespathboxbynamecoldcyckcallycyckcallydatadelayusersopenfiforrealdelayhotfoadmodenamenofiopenpathforstoringfirealrestartrestartretainfifssteppingstartstartstartsteppingstorestoringfsthistimeusersvariablesrestart -
ThresholdAdaptiveProcessor(16_16)0,4ms58,0%2,14`null`reareareaoadopenboxbynamecoldcyclicallycyclicallydatareausersopentimeforusersreaforoadmodenamenooadopenpathforpriorityusersreareastartretainrea`null`storingstartstartstartsteppingstorestoringreathistimeusersvariablespriority -
ThresholdAdaptiveProcessor(08_08)0,4ms60,0%2,24`null`portnoporteventportboxbynameportcyclicallycyclicallydatarealeventeventtimeportrealrealportportmodenamenonoopendataportpriorityportrealstandardstartretainport`null`steppingstandardstartstartsteppingstoresteppingportthistimeportvariablesport -
ThresholdAdaptiveProcessor(10_10)0,4ms64,0%2,24`null`porporporvariablesporboxbynamecoldcyciicallycyciicallydatadataopeneverttimeforevertcoldporoadpornamenoporopenpathporpriorityporrealrealstartretainby`null`storingstartstartstartstoringstorestoringevertthistimeevertvariablesevert -
ThresholdProcessor(90%)1,1ms70,0%2,60`null`ibibibtamerealbybytamecoldretainrealdatarealprojectsrealibforrealrealhotcoldmodenameibibmodepathhotprojectsibrealrealstartretainib`null`steppingstartstartstartsteppingstorestoringtameibtamerealvariablesprojects -
ThresholdAdaptiveProcessor(06_06)1,0ms74,0%2,62`null`pdpdpdvariablespdforbynamepdcyclicallycyclicallydatarealgauserseventtimeforrealrealportpdpdnamepdpdpdpathportpriontypdrealrealretainretainpd`null`storingstorestorestoringstoringstorestoringporttimetimegausersvariablesport -
ThresholdAdaptiveProcessor(14_14)0,4ms76,0%2,96`null`realbyrealvariablesrealbybynameforretainprioritydatarealnamerealtimeforrealrealforrealnamenamebybyrealpathforpriorityrealrealrealretainretainby`null`retainstorestorestoringstoringstorestoringrealtimetimerealvariablespriority -
ThresholdAdaptiveProcessor(12_12)0,5ms76,0%2,80`null`realforrealvariablesrealforbynameforcyciicallycyciicallydatarealtimerealtimeforrealrealforrealfornameforforrealpathforpriorityrealrealrealretainretainby`null`storingstorestorestoringstoringstorestoringrealtimetimerealvariablespriority -
ThresholdAdaptiveProcessor(18_18)0,5ms76,0%2,84`null`orsorsorsnamerealbybynameorscyclicallycyclicallydatarealorsrealtimeforrealrealfororsorsnamebyorsorspathorsstoringrealrealrealretainretainors`null`storingstorestorestoringstoringstorestoringorsorstimeorsvariablesors -
ThresholdAdaptiveProcessor(22_22)0,5ms78,0%2,76`null`t700t700t700namebybybynameforretainpriortydatarealtestestesforrealtesforrealnamenamebybytespathforpriortybyrealrealretainretainby`null`storingstorestorestorestoringstorestoringtestestimetesvariablespriorty -
ThresholdAdaptiveProcessor(20_20)0,6ms78,0%2,98`null`tgtgtgnamehelpforbynamehelpcyclicallycyclicallydatahelpnamehelphelpfortahelpfortammnametgtgtgpathforstoringhelptaretainretainretaintg`null`storingstorestorestoringstoringstorestoringtgtgnamehelpvariablesstore -
ThresholdAdaptiveProcessor(04_04)0,4ms80,0%3,08`null`naanaanaastangportboxbystangportretainvariablesdatadataportstangmodeportnaanaaportnaamodenaanaaboxmodedataportportportnaastandardstattretainport`null`stangstandardstattstattstangstorestangstattthisstorestorevariablesvanables -
ThresholdAdaptiveProcessor(24_24)1,9ms84,0%3,08`null`cracforcraccracpathfor`null`craccraccyckcatycyckcatydatarealcyckcatyrealtimeforrealrealforcractimetimeforforcracpathforpriortycracrealrealretainretain`null``null`storingstorestorestoringstoringstorestoringtimetimetimerealrealpriorty -
AutoThresholdProcessor(Triangle)1,0ms98,0%3,86`null`ihihihmadecollihihmadecollmadecolldatdatdatantihihmadeeddatmademademadeihiheddatdatsteppingihdatdatdatsteppingih`null`steppingsteppingdatdatsteppingmadesteppingdatihihedmadeant -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,36`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%3,82`null`etaetaetaranseyetaserancatdcatdcatdetaetaetahetwieairetahethetetamadasesesesecatdairairairranranetaetaetaseetamadaetaetaseseranhetairwieseraneta -
ThresholdProcessor(0%)0,8ms100,0%5,36`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,36`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(70%)0,9ms38,0%1,26`null`900090009000advancedlcboxbyadvancedcoldcyclicallycyclicallydatadelayopeneventtimeforgenerallchotfoadmodenamenolcopenpathportpriortylcrealredundancyrestartretainlcsusettingsstandardstartstartupsteppingstorestoringsuthistimesuvariablesredundancy +
AutoThresholdProcessor(Kapur)1,1ms52,0%1,84`null`isisisvariablesdelayboxbycauserscoldcyclicallycyclicallydatadelaycausersopenisforrealteshotcoldmodenamenoisopenpathhotpriortyisrealrestartrestartretainisissteppingstartstartstartupsteppingstorestoringtesthistimecausersvariables_projects +
ThresholdProcessor(80%)0,8ms54,0%2,12`null`fififivariablespathboxbynamecoldcyckcallycyckcallydatadelayusersopenfiforrealdelayhotfoadmodenamenofiopenpathforstoringfirealrestartrestartretainfifssteppingstartstartstartsteppingstorestoringfsthistimeusersvariablesrestart +
ThresholdAdaptiveProcessor(16_16)0,5ms58,0%2,14`null`reareareaoadopenboxbynamecoldcyclicallycyclicallydatareausersopentimeforusersreaforoadmodenamenooadopenpathforpriorityusersreareastartretainrea`null`storingstartstartstartsteppingstorestoringreathistimeusersvariablespriority +
ThresholdAdaptiveProcessor(08_08)0,6ms60,0%2,24`null`portnoporteventportboxbynameportcyclicallycyclicallydatarealeventeventtimeportrealrealportportmodenamenonoopendataportpriorityportrealstandardstartretainport`null`steppingstandardstartstartsteppingstoresteppingportthistimeportvariablesport +
ThresholdAdaptiveProcessor(12_12)0,6ms76,0%2,80`null`realforrealvariablesrealforbynameforcyciicallycyciicallydatarealtimerealtimeforrealrealforrealfornameforforrealpathforpriorityrealrealrealretainretainby`null`storingstorestorestoringstoringstorestoringrealtimetimerealvariablespriority +
ThresholdAdaptiveProcessor(20_20)0,9ms78,0%2,98`null`tgtgtgnamehelpforbynamehelpcyclicallycyclicallydatahelpnamehelphelpfortahelpfortammnametgtgtgpathforstoringhelptaretainretainretaintg`null`storingstorestorestoringstoringstorestoringtgtgnamehelpvariablesstore +
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%3,08`null`naanaanaastangportboxbystangportretainvariablesdatadataportstangmodeportnaanaaportnaamodenaanaaboxmodedataportportportnaastandardstattretainport`null`stangstandardstattstattstangstorestangstattthisstorestorevariablesvanables +
ThresholdAdaptiveProcessor(24_24)0,4ms84,0%3,08`null`cracforcraccracpathfor`null`craccraccyckcatycyckcatydatarealcyckcatyrealtimeforrealrealforcractimetimeforforcracpathforpriortycracrealrealretainretain`null``null`storingstorestorestoringstoringstorestoringtimetimetimerealrealpriorty +
AutoThresholdProcessor(Triangle)0,9ms98,0%3,86`null`ihihihmadecollihihmadecollmadecolldatdatdatantihihmadeeddatmademademadeihiheddatdatsteppingihdatdatdatsteppingih`null`steppingsteppingdatdatsteppingmadesteppingdatihihedmadeant

*Comparison data generated based on 50 tagged words.*

worldview_zoom_steps_001

ProcessorElapsedWERCER (avg)Image%0100canceldeleteeditexistinghelpnewokstepstepstozoom -
ThresholdProcessor(30%)0,9ms28,6%0,50`null``null`100canceldeleteeaexistinghelpeaokstepstepstozoom -
ThresholdProcessor(10%)0,9ms42,9%1,07`null``null`100cancelhelptoexistinghelptotostepstepstozoom -
ThresholdProcessor(20%)1,0ms42,9%1,21`null``null`100canceltookexistingstepokokstepstepstozoom -
ThresholdProcessor(70%)1,0ms57,1%1,71`null``null`100steptotoexistingsteptotostepstepstozoom -
ThresholdProcessor(40%)1,5ms64,3%1,93`null``null`tosteptotoexistingsteptotostepstepstozoom -
ThresholdAdaptiveProcessor(22_22)0,5ms78,6%2,29`null``null`newnewdeleteediteditnewnew`null`newnew`null`edit -
ThresholdAdaptiveProcessor(12_12)0,5ms85,7%2,50`null``null`100zzstepszzstepszzzzzzstepsstepszzzoom -
ThresholdAdaptiveProcessor(14_14)0,4ms92,9%3,57`null``null`100100100100100100100`null`100100`null`100 -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(08_08)0,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(10_10)0,4ms100,0%2,93`null``null`enenocleteenenenenenenenenen -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(18_18)0,5ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(20_20)0,6ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(30%)1,4ms28,6%0,50`null``null`100canceldeleteeaexistinghelpeaokstepstepstozoom +
ThresholdProcessor(20%)0,7ms42,9%1,21`null``null`100canceltookexistingstepokokstepstepstozoom +
ThresholdProcessor(70%)0,8ms57,1%1,71`null``null`100steptotoexistingsteptotostepstepstozoom +
ThresholdProcessor(40%)0,9ms64,3%1,93`null``null`tosteptotoexistingsteptotostepstepstozoom +
ThresholdAdaptiveProcessor(12_12)0,6ms85,7%2,50`null``null`100zzstepszzstepszzzzzzstepsstepszzzoom +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(08_08)0,6ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdAdaptiveProcessor(24_24)0,6ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%3,57`null``null``null`sdajssdajssdajssdajs`null``null``null`sdajssdajs`null``null` -
ThresholdProcessor(50%)0,8ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(60%)0,8ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(OTSU)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Kapur)1,0ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(80%)1,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Kapur)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(OTSU)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(50%)0,7ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(20_20)0,9ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(60%)1,4ms100,0%3,79`null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 14 tagged words.*

zrs_MetadataEditor_variables_001

ProcessorElapsedWERCER (avg)ImageapplyarchivesbottlechangedclassclassesclearconnectedconveyorCurcurvesdepalletizerdescriptionediteditorefficiencyequipmenteventfilefillerfilteredglassgrategroupshelpinspectorlabelerlinelocalmetadatamodelingmodelsnameonoperationpackerpasteurizerprojectreadyreferencereportingselectedStatetestenvtototalunpackerusersvariablesvisualwasherWS -
ThresholdAdaptiveProcessor(10_10)0,4ms86,5%3,94readyvariablestotalchangedreadychangedreadyselectedchangedtetereportingreportingreadytereportingvariablertetevariablerfäteredreadytereadyteselectedvariablertetotalreadyreportingtotalteonreportingtefäteredreadyreadyreportingreportingselectedtetetetotalvariablertevariablestotaltete -
ThresholdAdaptiveProcessor(14_14)0,4ms86,5%3,79readyvarietiestotalchangedsechangedseselectedourourourvarietiesvarietiesmutofilteredmusesefilteredfilteredseseourseselectedvarietiessetotalreadytotaltotalmuonreportingsevarietiessereadyreportingreportingselectedsesetototalchangedsevarietiestotalsemu -
ThresholdAdaptiveProcessor(12_12)0,5ms86,5%3,73hepvarisbiestotelchangedlechangedleselectedtotelhephepreportingreportingheptotelfilteredhepheplefilteredfilteredletotelhephepselectedtotelletotelreadytoteltotelleonreportinghepfilteredtotelreadyreportingreportingselectedtoteltoteltatotelchangedhepvariablestotelheple -
ThresholdAdaptiveProcessor(18_18)0,5ms88,5%3,73asastotalchangedaschangedfeconnectedconnectedyuifereportingreportingyuiyuifieyuifefiefiefilteredasfeashelpconnectedhelpfietotalreedyreportingtotalfeonreportingfefilteredreedyreedyreportingreportingselectedfesefetotalconnectedseastotalasfe -
ThresholdAdaptiveProcessor(22_22)0,5ms90,4%4,08aeaetotalchangedfschangedcrchangedcrcrcrreportingreportingfscrsinesineaesinesinesteefsaefsaecraesinetotalreadysinetotalaeonreportingaesteeaereadyreportingreportingsteeaesteefstotalaefsaetotalaefs -
ThresholdAdaptiveProcessor(20_20)0,6ms90,4%4,54totalchangedtotalchangedtotalchangedtotalselectedchangedonchangedreportingreporting1460totalreportingreportingon1460totalselectedtotaltotaltotal1460selectedtotalontotaltotalreportingtotal1460onreportingchangedselectedtotaltotalreportingreportingselectedtotaltotalontotalselectedtotaltotaltotalchangedon +
ThresholdAdaptiveProcessor(12_12)0,6ms86,5%3,73hepvarisbiestotelchangedlechangedleselectedtotelhephepreportingreportingheptotelfilteredhepheplefilteredfilteredletotelhephepselectedtotelletotelreadytoteltotelleonreportinghepfilteredtotelreadyreportingreportingselectedtoteltoteltatotelchangedhepvariablestotelheple +
ThresholdAdaptiveProcessor(20_20)0,9ms90,4%4,54totalchangedtotalchangedtotalchangedtotalselectedchangedonchangedreportingreporting1460totalreportingreportingon1460totalselectedtotaltotaltotal1460selectedtotalontotaltotalreportingtotal1460onreportingchangedselectedtotaltotalreportingreportingselectedtotaltotalontotalselectedtotaltotaltotalchangedon
ThresholdProcessor(60%)0,8ms92,3%3,87tlratetotalchangedtlchangedserelectedopersursurelectedsertltlelecteduneserineserstaretlrateopetlserserinetotalstatetotaltotalrateonoperserstareratereadyserserelectedstatesertltotaluneserratesursertl -
AutoThresholdProcessor(OTSU)0,9ms92,3%3,85readycamestacechangedcamecamesarconnectedconnectedsurcurvorablersurditorelectedmeusmeussesurelectedsarstatemeusmeusconnectedvorablerunesarreadymeusmeuscameonvorablersarsurmeusreadystacetorelectedstatestacetotorstacesurvorablersursurws -
ThresholdProcessor(70%)1,0ms92,3%3,19uyvarabiesbottechangedglassglasscarchangedtiveuyureverablerreportingdegortiveeverteverttivetivetreglassstategroupsmeoperatonverablerinetotalstatemememeonoperatoncartivetrereadyreportingreportingslatestatebettetototalverablerunevarabiestotalcaruy -
ThresholdAdaptiveProcessor(08_08)0,4ms94,2%4,06readyvariablestotalchangedcorechangedstechangedcorestecorebetesitesitestoresitesitestesitesitestorereadysatestorebetestorebetesitetotalreadytotaltotalsate01beteboccestorestorereadystorestoresitesatestestetotalchangedstorevariablestotalste01 -
ThresholdProcessor(80%)1,8ms96,2%3,13alcarvesbottechangedclassesclassescarconnectedcovecurcarvesbeatiebeatieitcirfieevertevertfiefietreclassesstateionshelpinenenetinecarstatemolwsmolwsnameonbeatiecurstatehoesbeatenenetineselectedstatestetoalnamehoesvariableralste01 -
ThresholdProcessor(40%)1,5ms98,1%5,04uyeditoreditorzeuyzezeeditoreditoruyuyeditoreditoreditoreditoreditoreditorzezeeditoreditoruyzeuyzeeditoreditorzeuymutadataeditorzezeuyeditoreditoreditorzeuyeditoreditoreditorzeeditoruyeditoreditoruyeditoruyeditoruy -
ThresholdAdaptiveProcessor(04_04)0,4ms100,0%5,10nitenitenitenitenitenitedrnitenitedrniteniteniteniteniteniteniteinnitenitenitenitenitedrniteniteniteniteniteniteinniteniteininnitenitenitedrniteinnitenitenitedrnitenitedrnitenitenitedr -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%4,98sesesatesatesesecrsatecrcrcrsatecrsecrsesesesesesatesesatecrsesesatesecrsatesesesatesesatecrsatesesesesesatesatesesesatecrsesatesesese -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(50%)0,8ms100,0%5,13deadwrewredeaddeaddeaddeaddeaddeadwrewredeaddeaddeaddeaddeaddeaddeadwrewredeaddeadwrewredeaddeaddeadwredeaddeaddeaddeadwre`null`deadwrewrewredeadwredeaddeaddeaddead`null`deaddeaddeadwredeadwre`null` -
ThresholdProcessor(10%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(70%)0,9ms92,3%3,19uyvarabiesbottechangedglassglasscarchangedtiveuyureverablerreportingdegortiveeverteverttivetivetreglassstategroupsmeoperatonverablerinetotalstatemememeonoperatoncartivetrereadyreportingreportingslatestatebettetototalverablerunevarabiestotalcaruy +
AutoThresholdProcessor(OTSU)1,1ms92,3%3,85readycamestacechangedcamecamesarconnectedconnectedsurcurvorablersurditorelectedmeusmeussesurelectedsarstatemeusmeusconnectedvorablerunesarreadymeusmeuscameonvorablersarsurmeusreadystacetorelectedstatestacetotorstacesurvorablersursurws +
ThresholdAdaptiveProcessor(08_08)0,6ms94,2%4,06readyvariablestotalchangedcorechangedstechangedcorestecorebetesitesitestoresitesitestesitesitestorereadysatestorebetestorebetesitetotalreadytotaltotalsate01beteboccestorestorereadystorestoresitesatestestetotalchangedstorevariablestotalste01 +
ThresholdProcessor(80%)0,8ms96,2%3,13alcarvesbottechangedclassesclassescarconnectedcovecurcarvesbeatiebeatieitcirfieevertevertfiefietreclassesstateionshelpinenenetinecarstatemolwsmolwsnameonbeatiecurstatehoesbeatenenetineselectedstatestetoalnamehoesvariableralste01 +
ThresholdProcessor(40%)0,9ms98,1%5,04uyeditoreditorzeuyzezeeditoreditoruyuyeditoreditoreditoreditoreditoreditorzezeeditoreditoruyzeuyzeeditoreditorzeuymutadataeditorzezeuyeditoreditoreditorzeuyeditoreditoreditorzeeditoruyeditoreditoruyeditoruyeditoruy +
ThresholdAdaptiveProcessor(24_24)0,4ms100,0%5,77lliilllllllllllllllllllliiiiiiiiiilllllllllllllllliilllllllllllllllliilliilllllliillllllllllllllllllllll +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%4,98sesesatesatesesecrsatecrcrcrsatecrsecrsesesesesesatesesatecrsesesatesecrsatesesesatesesatecrsatesesesesesatesatesesesatecrsesatesesese +
ThresholdProcessor(50%)0,7ms100,0%5,13deadwrewredeaddeaddeaddeaddeaddeadwrewredeaddeaddeaddeaddeaddeaddeadwrewredeaddeadwrewredeaddeaddeadwredeaddeaddeaddeadwre`null`deadwrewrewredeadwredeaddeaddeaddead`null`deaddeaddeadwredeadwre`null` +
AutoThresholdProcessor(Triangle)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(30%)0,9ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Kapur)1,0ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(06_06)1,0ms100,0%4,75sleinenoreeinesleinesleineeineslnoreeineeineeineeineeineeineeineeineeineeinesleinewssleineeineeinesleineeinenorenoresleineeineeinenoreeineeineeineeineeineeineslsluneuneeineslwssl -
ThresholdProcessor(20%)1,0ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%6,4601010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101 -
ThresholdAdaptiveProcessor(24_24)1,9ms100,0%5,77lliilllllllllllllllllllliiiiiiiiiilllllllllllllllliilllllllllllllllliilliilllllliillllllllllllllllllllll +
AutoThresholdProcessor(Kapur)1,1ms100,0%6,46`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(04_04)1,4ms100,0%5,10nitenitenitenitenitenitedrnitenitedrniteniteniteniteniteniteniteinnitenitenitenitenitedrniteniteniteniteniteniteinniteniteininnitenitenitedrniteinnitenitenitedrnitenitedrnitenitenitedr

*Comparison data generated based on 52 tagged words.*

zrs_REPORTS_EfficencyClass_009

ProcessorElapsedWERCER (avg)Image1aallowananalysisanalyzerandarchivesbasedbecancancelcenclasscomcontainscopadatacostscurrentdatadefineddiagramefficiencyequipmentEURforformulaformulasfromgroupshigherhistorichourinislimitlowermodelmodelsnamenewnormalisedokonorpageperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluewwwzenon
ThresholdProcessor(30%)0,9ms29,7%0,5813anallowananalysisanalysisandarchivesbasedbecancancelcanclassclacontainsdatacostscurrantdatadefineddiagramefficiencyequipmentclaforformulaformulasforgroupslowerhistorichourinisnamalowermodelmodelsnamanewnormalisedokonorclaseperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovalınnewon -
ThresholdProcessor(20%)1,0ms32,8%0,5913anallowananalysisanalysisandarchivesbasedbecancancelcanclassoocontainsdatacostscledatadefineddiagramefficiencyequipmentooforformulaformulasforgroupshigherhistorichourinislouttowermodelmodelsnamenewnomalisedooonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewon -
AutoThresholdProcessor(OTSU)0,9ms35,9%0,8613anallowananalysisanalysisandarchivesbasedbecancancanclassmodcontainsdatacostsequipmentdatadefineddiagramefficiencyequipmentmodforformulaformulasforgroupshourhistorichourinismodormodelmodelstetenormalisedoronorteperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistotemodon -
ThresholdProcessor(70%)1,0ms39,1%0,9113anallowananalysisanalysisandarchivesbasedbecancanfenclassmomcontainsdatacostsfendatadefineddiagramefficiencyequipmentfenforformulaformulasmomgroupshourhistorichourinismomformodelmodelspreefenformulasoronorpreeperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistopreefenfen -
ThresholdAdaptiveProcessor(20_20)0,6ms43,8%1,0013anallowananalysisanalysisandarchivesbasedbecananalcanclassorcontainsdataclasscandatadefineddiagramefficiencyequipmerororformulaformulasorgroupsthehistoricorinisthatormodelmodelsanalbenormalisedoronortheperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistoanaloron -
ThresholdProcessor(80%)1,8ms46,9%1,2513anallowananalysisanalysisandarchibasedbecancanbecanclassofcontainsdatacostscanbedatadefineddataefficiencyefficiencytheforformulaformulasforgroupsthehistorichourinisormulormodelmodelsthebeformulasofonortheperformperiodpreviewpreviewreportreportsshownthetemplatetemplatesthatthethemethistocanbetheon -
ThresholdProcessor(40%)1,5ms48,4%0,4415anallowananalysisanalysisandarchivesbasedbecancancelcanclasscurcortainsdatacostscurrantdatadefineddiagramefficiencyequipment42forformulaformulasforgroupshigherhistorichourinisimitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewon -
ThresholdAdaptiveProcessor(22_22)0,5ms50,0%1,45`null`anallowananalysisanalysisandthisbasedbecanmadelcanclassforcontainsdataclasscandatadefineddiagramefficiencyefficiencyhlforformulaformulasforformulasthehistoricforinisthatformadelmodelsmadelbeformulasononformadelperformperiodperiodperiodreportreportsshowntablestemplatetemplatesthatthethemethistohlhlon -
AutoThresholdProcessor(Kapur)1,0ms50,0%0,5216anallowananalysisanalysisandarchivesbasedbecancancelmenclassfromcontainsdatacostsetdatadefineddiagramefficiencyequipmertetforformulaformulasfromgroupshigherhistorichourinisinitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewmen -
ThresholdAdaptiveProcessor(24_24)1,9ms50,0%1,1113anallowananalysisanalysisanarchivesbasedbecancancanclasstocontainsdatalassequipmentdatadefineddataefficiencyequipmenthlforformulaformulasforgroupsthehisoricorinislassmodelmodelmodelszezenommalisedoronorzeperformperiodperiodprocessedreportreportsshowntablestemplatetemplatesthatthethemethistohlhlze -
ThresholdAdaptiveProcessor(14_14)0,4ms51,6%1,3313anallowananalysisanalysisandthisbasedbecancancanclassoncontainsdatacostscandatadefineddiagramefficiencyefficiency04hourformulaformulaonhourhourhistorichourinisthismodelmodelmodelcassbenormalisedonononcassperiodperiodpreviewpreviewreportreportshowntablestemplatetemplatesthatthethemethistocass04on -
ThresholdAdaptiveProcessor(16_16)0,4ms51,6%1,34`null`anlieanclasslieandarchivesbasedbecancansenclassorcostsdatacostssendatadefineddiagramefficiencyequipmentsenorformulaformutasorgroupsliehistorichourinisliemodelmodelmodelsdassenformutasoronordasperiodperiodpreviewprocessedreportreportsshowntablestemplatetemplatethisthethethistoliesensen -
ThresholdAdaptiveProcessor(12_12)0,5ms51,6%1,1110anallowananalysisanalysisandarchivesbasedbecancancanclassorcontainsdataclassequipmentdatadefineddiagramefficiencyequipment10orformulaformulasorgroupsihehistoricorinisihemodelmodelmodelsihebenormalisedoronoriheperiodperiodperiodprocessedreportreportshowntablestemplatetemplatesthatthethemeistotables10ienry +
ThresholdProcessor(20%)0,9ms32,8%0,5913anallowananalysisanalysisandarchivesbasedbecancancelcanclassoocontainsdatacostscledatadefineddiagramefficiencyequipmentooforformulaformulasforgroupshigherhistorichourinislouttowermodelmodelsnamenewnomalisedooonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewon +
AutoThresholdProcessor(OTSU)1,1ms35,9%0,8613anallowananalysisanalysisandarchivesbasedbecancancanclassmodcontainsdatacostsequipmentdatadefineddiagramefficiencyequipmentmodforformulaformulasforgroupshourhistorichourinismodormodelmodelstetenormalisedoronorteperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistotemodon +
ThresholdProcessor(70%)0,9ms39,1%0,9113anallowananalysisanalysisandarchivesbasedbecancanfenclassmomcontainsdatacostsfendatadefineddiagramefficiencyequipmentfenforformulaformulasmomgroupshourhistorichourinismomformodelmodelspreefenformulasoronorpreeperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistopreefenfen +
ThresholdAdaptiveProcessor(20_20)0,9ms43,8%1,0013anallowananalysisanalysisandarchivesbasedbecananalcanclassorcontainsdataclasscandatadefineddiagramefficiencyequipmerororformulaformulasorgroupsthehistoricorinisthatormodelmodelsanalbenormalisedoronortheperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistoanaloron +
ThresholdProcessor(80%)0,8ms46,9%1,2513anallowananalysisanalysisandarchibasedbecancanbecanclassofcontainsdatacostscanbedatadefineddataefficiencyefficiencytheforformulaformulasforgroupsthehistorichourinisormulormodelmodelsthebeformulasofonortheperformperiodpreviewpreviewreportreportsshownthetemplatetemplatesthatthethemethistocanbetheon +
ThresholdProcessor(40%)0,9ms48,4%0,4415anallowananalysisanalysisandarchivesbasedbecancancelcanclasscurcortainsdatacostscurrantdatadefineddiagramefficiencyequipment42forformulaformulasforgroupshigherhistorichourinisimitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewon +
ThresholdAdaptiveProcessor(24_24)0,4ms50,0%1,1113anallowananalysisanalysisanarchivesbasedbecancancanclasstocontainsdatalassequipmentdatadefineddataefficiencyequipmenthlforformulaformulasforgroupsthehisoricorinislassmodelmodelmodelszezenommalisedoronorzeperformperiodperiodprocessedreportreportsshowntablestemplatetemplatesthatthethemethistohlhlze +
AutoThresholdProcessor(Kapur)1,1ms50,0%0,5216anallowananalysisanalysisandarchivesbasedbecancancelmenclassfromcontainsdatacostsetdatadefineddiagramefficiencyequipmertetforformulaformulasfromgroupshigherhistorichourinisinitlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistonamenewmen +
ThresholdAdaptiveProcessor(16_16)0,5ms51,6%1,34`null`anlieanclasslieandarchivesbasedbecancansenclassorcostsdatacostssendatadefineddiagramefficiencyequipmentsenorformulaformutasorgroupsliehistorichourinisliemodelmodelmodelsdassenformutasoronordasperiodperiodpreviewprocessedreportreportsshowntablestemplatetemplatethisthethethistoliesensen +
ThresholdAdaptiveProcessor(12_12)0,6ms51,6%1,1110anallowananalysisanalysisandarchivesbasedbecancancanclassorcontainsdataclassequipmentdatadefineddiagramefficiencyequipment10orformulaformulasorgroupsihehistoricorinisihemodelmodelmodelsihebenormalisedoronoriheperiodperiodperiodprocessedreportreportshowntablestemplatetemplatesthatthethemeistotables10ienry
ThresholdProcessor(60%)0,8ms51,6%0,471manallowananalysisanalysisandarchivesbasedbecancancelrenclass1mcontainsdatacostscurrentdatadefineddiagramefficiencyequipment000forformulaformulasfromgroupshigheshistorichourinisgastlowermodelmodelsnamenewnormalisedokonornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovanıowinren -
ThresholdAdaptiveProcessor(08_08)0,4ms62,5%1,5514anllandassnameandeficheneybasedbecancancanclasstocurrantdatadasscurrentdatadefineddiagramefficiencycurrentllorformulasformulastogroupshehistoriceurinisllmodelmodelmodelnamehenormalisedononornameperiodperiodperiodprocessedreportreportshownnametemplatetemplatethethethethetonamellon -
ThresholdAdaptiveProcessor(18_18)0,5ms62,5%1,7011anclasanclassntheandarchivesbasedbecancanbecanclasstocostsdatacostscanbedatadefineddataefficiencyequipment11orformulaformulastogroupshihistorichourinishimodelmodelmodelnthebeformulasoronorhanperiodperiodperiodprocessedreportreportshownclasreportclashanthethehitocanbe11on -
ThresholdProcessor(50%)0,8ms62,5%0,5616anallowananalysisanalysisandarchivesbasedbecanconcdenclassconccontainsdatacostscurdatadefineddiagramefficiencyequipment40forformulaformulasforgroupshigherhistorichourinisbitlowermodelmodelsnamenewnormalisedoronornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewden -
ThresholdProcessor(10%)0,9ms67,2%1,4213anorananalysisanalysisandthisbasedbecancancelcanclassorntainsdatacostsquipmentdatadefineddiagramefficiencyquipment13forformulaformulasforgroupsthetorhourinisthetorthetcostsclasenewnomalisedokonorpiperformperiodperiodnomalisedreportreportshownthettemplatetemplatethetthethemethistoclasenewon -
ThresholdAdaptiveProcessor(10_10)0,4ms68,8%1,5919anvalueananalysisanalysisandthisbasedbecancancanclasstoclassdataclasscurrentdatadefineddiagramefficiencycurrentihefurformulaformulasficvalueihehistoricfurinisihemodelmodelmodelihebeformulasonononiheperformperiodperiodperiodreportreportsshownvaluetemplatetemplatethisthethethistovalueiheon -
ThresholdProcessor(0%)0,8ms90,6%3,3113`null`0505costsbasedcdcostsbased05cdbasedcdcostscdcostscostscostscd05basedhourefficiencyefficiency05hourformulaformula05hourhourhourhour050505hourcdcostsbased05formula050505basedreportcdreportbasedreportreporthourbasedreportreport0505hour0505hour05report -
ThresholdAdaptiveProcessor(04_04)0,4ms93,8%3,7310`null`classdatclassdatadataclassdata10datdatadatclassdatclassdataclassdatdatadatadataclassreportdatdatdataclassdataclassdatareportdata1010datdatadatdatadatadattemplate101010datareportreportreportclassreportreportdatadatatemplatetemplatedatdatdatadata10datadatreport -
ThresholdAdaptiveProcessor(06_06)1,0ms93,8%3,52`null``null`classbiclassasedasedclassasedbibiasedbiclassbiclasstemplateclassclassbiasedbiefficiencyefficiencybibitemplatetemplatebiclassbireportbibibibiasedasedclassasedbiasedbibibiasedreportbireportasedreportreportbiasedtemplatetemplatebibiasedbibiasedbireport -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,16`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%4,9110`null`udududududududududududududududududududududududududududududududududududududududududududududududududududududududududududududud -
ThresholdProcessor(100%)0,9ms100,0%5,16`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%5,16`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%3,67`null`adleoadsuleoadodespopedbpadpopedseysujoodespopedodeseuradpopedeurseyeureureurmoreumuuodjoodeseurmoreeurjojoleopopedodesodesmoreseypopedjojoeurpopedeurpopedpeseqpopedeureurjoodesmorepopedadueeurodesjoueeurleo +
ThresholdAdaptiveProcessor(08_08)0,6ms62,5%1,5514anllandassnameandeficheneybasedbecancancanclasstocurrantdatadasscurrentdatadefineddiagramefficiencycurrentllorformulasformulastogroupshehistoriceurinisllmodelmodelmodelnamehenormalisedononornameperiodperiodperiodprocessedreportreportshownnametemplatetemplatethethethethetonamellon +
ThresholdProcessor(50%)0,7ms62,5%0,5616anallowananalysisanalysisandarchivesbasedbecanconcdenclassconccontainsdatacostscurdatadefineddiagramefficiencyequipment40forformulaformulasforgroupshigherhistorichourinisbitlowermodelmodelsnamenewnormalisedoronornameperformperiodpreviewprocessedreportreportsshowntablestemplatetemplatesthatthethemethistovaluanewden +
ThresholdAdaptiveProcessor(04_04)1,4ms93,8%3,7310`null`classdatclassdatadataclassdata10datdatadatclassdatclassdataclassdatdatadatadataclassreportdatdatdataclassdataclassdatareportdata1010datdatadatdatadatadattemplate101010datareportreportreportclassreportreportdatadatatemplatetemplatedatdatdatadata10datadatreport +
AutoThresholdProcessor(Triangle)0,9ms100,0%5,16`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 64 tagged words.*

zrs_REPORTS_extended-analysis_017

@@ -624,191 +1819,125 @@
ProcessorElapsedWERCER (avg)Image1absoluteaggregatedaggregationanalysisanalyzerandareassociatebasedcalcculatecancelchartscomconsumptioncopadatacounterscreateCYCLICdataDATAdistributionENERGYequipmentextendedfillerfilteringforfromgroupgroupshistorianiniskwhlabellerMACHINEmodelingnamenewofokonpackerpageperformperiodPMpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosthosetrendtwotypesvaluesvariablewithwwwZAD_GBLzenon
ThresholdProcessor(30%)0,9ms31,6%0,7910associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsokconsumpeondatacounterscreate10data10distribution10equipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabeller10modelingnamenewofokonpackernameperformperiod10previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithnewzad_gblon
ThresholdProcessor(60%)0,8ms35,5%0,8810associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsokproductiondatacounterscreatecanceldataaddistributioncancelequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabelercancelmodelingarenewofokonpackerareperformperiodadpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblon -
AutoThresholdProcessor(Kapur)1,0ms36,8%0,9110calculateaggregatedaggregationanalysisanalysisandareaggregatedbasedcalculatecancelchartsokcommamptondatacounterscreaterevedatarevedistributionreveequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerrevemodelingnamenewofokonpackernameperformperiodalpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithwanzad_gblon -
ThresholdProcessor(20%)1,0ms38,2%0,93`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsokproductionoatacounterscreatekerdatakerdistributionkerequipmentexterdedfillerfilteringforforgroupgroupshistorianiniskerfillerkermodelingarenewofokonpackerareperformperiodacpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblon -
ThresholdProcessor(50%)0,8ms40,8%0,7910associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateconcchartscomconsumptiondatacounterscreateasdataasdistributionasequipmentextendedfillerfilteringforcomgroupgroupshistorianinistwolabellerasmodelingnamenewofononpackernameperformperiodaspreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblon -
AutoThresholdProcessor(OTSU)0,9ms40,8%1,1110associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatearechartspmproductiondatacounterscreateperioddataaredistributionperiodequipmentextendedfillerfiteringforforgroupgroupshistorianinistwofillerperiodmodelingareareofononpackerareperformperiod10periodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwoperiodon -
ThresholdAdaptiveProcessor(16_16)0,4ms42,1%1,0810associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatenewchartsfonproductiondatacounterscreate10data10distribution10equipmentextendedlabellerfiteringforfongroupgroupshistorianinistwolabeller10modelingarenewofononpackerareperformperform10previewpriceproductionrelativereportreportsselectionshownstandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblfon -
ThresholdAdaptiveProcessor(20_20)0,6ms42,1%1,2810associateaggregatedaggregationanalysisanalysisandareassociatebasedassociatepricechartswmproductiondatacounterscreatewmdatawmdistributionwmequipmentstandardfillerfiteringforforgroupgroupshistorianiniswmlabellerwmfiteringarewmofofonfilerareperformperiodwmperiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithwmzad_gblon -
ThresholdProcessor(40%)1,5ms42,1%0,86`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartspmproductiondatacounterscreate7068data7068distribution7068equipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabeller7068modelingnamenewofofonpackernameperformperiodadpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gslon -
ThresholdAdaptiveProcessor(22_22)0,5ms43,4%1,24`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatetableschartsumproductiondatachartscreatewudatawudistributionwuequipmentextendedtablesfiteringforforgroupgroupshistorianiniswulabeiterwufiteringarewuofofonpackerareperformperiodwuperiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithwuzad_gblon -
ThresholdProcessor(70%)1,0ms43,4%1,1310associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatevalueschartsofproductiondatacounterscreatezaddatazaddistributionzadequipmentextendedfillerfikeringforforgroupgroupshistorianinistwotableszadmodelingarezadofofonpackerareperformpesiod10pesiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozadon -
ThresholdAdaptiveProcessor(24_24)1,9ms43,4%1,1410associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatepackerchartspmproductiondatacounterscreatechartsdatamedistributionchartsequipmenttrendfillerfillerforforgroupgrouphistorianinistwolabollerchartsmodelingmeneofononpackerareperformperiodmeperiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon -
ThresholdProcessor(80%)1,8ms46,1%1,42`null`calculateaggregatedaggregatedanalysisanalysisandarecalculatebasedcalculatearechartspmproductiondatacounterscreatepmdatapmdistributionpmequipmentextendedtablesfiteringforforgroupsgroupshistorianinisithtablespmmodelingarepmofononpackerareperformperiodpmperiodpriceproductioncreatereportreportsproductionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwopmon -
ThresholdAdaptiveProcessor(18_18)0,5ms47,4%1,2410associateaggregatedaggregationanalysisanalysisandareassociatebasedassociatepackerchartsfamproductiondatacounterscreatefamdatafamdistributionfamequipmentextended-fillerfiteringfamfamgroupgroupshistorianinistwolabellerfammodelingfamfamofofinpackerareperformperformijpricepriceproductionrelativereportreportselectionshownstandardtablestemplatestemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblreport -
ThresholdProcessor(10%)0,9ms48,7%1,0110associateagaregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsforproductiondatacounterscreate10data10distribution10equipmentstandardfillerfilteringforforgroupgrouphistorianinistwolabeller2ad_gblmodelingarenewofakonpackerareperformperform10previewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwo2ad_gblon -
ThresholdAdaptiveProcessor(08_08)0,4ms55,3%1,83`null`labslleraggregatedaggregationanalysisanalysisandthecreatebasedcreatepackerchartsonproductiondatacreatecreatepackerdatathedistributionpackerequipmentlabellerpackerfilteringongroupgroupgrouphistorianinistwolabellerpackerfilteringthetheofononpackerpackerperformpriceonpricepriceproductioncreatereportreportselectionshownandvaluestemplatetemplatesthatthethemethemethisthosethosethetwotypesvaluesvariablewithtwopackeron -
ThresholdAdaptiveProcessor(12_12)0,5ms55,3%1,57`null`associateaggregatedaggregationanalysisanalysisandareassociatebetemplatevaluesthatpmproductiondatacounterscreatebedatabedistributionbeequipmentextendedfillerfilleroftwogroupgrouphistorianbebetwofillerbemachinearenewofofofpackerareperformperformbecreatepriceproductionrelativereportreportselectionthosestandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblbe -
ThresholdAdaptiveProcessor(14_14)0,4ms61,8%2,09`null`associateaggregatedaggregatedanalysisanalysisandareassociateandassociatevaluesthatnmproductiondatacounterscreatenmdatanmdistributionnmequipmenttrendvalueshistorianofnmoftvalueshistoriannmestwovaluesnmtrendnmnewofofofvaluesareperformperformnmpricepriceproductioncreatereportreportproductionthosestandardvaluestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluespricewithnewnmnm -
ThresholdProcessor(90%)1,1ms65,8%2,22`null`reportaggregatedaggregationanalysisanalysisandarecreatearecreatearethatofselectiondatacreatecreatezadatazadistributionzaequipmentcreatearemodelingofaregroupgrouphistorianzazathmodelingzamodelingarezaofofondareareperformperformzapreviewareselectionrelativereportreportselectionthoseandtypestemplatestemplatesthatththemetherethisthisthosearetwatypesarevariablewithtwazaza -
ThresholdAdaptiveProcessor(10_10)0,4ms73,7%2,42`null`associateaggregatedaggregatedanalysisanalysisandareassociateandassociatecathatcadistributiondatatercreate2146data2146distribution2146equipmentextendedithemodelingterregreatégreatéhistoriancacatwopacker2146modelingarereofofofpackerarereporttrendcacreateremodelingcreatereportreportgreatéthoseextendedtypestemplatestemplatesthatithethemethemethisthosethosetrendtwotypespackerzad_gblithetwozad_gblre -
ThresholdAdaptiveProcessor(06_06)1,0ms81,6%2,99`null`templatecreatecreatevaluesvaluesandihecreatehosecreateficethatmonmondatascreatecreatedatasdatasficehistoriandatasficegeierficehistorianmonficegeiervalueshistorianinintwogeierdatasmonficeperofofmonperficeperformperformingeierpriceproductcreatereportreportgeiermondatajandvaluestemplateemplatesthatthethemethemethisthisthosetheytwotheyvaluescreateficetwodatasmon -
ThresholdAdaptiveProcessor(04_04)0,4ms89,5%3,82`null`templatetrendtrendcyclicbasedtrendtrendtemplatebasedtemplatebaseddataofcyclicdatathistrendtrenddataoftrendtrendtrendtrendcyclictrendofoftrendtrendtrendofofofvariabletrendmachinedataofofofofbaseddatareporttrendoftrendtrendmachinetemplatereportreportmachineoftrendthistemplatetemplatethisthistrendtrendthisthisthistrendofthisbasedvariabledataoftrendtrend -
ThresholdProcessor(0%)0,8ms90,8%3,5510vanableaggregationaggregationvanableflierandnehistorianzadvanablenezadpmaggregationzadnerelative07zad07historian07equipmentneflierhistorianfmfmgroupgrouphistorian070707flier07fliernene070707packernepmne07flierneselectionrelativeneneselectiongroupandvanablerelativerelativezadnenene0707neand07nefliervanablewith0707ne -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Kapur)1,1ms36,8%0,9110calculateaggregatedaggregationanalysisanalysisandareaggregatedbasedcalculatecancelchartsokcommamptondatacounterscreaterevedatarevedistributionreveequipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabellerrevemodelingnamenewofokonpackernameperformperiodalpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithwanzad_gblon +
ThresholdProcessor(20%)0,9ms38,2%0,93`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartsokproductionoatacounterscreatekerdatakerdistributionkerequipmentexterdedfillerfilteringforforgroupgroupshistorianiniskerfillerkermodelingarenewofokonpackerareperformperiodacpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblon +
ThresholdProcessor(50%)0,7ms40,8%0,7910associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculateconcchartscomconsumptiondatacounterscreateasdataasdistributionasequipmentextendedfillerfilteringforcomgroupgroupshistorianinistwolabellerasmodelingnamenewofononpackernameperformperiodaspreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblon +
AutoThresholdProcessor(OTSU)1,1ms40,8%1,1110associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatearechartspmproductiondatacounterscreateperioddataaredistributionperiodequipmentextendedfillerfiteringforforgroupgroupshistorianinistwofillerperiodmodelingareareofononpackerareperformperiod10periodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwoperiodon +
ThresholdAdaptiveProcessor(16_16)0,5ms42,1%1,0810associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatenewchartsfonproductiondatacounterscreate10data10distribution10equipmentextendedlabellerfiteringforfongroupgroupshistorianinistwolabeller10modelingarenewofononpackerareperformperform10previewpriceproductionrelativereportreportsselectionshownstandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithnewzad_gblfon +
ThresholdAdaptiveProcessor(20_20)0,9ms42,1%1,2810associateaggregatedaggregationanalysisanalysisandareassociatebasedassociatepricechartswmproductiondatacounterscreatewmdatawmdistributionwmequipmentstandardfillerfiteringforforgroupgroupshistorianiniswmlabellerwmfiteringarewmofofonfilerareperformperiodwmperiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithwmzad_gblon +
ThresholdProcessor(40%)0,9ms42,1%0,86`null`associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatecancelchartspmproductiondatacounterscreate7068data7068distribution7068equipmentextendedfillerfilteringforforgroupgroupshistorianinistwolabeller7068modelingnamenewofofonpackernameperformperiodadpreviewpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gslon +
ThresholdAdaptiveProcessor(24_24)0,4ms43,4%1,1410associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatepackerchartspmproductiondatacounterscreatechartsdatamedistributionchartsequipmenttrendfillerfillerforforgroupgrouphistorianinistwolabollerchartsmodelingmeneofononpackerareperformperiodmeperiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozad_gblon +
ThresholdProcessor(70%)0,9ms43,4%1,1310associateaggregatedaggregationanalysisanalysisandareassociatebasedcalculatevalueschartsofproductiondatacounterscreatezaddatazaddistributionzadequipmentextendedfillerfikeringforforgroupgroupshistorianinistwotableszadmodelingarezadofofonpackerareperformpesiod10pesiodpriceproductionrelativereportreportsselectionshownstandardtablestemplatetemplatesthatthethemetherethisthisthosetrendtwotypesvaluesvariablewithtwozadon +
ThresholdProcessor(80%)0,8ms46,1%1,42`null`calculateaggregatedaggregatedanalysisanalysisandarecalculatebasedcalculatearechartspmproductiondatacounterscreatepmdatapmdistributionpmequipmentextendedtablesfiteringforforgroupsgroupshistorianinisithtablespmmodelingarepmofononpackerareperformperiodpmperiodpriceproductioncreatereportreportsproductionshownstandardtablestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwopmon +
ThresholdAdaptiveProcessor(08_08)0,6ms55,3%1,83`null`labslleraggregatedaggregationanalysisanalysisandthecreatebasedcreatepackerchartsonproductiondatacreatecreatepackerdatathedistributionpackerequipmentlabellerpackerfilteringongroupgroupgrouphistorianinistwolabellerpackerfilteringthetheofononpackerpackerperformpriceonpricepriceproductioncreatereportreportselectionshownandvaluestemplatetemplatesthatthethemethemethisthosethosethetwotypesvaluesvariablewithtwopackeron +
ThresholdAdaptiveProcessor(12_12)0,6ms55,3%1,57`null`associateaggregatedaggregationanalysisanalysisandareassociatebetemplatevaluesthatpmproductiondatacounterscreatebedatabedistributionbeequipmentextendedfillerfilleroftwogroupgrouphistorianbebetwofillerbemachinearenewofofofpackerareperformperformbecreatepriceproductionrelativereportreportselectionthosestandardtypestemplatetemplatesthatthethemetherethisthosethosetrendtwotypesvaluesvariablewithtwozad_gblbe +
ThresholdAdaptiveProcessor(04_04)1,4ms89,5%3,82`null`templatetrendtrendcyclicbasedtrendtrendtemplatebasedtemplatebaseddataofcyclicdatathistrendtrenddataoftrendtrendtrendtrendcyclictrendofoftrendtrendtrendofofofvariabletrendmachinedataofofofofbaseddatareporttrendoftrendtrendmachinetemplatereportreportmachineoftrendthistemplatetemplatethisthistrendtrendthisthisthistrendofthisbasedvariabledataoftrendtrend +
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 76 tagged words.*

zrs_ZAMS_3rd-connector_014

ProcessorElapsedWERCER (avg)Image3rdarchiveassignedbottlecancelconnectorcycledatabasedatasourcedddescriptionequipmentforglassgroupshhidentificationlinemediametadatammnewnextokpartyplantpreviousprojectssthetimetotalvariablesvisualname -
ThresholdProcessor(10%)0,9ms17,6%0,413rdarchiveassignedbottlecancelconnectorcycledatabasesourcedddescriptionequipmentforglassgroupshhidentificationlineddmetadatammnewnextokpartypartypreviousprojectssthetimedatavariablesvisualname -
ThresholdProcessor(20%)1,0ms32,4%0,853rdarchiveassignedbottlecycleconnectorcycledatabasesourcedddescriptionequipmentforglassgroupshhidentificationlinemmmetadatammnewnewmmpartypartygroupsprojectmmthetimebottlevariablesvisualname -
AutoThresholdProcessor(Kapur)1,0ms35,3%0,823rdarchiveassignedbottlenewconnectorcycledatabasesourcehedescriptionequipmentforglassgroupsheidentificationlinemediametadatahenewnewokpartyglassgroupsprojecthethetimedatavariablesvisualname -
ThresholdProcessor(0%)0,8ms38,2%1,153rdarchiveassignedtotalcancelconnectorcycledatabasesourceokdescriptionequipmentforgroupsgroupsokidentificationtimemetadstametadstammnewnextokpartypartygroupsprojectokthetimetotalvariablestime +
ThresholdProcessor(20%)0,9ms32,4%0,853rdarchiveassignedbottlecycleconnectorcycledatabasesourcedddescriptionequipmentforglassgroupshhidentificationlinemmmetadatammnewnewmmpartypartygroupsprojectmmthetimebottlevariablesvisualname +
AutoThresholdProcessor(Kapur)1,1ms35,3%0,823rdarchiveassignedbottlenewconnectorcycledatabasesourcehedescriptionequipmentforglassgroupsheidentificationlinemediametadatahenewnewokpartyglassgroupsprojecthethetimedatavariablesvisualname
ThresholdProcessor(30%)0,9ms41,2%1,183rdarchiveassignedbottlecycleconnectorcycledatabasesourcehhdescriptionequipmentforglassgroupshhdescriptionlinemediametadatahhnewnewhhpartyplantpeiprojecthhthetimebottlevariablestime -
ThresholdAdaptiveProcessor(18_18)0,5ms61,8%2,623rdarchivelinebottlelineconnectorbottledatabasedatabase86connectorplantforglassglass86connectorlinenewmetadata86newnew86partyplantarchiveplant86thelinetotalarchiveline -
ThresholdProcessor(40%)1,5ms61,8%2,00sscycleassignedsourcecycleprojectcycledatasourcessdescriptionequipmentssssgroupsssidentificationtimemediametadatammssssssdatadatagroupsprojectsstimetimedatavariablesvisualname -
ThresholdAdaptiveProcessor(20_20)0,6ms67,6%2,883rdarchivelinebottelineconnectorbottedatabasedatabaseatpartyplantforglassoosatconnectorline3rddatabaseatnewnewoospartyplantoosplantoosthelinebottedatabaseline -
ThresholdAdaptiveProcessor(24_24)1,9ms67,6%3,003rdarchivelinebottlenewconnectorbottledatabasedatabaseqfconnectorlineforglassglassqfconnectorlinenewdatabaseqfnewnewqfpartyglassarchivenewqfthethebottlearchiveline -
ThresholdAdaptiveProcessor(22_22)0,5ms73,5%3,243rdarchivenewthenewconnectorthedatabasedatabaseatpartyplantforplant3rdatconnectornewnewdatabaseatnewnewatpartyplantarchiveplantatthetheatdatabasedatabase -
ThresholdAdaptiveProcessor(06_06)1,0ms85,3%3,88`null`lineassignedbottlelinebottlebottlebottleassigned`null`equipmentequipment`null`groupsgroups`null`equipmentlinelinebottle`null`lineline`null`bottlelinegroupsgroups`null`linelinebottleassignedline -
ThresholdAdaptiveProcessor(04_04)0,4ms88,2%4,26`null`assignedassignedgroupsgroupsassigned`null`assignedassigned`null`identificationequipment`null`groupsgroups`null`identification`null``null`assigned`null``null``null``null``null``null`groupsgroups`null``null``null`groupsassignedassigned -
ThresholdAdaptiveProcessor(08_08)0,4ms88,2%4,35`null`assignedassignedprojectprojectproject`null`assignedassigned`null`equipmentequipment`null`groupsgroups`null`equipment`null``null`project`null``null``null``null``null`projectgroupsproject`null``null``null`groupsassignedassigned -
ThresholdProcessor(70%)1,0ms88,2%4,09eyaoeytotaleytotaleytotalaoeymediaplantfoplantfohhmediaplantmediamediaeyeyeyeyplantplantmediaplanteyhheytotaltotaltotal -
ThresholdAdaptiveProcessor(10_10)0,4ms91,2%4,09netassignedassignednetnetnetnetnetassigned`null`equipmentequipmentnetgroupsgroups`null`equipmentnetnetnet`null`netnet`null`netnetgroupsnet`null`netnetnetassignedassigned -
AutoThresholdProcessor(OTSU)0,9ms91,2%4,03watietietotalwatotaltietotaltotalwatieplantaoplanttotalwamediatiemediamediawawawawaplantplantmediaplantwatietietotaltotaltotal -
ThresholdProcessor(90%)1,1ms91,2%4,21tbmediaebtotalebtotaltbtbtotaltbmediaplanttbplanttotaltbmediaplantmediamediatbebebtbplantplantmediaplanttbtbtbtotaltotaltotal -
ThresholdAdaptiveProcessor(14_14)0,4ms94,1%4,65`null`cycletimecyclecyclecyclecycletimetime`null`timetime`null`cyclecycle`null`timetimecycletime`null``null`time`null`cyclecycletimecycle`null`timetimetimecycletime -
ThresholdProcessor(50%)0,8ms94,1%4,47aoaoaoaoaoplantaohabaoaomediaplantaoplantaoaomediaplantmediamediaaoaoaoaoplantplantmediaplantaoaoaoaohabplant +
ThresholdProcessor(40%)0,9ms61,8%2,00sscycleassignedsourcecycleprojectcycledatasourcessdescriptionequipmentssssgroupsssidentificationtimemediametadatammssssssdatadatagroupsprojectsstimetimedatavariablesvisualname +
ThresholdAdaptiveProcessor(24_24)0,4ms67,6%3,003rdarchivelinebottlenewconnectorbottledatabasedatabaseqfconnectorlineforglassglassqfconnectorlinenewdatabaseqfnewnewqfpartyglassarchivenewqfthethebottlearchiveline +
ThresholdAdaptiveProcessor(20_20)0,9ms67,6%2,883rdarchivelinebottelineconnectorbottedatabasedatabaseatpartyplantforglassoosatconnectorline3rddatabaseatnewnewoospartyplantoosplantoosthelinebottedatabaseline +
ThresholdAdaptiveProcessor(08_08)0,6ms88,2%4,35`null`assignedassignedprojectprojectproject`null`assignedassigned`null`equipmentequipment`null`groupsgroups`null`equipment`null``null`project`null``null``null``null``null`projectgroupsproject`null``null``null`groupsassignedassigned +
ThresholdProcessor(70%)0,9ms88,2%4,09eyaoeytotaleytotaleytotalaoeymediaplantfoplantfohhmediaplantmediamediaeyeyeyeyplantplantmediaplanteyhheytotaltotaltotal +
ThresholdAdaptiveProcessor(04_04)1,4ms88,2%4,26`null`assignedassignedgroupsgroupsassigned`null`assignedassigned`null`identificationequipment`null`groupsgroups`null`identification`null``null`assigned`null``null``null``null``null``null`groupsgroups`null``null``null`groupsassignedassigned +
AutoThresholdProcessor(OTSU)1,1ms91,2%4,03watietietotalwatotaltietotaltotalwatieplantaoplanttotalwamediatiemediamediawawawawaplantplantmediaplantwatietietotaltotaltotal +
ThresholdProcessor(50%)0,7ms94,1%4,47aoaoaoaoaoplantaohabaoaomediaplantaoplantaoaomediaplantmediamediaaoaoaoaoplantplantmediaplantaoaoaoaohabplant
ThresholdProcessor(60%)0,8ms97,1%4,79habhabbysbyshabplantbyshabhab`null`bysplanthabplantbyshabplantplanthabplant`null`habhab`null`plantplantbysplantbyshabhabhabhabplant -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,21gagagabogabogagagagabojubogagagagagagagagagagagagagabobogagagagagaga -
ThresholdAdaptiveProcessor(12_12)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(80%)1,8ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(12_12)0,6ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
AutoThresholdProcessor(Triangle)0,9ms100,0%5,88`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 34 tagged words.*

zrs_ZAMS_filter-alarmgroup_001

ProcessorElapsedWERCER (avg)Imagealarmalldeselectemergencyenableeqauipmentexternalfailuregroupmachineprefilterprefilteringselectstaticstop -
ThresholdProcessor(40%)1,5ms13,3%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop -
ThresholdProcessor(50%)0,8ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop +
ThresholdProcessor(40%)0,9ms13,3%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop +
ThresholdProcessor(50%)0,7ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop
ThresholdProcessor(30%)0,9ms20,0%0,20alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringselectstaticstop -
ThresholdProcessor(20%)1,0ms26,7%0,40alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilterselectstaticstop -
ThresholdAdaptiveProcessor(22_22)0,5ms40,0%1,13alarmalarmenableemergencyenableequipmentexternalfailuregroupmachineprefitterprefitteringalarmstaticstop +
ThresholdProcessor(20%)0,9ms26,7%0,40alarmalldeselectemergencyenableequipmentextemalfailuregroupmachineprefilterprefilterselectstaticstop
ThresholdProcessor(60%)0,8ms40,0%1,07alarmaaenableemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringalamstaticstop -
ThresholdAdaptiveProcessor(12_12)0,5ms46,7%1,27alarmalamemergencyemergencyenableequipmentexémalfailuregroupmachineprefilterprefitteringalamstaticstop -
AutoThresholdProcessor(OTSU)0,9ms46,7%1,07alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringerstaticstop -
ThresholdAdaptiveProcessor(16_16)0,4ms53,3%1,27alarmalametemalemergencyenableequipmentetemalfailuregroupmachineprefiterprefitteringetemalstaticstop -
ThresholdAdaptiveProcessor(18_18)0,5ms53,3%1,07alarmalamenableemergencyenableequipmentexternalfailuregroupmachineprefiterprefitteringalamstaticstop -
ThresholdProcessor(70%)1,0ms53,3%1,20alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefitterprefitteringalamstaticstop -
ThresholdProcessor(80%)1,8ms53,3%1,53alarmaanemergencyemergencyenableequipmentextemalfailuregroupmachineprefikerprefikeralarmstaticstop -
ThresholdAdaptiveProcessor(10_10)0,4ms60,0%1,47alarmalamseeremergencyenableenableextemalfailuregroupmachineprefiterprefitteringseerstaticstep -
ThresholdAdaptiveProcessor(20_20)0,6ms60,0%1,13alarmalameternalemergencyenableequipmenteternalfailuregroupmachineprefiterprefiteringalarmstaticstop -
AutoThresholdProcessor(Kapur)1,0ms60,0%1,53alarmaimemergencyemergencyenableequipmentextemalfairegroupmachineprefiterprefiteralarmstaticstop -
ThresholdAdaptiveProcessor(24_24)1,9ms60,0%1,20alarmalamemergencyemergencyenableequipmentextemalfailuregroupmachineprefitterprefiteringalamstaticstop -
ThresholdAdaptiveProcessor(08_08)0,4ms73,3%2,73alarmieenableequipmentenableequipmentenablefailuregroupmachineprefitteringprefitteringieiegroup -
ThresholdAdaptiveProcessor(14_14)0,4ms73,3%0,67alarmaldeselectemergencyenableequipmentbtemalfailuregroupmachineprefitterprefiteringdeselectstaticstop -
ThresholdAdaptiveProcessor(04_04)0,4ms80,0%4,27wannwannfailuremachinewannwannwannfailuregroupmachinepretitenngpretitenngwannwanngroup -
ThresholdProcessor(10%)0,9ms80,0%3,53alamalamenableenableenableenableenableenablegroupenableprefitterprefitterstaticstaticoroup -
ThresholdAdaptiveProcessor(06_06)1,0ms80,0%3,80alarmalarmenableenableenableenableenablealarmgroupalarmprefitteringprefitteringalarmalarmgroup -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,73bornafdeibornafdeiborndeiborndeideideideideidei -
ThresholdProcessor(0%)0,8ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(90%)1,1ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(12_12)0,6ms46,7%1,27alarmalamemergencyemergencyenableequipmentexémalfailuregroupmachineprefilterprefitteringalamstaticstop +
AutoThresholdProcessor(OTSU)1,1ms46,7%1,07alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefilterprefilteringerstaticstop +
ThresholdAdaptiveProcessor(16_16)0,5ms53,3%1,27alarmalametemalemergencyenableequipmentetemalfailuregroupmachineprefiterprefitteringetemalstaticstop +
ThresholdProcessor(80%)0,8ms53,3%1,53alarmaanemergencyemergencyenableequipmentextemalfailuregroupmachineprefikerprefikeralarmstaticstop +
ThresholdProcessor(70%)0,9ms53,3%1,20alarmalamenableemergencyenableequipmentextemalfailuregroupmachineprefitterprefitteringalamstaticstop +
ThresholdAdaptiveProcessor(24_24)0,4ms60,0%1,20alarmalamemergencyemergencyenableequipmentextemalfailuregroupmachineprefitterprefiteringalamstaticstop +
ThresholdAdaptiveProcessor(20_20)0,9ms60,0%1,13alarmalameternalemergencyenableequipmenteternalfailuregroupmachineprefiterprefiteringalarmstaticstop +
AutoThresholdProcessor(Kapur)1,1ms60,0%1,53alarmaimemergencyemergencyenableequipmentextemalfairegroupmachineprefiterprefiteralarmstaticstop +
ThresholdAdaptiveProcessor(08_08)0,6ms73,3%2,73alarmieenableequipmentenableequipmentenablefailuregroupmachineprefitteringprefitteringieiegroup +
ThresholdAdaptiveProcessor(04_04)1,4ms80,0%4,27wannwannfailuremachinewannwannwannfailuregroupmachinepretitenngpretitenngwannwanngroup +
AutoThresholdProcessor(Triangle)0,9ms100,0%7,00`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 15 tagged words.*

zrs_ZAMS_OLEDB-server_001

ProcessorElapsedWERCER (avg)ImageaaccessadadbcadhocallallowappliedarecancelcdCDSBG036connectiondbdisallowdriversdynamicenableforgeneralharaldrhelpindexinprocesslevellikelinkedmicrosoftmynamenestednonokoleonlyoperatoroptionspageparameterpathpropertiesproviderqueriesreadyscriptselectserverserverssqlsupportsthatthesethistotransactedupdatesuseusingviewZA2zero -
ThresholdProcessor(50%)0,8ms39,3%0,82asaccessbdadhocadhocallallowappliedareallcdcdsbg036connectionbddisallowserversdynamicenablenongeneralallowhepindexinprocesslevellikelinkeddisallowbdnamenestednonbdonlyonlyoperatoroptionspageparameterpathpropertiesproviderquenesreadyserverselectserverserverssemsupportsthatthesethistotransactedupdatesuseusingviewsemzero -
AutoThresholdProcessor(OTSU)0,9ms42,6%1,30asaccessasadhocadhocallallowallowareindextocdsbgo36connectiontodisallowserversdynamicallnonlevelallowallindexinprocesslevellikelinkedmy_sql_toarenestednonnonallonlyoperatoroptionspathparameterpathqueriesproviderqueriesreadyserverserverserverserversallsupportsthatthesethistotransactedupdatesuseusingviewnonzero +
ThresholdProcessor(50%)0,7ms39,3%0,82asaccessbdadhocadhocallallowappliedareallcdcdsbg036connectionbddisallowserversdynamicenablenongeneralallowhepindexinprocesslevellikelinkeddisallowbdnamenestednonbdonlyonlyoperatoroptionspageparameterpathpropertiesproviderquenesreadyserverselectserverserverssemsupportsthatthesethistotransactedupdatesuseusingviewsemzero +
AutoThresholdProcessor(OTSU)1,1ms42,6%1,30asaccessasadhocadhocallallowallowareindextocdsbgo36connectiontodisallowserversdynamicallnonlevelallowallindexinprocesslevellikelinkedmy_sql_toarenestednonnonallonlyoperatoroptionspathparameterpathqueriesproviderqueriesreadyserverserverserverserversallsupportsthatthesethistotransactedupdatesuseusingviewnonzero
ThresholdProcessor(60%)0,8ms44,3%1,21asaccesscdadhocadhocallalowappliedareindexcdcdsbgo36connectioncddisallowserversoynamicalltolevelalowallindexinprocesslevellikelinkedmy_sql_cdarenestednoncdallonlyoperatoroptionspathparameterpathqueriesproviderqueriesreadyserverserverserverserversallsupportsthatthesethistotransactedupdatesuseusingviewcdzero -
ThresholdProcessor(70%)1,0ms44,3%1,31asaccessasadhocadhocallallowappliedarelinkedaslinkedoptionsasdisallowserversdynamicenabletolevelicalsqlindexinprocesslevellikelinkedicalmy_namenestednonasonlyonlyoperatoroptionsnameparameterpathqueriesproviderqueriesicalserversqlserverserverssqlsupportsthatthesethistotransactedupdatesuseusinglikemy_zero -
ThresholdProcessor(40%)1,5ms44,3%1,10asaccessasadhocadhocallallowappliedareuinked3232connection32disallowserversdynamicnametogeneralservermewindexinprocesslevellinkedlinkedmprocess32namenestednon32onlyonlyoperatoroptionspageparameterpathprogressproviderquenesreadyserverselectaserverserversallsupportsthatthesethistotransactedupdatesuseusingmew32zero -
AutoThresholdProcessor(Kapur)1,0ms45,9%1,34asaccessbdadhocadhocallallowappliedarelinkedbdumoptionsumdisallowserversdynamicenabletogeneralallowhebindexinprocesslevellinkedlinkedicaumnamenestednonumallonlyoperatoroptionsareparameterpathqueriesproviderqueriesicaserverserverserverserversallsupportsthatthesethistotransactedupdatesuseuseicaumzero +
ThresholdProcessor(40%)0,9ms44,3%1,10asaccessasadhocadhocallallowappliedareuinked3232connection32disallowserversdynamicnametogeneralservermewindexinprocesslevellinkedlinkedmprocess32namenestednon32onlyonlyoperatoroptionspageparameterpathprogressproviderquenesreadyserverselectaserverserversallsupportsthatthesethistotransactedupdatesuseusingmew32zero +
ThresholdProcessor(70%)0,9ms44,3%1,31asaccessasadhocadhocallallowappliedarelinkedaslinkedoptionsasdisallowserversdynamicenabletolevelicalsqlindexinprocesslevellikelinkedicalmy_namenestednonasonlyonlyoperatoroptionsnameparameterpathqueriesproviderqueriesicalserversqlserverserverssqlsupportsthatthesethistotransactedupdatesuseusinglikemy_zero +
AutoThresholdProcessor(Kapur)1,1ms45,9%1,34asaccessbdadhocadhocallallowappliedarelinkedbdumoptionsumdisallowserversdynamicenabletogeneralallowhebindexinprocesslevellinkedlinkedicaumnamenestednonumallonlyoperatoroptionsareparameterpathqueriesproviderqueriesicaserverserverserverserversallsupportsthatthesethistotransactedupdatesuseuseicaumzero
ThresholdProcessor(30%)0,9ms49,2%0,82asaccessasodbcadnocallallowspalıedarecanceltosentconnectondbdisalowserversdynamicenableforlevelallowhelpindexinprocesslevellxelinkedmicrosofttonamenestednonokoleontyoperatoroptionspageparameterpathpropertiesproviderquenesreadysentselectserverserversallsupportsthatthesethistotransactedupdatesuseusingdredrezero -
ThresholdProcessor(80%)1,8ms55,7%1,80asaccessbdadhocadhocallallowlikeareindexbdbdoptionsbddisallowserversupdatesonlytolevelallowonlyindexinprocesslevellikeinkedinprocessbdarenestednonbdonlyonlyoperatoroptionsareoperatorpathqueriesproviderqueriesbdlikelevelserversserversallsupportsthatthesethistotransactedupdatesuseuselikebdzero -
ThresholdAdaptiveProcessor(12_12)0,5ms67,2%2,10`null`accessilodbcachocallallappliedaremaililmailoperctordballdriversmailmailforserversmailtheseinkedaccessmaililinkedmicrosoftilarethesenoniloleoleoperctoroptionsareprovidermailsupportsproviderserversmailmailserversserversserversilsupportsthatthesethistotrensactedupdatesuseusingililare -
ThresholdAdaptiveProcessor(22_22)0,5ms68,9%2,28`null`ssniodbcodbcallallappliedaregenerniappliedconnectondballdriversnigallforgenerallallinkedinkedgenerniginkedmicrosoftnipagegenernignioleoleserveroptionspageproviderpageproviderproviderserversgenerserverselectaserverserversssserversthatthesethistoappliedpageuseusingnignigfor -
ThresholdProcessor(20%)1,0ms72,1%2,07alcancelalodbcodbcalprowapticrsarecancelcoapticrsconnecbondbprowserversdynamicnameforgererallrxedheslinkedapticrslrxedlinkedlinkedmicrosoftibnamehescookoleonsprowoptionspageparameterpageprowderproviderqueneshesoptselectserverserversalserversthetthesethiscocancelpagebsusingibibcer -
ThresholdAdaptiveProcessor(08_08)0,4ms75,4%2,54`null`arecdallallallallappliedareallcdcdsbg036connectionnnallserversnnalltogeallgelinkedprogressserverlinkedlinkedprovnnareservernnnngennserveroptionsgeproviderallpropertiesproviderserversgeserverserversserverserversallserversthatthisthistoappliedapplieduseuseviewnnge -
ThresholdProcessor(90%)1,1ms78,7%2,90`null`theseallallallallallappliedarelinkedtoinfoedoptionstoallserversinfoedalltoserversalltheseinfoedinfoedtheselinkedlinkedinfoedtoareinfoedtotoallalloptionsoptionsareprovideralloptionsproviderserversallusingserversserversserversallserversthatthesethistoinfoedapplieduseusingareallare -
ThresholdAdaptiveProcessor(14_14)0,4ms80,3%2,92`null`theseallallallallallappliedareinkedtomy-sql-optionstoallserversmy-sql-alltoserversallallinkedinkedserverinkedinkedmy-sql-toareinkedtotoallallserveroptionsareproviderallproviderproviderserversallserverserversserverserversallserversthatthesethistoappliedapplieduseuseuseallto -
ThresholdAdaptiveProcessor(06_06)1,0ms80,3%2,59asaccesscdsdhocsdhocassdhocpagepageaccesscdcdsbg036connectionsndigallawserverssdhocpagefurgenerelserverzeroindexaccesslevelpagegnkedaccesssnpagegnkedsnsnsnor'yzerooptionpagepagepathoptionserverserversor'yserverselectaserverserverssnserversthisthisthissngnkedpagesnusingsnsnzero -
ThresholdAdaptiveProcessor(20_20)0,6ms82,0%2,98`null`driversdbodbcodbcoleolepagepagepagedbmy_sql_connectiondbmy_sql_driversmy_sql_pageforgeneralserveroleodbcdriversserverpageservermicrosoftdbpageserverfordboleoleserveroptionspageproviderpagedriversproviderserverpageserverselectaserverserverdbdriversodbcpageodbcdbconnectionpageoleoptionsoledbfor -
ThresholdAdaptiveProcessor(24_24)1,9ms86,9%3,34`null`driversdbodbcodbcoleoleoleoleoledbdriversoptionsdbdriversdriversdriversoleforserverserveroleoledriversserveroleolemicrosoftdboleserverforoleoleoleserveroptionsoleprovideroledriversproviderserverdbserveroleserverserveroledriversoleoleoledbserveroptionsoleoptionsoleolefor -
ThresholdProcessor(10%)0,9ms88,5%3,61`null`pagedbodbcodbcoleforpagepagepagedbpageoptionsdbpageproviderpagepageforpagepageolepagepagepagepagepagemicrosoftdbpagepagefordboleolepageoptionspageproviderpageoptionsproviderpagepageforolepagepagedboptionspagepagepagedbpagepageolepageoledbfor -
ThresholdAdaptiveProcessor(04_04)0,4ms93,4%3,61`null`this`null`thisthismewmewlinkedmewlinked`null`serverconnection`null`serverserverlinkedservermewserverservermewlinkedpropeniesserverlinkedlinkedservermewmewservermew`null`mewthisserverthisthisserverthispropeniesserverservermewserverserverserverservermewserverthisthisthis`null`linkedservermewthismewmewmew -
ThresholdAdaptiveProcessor(10_10)0,4ms93,4%3,67`null`rogressgededegegepagegepagegegeselectadedededepagegegeneraldegederogressgegenestedrogressgepagenestedgegegegepagerogresspagepagepagequeriesdequeriesgeselectaselectaqueriesqueriesgeselectagegegegenestedpagegegegegege -
AutoThresholdProcessor(Triangle)1,0ms93,4%3,62auaccessauadhecadhecaudisallowopenerauindexusopenernonusdisallowopenerdisallowindexnonopeneropenerusindexaccessopenerusindexdisallowusnonopenernonususnonopeneropenerauopenerauopeneropeneropenerauaccessadhecopeneropenerususauopenerususopeneropenerususususus -
ThresholdAdaptiveProcessor(18_18)0,5ms98,4%4,38`null`my_sql`null``null``null``null``null`server`null`my_sql`null`my_sqlserver`null`my_sqlservermy_sqlmy_sql`null`serverserver`null`serverserverserver`null`servermy_sql`null``null`server`null``null``null``null`servermy_sql`null`server`null`serverserverserverserverserverserverserverservermy_sqlserver`null`my_sql`null``null`serverserver`null``null``null``null`server -
ThresholdAdaptiveProcessor(16_16)0,4ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%4,38`null`unitesdahdahdahdahdahunitesdahunites`null`unitesunitesdahdahunitesdahunitesdahunitesdahdahunitesunitesunitesunitesunitesunites`null`dahunitesdah`null`dahdahunitesunitesdahunitesdahunitesunitesunitesdahunitesunitesunitesunitesdahunitesdahunitesunites`null`unitesunitesdahunitesunitesdahdah -
ThresholdProcessor(0%)0,8ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(80%)0,8ms55,7%1,80asaccessbdadhocadhocallallowlikeareindexbdbdoptionsbddisallowserversupdatesonlytolevelallowonlyindexinprocesslevellikeinkedinprocessbdarenestednonbdonlyonlyoperatoroptionsareoperatorpathqueriesproviderqueriesbdlikelevelserversserversallsupportsthatthesethistotransactedupdatesuseuselikebdzero +
ThresholdAdaptiveProcessor(12_12)0,6ms67,2%2,10`null`accessilodbcachocallallappliedaremaililmailoperctordballdriversmailmailforserversmailtheseinkedaccessmaililinkedmicrosoftilarethesenoniloleoleoperctoroptionsareprovidermailsupportsproviderserversmailmailserversserversserversilsupportsthatthesethistotrensactedupdatesuseusingililare +
ThresholdProcessor(20%)0,9ms72,1%2,07alcancelalodbcodbcalprowapticrsarecancelcoapticrsconnecbondbprowserversdynamicnameforgererallrxedheslinkedapticrslrxedlinkedlinkedmicrosoftibnamehescookoleonsprowoptionspageparameterpageprowderproviderqueneshesoptselectserverserversalserversthetthesethiscocancelpagebsusingibibcer +
ThresholdAdaptiveProcessor(08_08)0,6ms75,4%2,54`null`arecdallallallallappliedareallcdcdsbg036connectionnnallserversnnalltogeallgelinkedprogressserverlinkedlinkedprovnnareservernnnngennserveroptionsgeproviderallpropertiesproviderserversgeserverserversserverserversallserversthatthisthistoappliedapplieduseuseviewnnge +
ThresholdAdaptiveProcessor(20_20)0,9ms82,0%2,98`null`driversdbodbcodbcoleolepagepagepagedbmy_sql_connectiondbmy_sql_driversmy_sql_pageforgeneralserveroleodbcdriversserverpageservermicrosoftdbpageserverfordboleoleserveroptionspageproviderpagedriversproviderserverpageserverselectaserverserverdbdriversodbcpageodbcdbconnectionpageoleoptionsoledbfor +
ThresholdAdaptiveProcessor(24_24)0,4ms86,9%3,34`null`driversdbodbcodbcoleoleoleoleoledbdriversoptionsdbdriversdriversdriversoleforserverserveroleoledriversserveroleolemicrosoftdboleserverforoleoleoleserveroptionsoleprovideroledriversproviderserverdbserveroleserverserveroledriversoleoleoledbserveroptionsoleoptionsoleolefor +
AutoThresholdProcessor(Triangle)0,9ms93,4%3,62auaccessauadhecadhecaudisallowopenerauindexusopenernonusdisallowopenerdisallowindexnonopeneropenerusindexaccessopenerusindexdisallowusnonopenernonususnonopeneropenerauopenerauopeneropeneropenerauaccessadhecopeneropenerususauopenerususopeneropenerususususus +
ThresholdAdaptiveProcessor(04_04)1,4ms93,4%3,61`null`this`null`thisthismewmewlinkedmewlinked`null`serverconnection`null`serverserverlinkedservermewserverservermewlinkedpropeniesserverlinkedlinkedservermewmewservermew`null`mewthisserverthisthisserverthispropeniesserverservermewserverserverserverservermewserverthisthisthis`null`linkedservermewthismewmewmew +
ThresholdAdaptiveProcessor(16_16)0,5ms100,0%5,31`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 61 tagged words.*

zrs_ZAMS_scatter_002

ProcessorElapsedWERCER (avg)Imageconfigurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator -
AutoThresholdProcessor(Kapur)1,0ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator -
ThresholdProcessor(80%)1,8ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator -
ThresholdAdaptiveProcessor(24_24)1,9ms18,2%0,82configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalhorizontallndicator -
ThresholdAdaptiveProcessor(18_18)0,5ms27,3%0,82enhorizontalhorizortalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator -
ThresholdAdaptiveProcessor(20_20)0,6ms27,3%1,09verticalhorizontalhorizortalindicatorindicator`null`meaningmeaningsplotscatterverticalverticalindicator -
ThresholdProcessor(50%)0,8ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator +
ThresholdProcessor(80%)0,8ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator +
AutoThresholdProcessor(Kapur)1,1ms9,1%0,00configurehorizontalhorizontalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator +
ThresholdAdaptiveProcessor(24_24)0,4ms18,2%0,82configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalhorizontallndicator +
ThresholdProcessor(50%)0,7ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator
ThresholdProcessor(60%)0,8ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator -
AutoThresholdProcessor(OTSU)0,9ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator +
ThresholdAdaptiveProcessor(20_20)0,9ms27,3%1,09verticalhorizontalhorizortalindicatorindicator`null`meaningmeaningsplotscatterverticalverticalindicator
ThresholdProcessor(30%)0,9ms27,3%0,82configurehorizontalhorzontallndicatorindicatormeameaningmeaningsplotscatterverticalhorzontallndicator -
ThresholdProcessor(70%)1,0ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator -
ThresholdProcessor(40%)1,5ms27,3%0,27configurehorizontalhorizonttallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator -
ThresholdAdaptiveProcessor(14_14)0,4ms36,4%2,27indicatorhorizontalhorizontalindicatormeameaningmeaningsplotscatterverticalindicator -
ThresholdAdaptiveProcessor(22_22)0,5ms36,4%0,82caterhorizontalhorizorttalindicatorindicatormeameaningmeaningsplotscatterverticalverticalindicator -
ThresholdAdaptiveProcessor(08_08)0,4ms45,5%2,36enverticalverticallndicatorindicatorenmeaningmeaningsplotscatterverticalverticallndicator -
ThresholdAdaptiveProcessor(10_10)0,4ms45,5%2,09meaningshorizontalverticallndicatorindicatormeameaningmeaningsplotmaverticalverticallndicator -
ThresholdAdaptiveProcessor(16_16)0,4ms45,5%1,09verticalhorizontalhorizontallndicatorindicatorplmeaningmeaningsplotscatterverticalverticalindicator -
ThresholdAdaptiveProcessor(12_12)0,5ms45,5%2,27enhorizontalhorizontalindicatormeameaningmeaningsplotscatterverticalindicator -
ThresholdAdaptiveProcessor(06_06)1,0ms72,7%3,45indicatorverticalverticallndicatorindicator`null`meaningmeaning`null`indicatorverticalverticallndicator -
ThresholdProcessor(90%)1,1ms72,7%5,18iniverticalverticaliniiniiniiniplotscatterverticalvertical -
ThresholdAdaptiveProcessor(04_04)0,4ms90,9%6,45verticalverticalverticalvertical`null`verticalvertical`null`verticalverticalvertical -
ThresholdAdaptiveProcessor(00_00)0,5ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(0%)0,8ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(10%)0,9ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
AutoThresholdProcessor(Triangle)1,0ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(20%)1,0ms100,0%6,64onfigureonfigureonfigurecatter`null`cattercatter`null`cattercattercatter +
ThresholdProcessor(40%)0,9ms27,3%0,27configurehorizontalhorizonttallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator +
ThresholdProcessor(70%)0,9ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator +
AutoThresholdProcessor(OTSU)1,1ms27,3%0,18configurehorizontalhorizontallndicatorindicatormeameaningmeaningsplotscatterverticalverticallndicator +
ThresholdAdaptiveProcessor(16_16)0,5ms45,5%1,09verticalhorizontalhorizontallndicatorindicatorplmeaningmeaningsplotscatterverticalverticalindicator +
ThresholdAdaptiveProcessor(08_08)0,6ms45,5%2,36enverticalverticallndicatorindicatorenmeaningmeaningsplotscatterverticalverticallndicator +
ThresholdAdaptiveProcessor(12_12)0,6ms45,5%2,27enhorizontalhorizontalindicatormeameaningmeaningsplotscatterverticalindicator +
ThresholdAdaptiveProcessor(04_04)1,4ms90,9%6,45verticalverticalverticalvertical`null`verticalvertical`null`verticalverticalvertical +
AutoThresholdProcessor(Triangle)0,9ms100,0%9,18`null``null``null``null``null``null``null``null``null``null``null` +
ThresholdProcessor(20%)0,9ms100,0%6,64onfigureonfigureonfigurecatter`null`cattercatter`null`cattercattercatter

*Comparison data generated based on 11 tagged words.*

zrs_ZAMS_windrose_002

ProcessorElapsedWERCER (avg)Image16angularcancelconfigurationdegreedirectiondirectionsEENEforgranularityindicatormeaningmeasurementNNENNEokreportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(22_22)0,5ms28,0%0,6416angulareneconfigurationdegreedirectiondirections`null`mvforgranularityindicatormeaningmeasurement`null`mvmvmvreportresultsrosevalidatevalidationvariablewind -
AutoThresholdProcessor(OTSU)0,9ms28,0%0,5216angularcancelconfigurationdegreedirectiondireotions`null`16forgranularityindicatormeaningmeasurement`null`161616reportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(20_20)0,6ms32,0%0,6416angulareneconfigurationdegreedirectiondirections`null`mvforgranularityindicatormeaningmeasurement`null`mvmvmvreportresultsrosevalidatevalidationvariablewind +
AutoThresholdProcessor(OTSU)1,1ms28,0%0,5216angularcancelconfigurationdegreedirectiondireotions`null`16forgranularityindicatormeaningmeasurement`null`161616reportresultsrosevalidatevalidationvariablewind
ThresholdProcessor(60%)0,8ms32,0%0,56liangularcancelconfigurationdegreedirectiondirections`null`nneforgranularityindicatormeaningmeasurement`null`linnelireportresultsrosevalidatevalidationvariablewind -
ThresholdProcessor(70%)1,0ms32,0%0,60`null`angularcancelconfigurationdegreedirectiondirection`null`nneforgranularityindicatormeaningmeasurement`null``null`nneforreportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(16_16)0,4ms36,0%0,6416angulareneconfigurationdegreedirectiondirections`null`zuforgranularityindicatormeaningmeasurement`null`zuzuzureportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(18_18)0,5ms36,0%0,7616angulareneconfigurationdegreedirectiondirections`null`mvforgranularityindicatormeaningmeasurement`null`mvmvmvreportresultsrosevalidationvalidationvariablewind -
ThresholdAdaptiveProcessor(14_14)0,4ms40,0%1,2016angulareneconfigurationdegreedirectiondirections`null`bwforgranularityindicatormeaningmeasurement`null`bwbwbwreportreportrosevariableindicatorvariablewind -
ThresholdProcessor(80%)1,8ms40,0%0,84llangularbeareeconfigurationbeareedirectiondirections`null`llforgranularityindicatormeaningmeasurement`null`llllllreportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(24_24)1,9ms40,0%1,0816angularnneconfigurationenedirectiondirections`null`nneforgranularityindicatormeaningmeasurement`null`16nne16reportreportrosevalidationvalidationvariablewind -
ThresholdAdaptiveProcessor(12_12)0,5ms44,0%1,3216angularnneconfigurationmeedirectiondirections`null`meeforangularindicatormeaningmeasurement`null`16mee16reportreportrosevalidatevalidatevariablewind -
ThresholdProcessor(90%)1,1ms44,0%1,1216angularneconfigurationdeareedirectiondirections`null`neforangularindicatormeaningmeasurement`null`nenenerepertrepertrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(08_08)0,4ms48,0%1,40okresultsenconfigurationendirectiondirections`null`okforresultsindicatormeaningmeasurement`null`okokokreportresultsrosewalidatevalidationvariablewind -
ThresholdProcessor(50%)0,8ms48,0%0,84inangularcegresconfigurationcegresdirectiondirection`null`inforgranularityindicatormeaningmeasurement`null`inininreportresultsrosevalidatevalidationvariablewind -
ThresholdAdaptiveProcessor(06_06)1,0ms60,0%1,80`null`angularcancelconfigurationresedirectiondirection`null`forforangularangularmeaningmeasurement`null``null`forforreseresultsresevalidationvalidationcancelwind -
ThresholdAdaptiveProcessor(10_10)0,4ms64,0%2,12`null`resultswindconfigurationreportdirectiondirection`null`forforresultsindicatorwindresults`null``null`forforreportresultsrosevalidationvalidationvariablewind -
ThresholdProcessor(40%)1,5ms64,0%1,52zuangularcancelconfigurationrosdirectiondirection`null`zuforangularindicatormeaningmeaning`null`zuzuakreportreportrosevalidatevalidationvanablewind -
AutoThresholdProcessor(Triangle)1,0ms84,0%4,0816windwinddirectionshedirectionsdirections`null`hehewindwindwindrose`null`heheheroseroserosewinddirectionsrosewind -
ThresholdAdaptiveProcessor(00_00)0,5ms88,0%4,44`null`forroseforformeaningmeaning`null`forformeaningformeaningmeaning`null``null`forforforroseroserosemeaningrosefor -
AutoThresholdProcessor(Kapur)1,0ms92,0%4,16okneneconfigurationehehhehhe`null`hheokyaldateyaldateeheehe`null`okhheokeheehehheyaldateyaldateyaldatene -
ThresholdAdaptiveProcessor(04_04)0,4ms96,0%4,48crcrcrvalidationcrvalidationvalidation`null`crcrvalidationvalidationcrcr`null`crcrcrcrcrcrvalidationvalidationvalidationcr -
ThresholdAdaptiveProcessor(02_02)0,5ms100,0%5,16dadadadadaseisei`null`dadaaydaseisei`null`dadadaseiseiseidadadada -
ThresholdProcessor(0%)0,8ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(10%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(100%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` +
ThresholdAdaptiveProcessor(20_20)0,9ms32,0%0,6416angulareneconfigurationdegreedirectiondirections`null`mvforgranularityindicatormeaningmeasurement`null`mvmvmvreportresultsrosevalidatevalidationvariablewind +
ThresholdProcessor(70%)0,9ms32,0%0,60`null`angularcancelconfigurationdegreedirectiondirection`null`nneforgranularityindicatormeaningmeasurement`null``null`nneforreportresultsrosevalidatevalidationvariablewind +
ThresholdAdaptiveProcessor(16_16)0,5ms36,0%0,6416angulareneconfigurationdegreedirectiondirections`null`zuforgranularityindicatormeaningmeasurement`null`zuzuzureportresultsrosevalidatevalidationvariablewind +
ThresholdAdaptiveProcessor(24_24)0,4ms40,0%1,0816angularnneconfigurationenedirectiondirections`null`nneforgranularityindicatormeaningmeasurement`null`16nne16reportreportrosevalidationvalidationvariablewind +
ThresholdProcessor(80%)0,8ms40,0%0,84llangularbeareeconfigurationbeareedirectiondirections`null`llforgranularityindicatormeaningmeasurement`null`llllllreportresultsrosevalidatevalidationvariablewind +
ThresholdAdaptiveProcessor(12_12)0,6ms44,0%1,3216angularnneconfigurationmeedirectiondirections`null`meeforangularindicatormeaningmeasurement`null`16mee16reportreportrosevalidatevalidatevariablewind +
ThresholdAdaptiveProcessor(08_08)0,6ms48,0%1,40okresultsenconfigurationendirectiondirections`null`okforresultsindicatormeaningmeasurement`null`okokokreportresultsrosewalidatevalidationvariablewind +
ThresholdProcessor(50%)0,7ms48,0%0,84inangularcegresconfigurationcegresdirectiondirection`null`inforgranularityindicatormeaningmeasurement`null`inininreportresultsrosevalidatevalidationvariablewind +
ThresholdProcessor(40%)0,9ms64,0%1,52zuangularcancelconfigurationrosdirectiondirection`null`zuforangularindicatormeaningmeaning`null`zuzuakreportreportrosevalidatevalidationvanablewind +
AutoThresholdProcessor(Triangle)0,9ms84,0%4,0816windwinddirectionshedirectionsdirections`null`hehewindwindwindrose`null`heheheroseroserosewinddirectionsrosewind +
AutoThresholdProcessor(Kapur)1,1ms92,0%4,16okneneconfigurationehehhehhe`null`hheokyaldateyaldateeheehe`null`okhheokeheehehheyaldateyaldateyaldatene +
ThresholdAdaptiveProcessor(04_04)1,4ms96,0%4,48crcrcrvalidationcrvalidationvalidation`null`crcrvalidationvalidationcrcr`null`crcrcrcrcrcrvalidationvalidationvalidationcr +
ThresholdProcessor(20%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`
ThresholdProcessor(30%)0,9ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null` -
ThresholdProcessor(20%)1,0ms100,0%6,12`null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null``null`

*Comparison data generated based on 25 tagged words.*

\ No newline at end of file diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.command-processing_screentypes_controlgroup_005.png index 6fa3d3c..e9887c1 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_BQLSX00_connections_002.png index c36399a..c0db5e5 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_SEL_Options_002.png index e4375c6..a1c4b91 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_archdrv_variablendefinition_001.png index 315db9c..6837689 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_brpvi_offlineimport_004.png index f8b55d4..ece11cd 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_simotion_online_import_001.png index 99afd37..9746eeb 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_multimonitor_example_007.png index 1149ced..7e98455 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_startpage_project-exist_001.png index 7190505..eee06fb 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_windows_position_006.png index 47d7d16..386f23d 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.etm_gantt_runtime_001.png index e9eb956..fe44a0c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.historian_assistent_001.png index e2d54b6..08baae7 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.report_example_data-time_001.png index 981c87f..d5b5eb6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.reporting-server_report-assistant_007.png index 1975edd..56da93e 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.runtime_function_create_002.png index 383d42e..1b03ae9 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.straton_runtime_configuration_001.png index 2650149..496d124 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.worldview_zoom_steps_001.png index 9c8dbf2..d19369a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_MetadataEditor_variables_001.png index 0f17e38..a9ae1b8 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_EfficencyClass_009.png index c578e5e..d3a5405 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_extended-analysis_017.png index ebe1070..f6a14ee 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_3rd-connector_014.png index f0942f7..be64768 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_OLEDB-server_001.png index 7c3da4d..bcd6dcc 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_filter-alarmgroup_001.png index 6de4fd1..971f9a4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_scatter_002.png index aee02de..36a89f6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_windrose_002.png index 0cc7eaa..2a44c77 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.command-processing_screentypes_controlgroup_005.png index 61f682c..07e0bea 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_BQLSX00_connections_002.png index 11a4888..68589a2 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_SEL_Options_002.png index 0163376..5d313d2 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_archdrv_variablendefinition_001.png index 5e6bfb4..a6a8077 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_brpvi_offlineimport_004.png index 8c8f415..31f148d 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_simotion_online_import_001.png index 8f09c8e..0c05d90 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_multimonitor_example_007.png index 7249ba9..246f580 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_startpage_project-exist_001.png index 38bda2b..72c9a79 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_windows_position_006.png index 5118835..a4c8d64 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.etm_gantt_runtime_001.png index be0c6a2..3511119 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.historian_assistent_001.png index 146d1b6..6db8f71 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.report_example_data-time_001.png index 72dd681..90e4c99 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.reporting-server_report-assistant_007.png index d5f3d14..74c07e4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.runtime_function_create_002.png index d732097..3bec956 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.straton_runtime_configuration_001.png index 97ab902..00fb332 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.worldview_zoom_steps_001.png index 6eae671..40f3d1f 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_MetadataEditor_variables_001.png index 85090ff..e53486f 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_EfficencyClass_009.png index 4ec2088..7259c30 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_extended-analysis_017.png index eab6417..2dc0a63 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_3rd-connector_014.png index d3fd11a..56e41c3 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_OLEDB-server_001.png index bf8df2a..a9c42e7 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_filter-alarmgroup_001.png index c96cb0e..c661c9f 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_scatter_002.png index ae744a0..2267f25 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_windrose_002.png index 95b966b..396647c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Kapur).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.command-processing_screentypes_controlgroup_005.png index 80a8512..74b957c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_BQLSX00_connections_002.png index d922292..0acc289 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_SEL_Options_002.png index 71c1102..cb50be4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_archdrv_variablendefinition_001.png index 4d75187..11cf379 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_brpvi_offlineimport_004.png index 5d32259..8428a17 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_simotion_online_import_001.png index e63246b..e1faf9a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_multimonitor_example_007.png index 77d014c..1f9a34b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_startpage_project-exist_001.png index c584c99..796d408 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_windows_position_006.png index 3b77bda..b7c6152 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.etm_gantt_runtime_001.png index b13ada2..8de49b7 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.historian_assistent_001.png index d8a21de..64bd8f4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.report_example_data-time_001.png index e878817..cbb7bed 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.reporting-server_report-assistant_007.png index 1957b91..5617a17 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.runtime_function_create_002.png index 1e85f86..8952eca 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.straton_runtime_configuration_001.png index f0df551..c1c415a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.worldview_zoom_steps_001.png index d0a3e79..4a3785a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_MetadataEditor_variables_001.png index 10d9f74..00b6edf 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_EfficencyClass_009.png index 8b99bc5..71220df 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_extended-analysis_017.png index bb1d61e..0c0779c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_3rd-connector_014.png index 0f8ae38..06236e6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_OLEDB-server_001.png index 27c7aff..58da86b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_filter-alarmgroup_001.png index fb9b4b9..48cc9b0 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_scatter_002.png index eda059b..719d178 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_windrose_002.png index 1650007..ac99e2e 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.command-processing_screentypes_controlgroup_005.png index 2de35db..d79a963 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_BQLSX00_connections_002.png index d4f1192..5679abf 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_SEL_Options_002.png index a8179fe..95501f2 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_archdrv_variablendefinition_001.png index bd6f78f..167da44 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_brpvi_offlineimport_004.png index 3ea35e2..59d242a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_simotion_online_import_001.png index 88e7a94..fc1a16f 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_multimonitor_example_007.png index 876e602..c6f3c0b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_startpage_project-exist_001.png index 45097b9..0f84c19 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_windows_position_006.png index d47748e..988a264 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.etm_gantt_runtime_001.png index 9b3a54f..4c266e4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.historian_assistent_001.png index 419b8a8..fe1ad7a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.report_example_data-time_001.png index dce8b6c..8197f7c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.reporting-server_report-assistant_007.png index 9029064..4ee5182 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.runtime_function_create_002.png index 715cb8e..6011e3c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.straton_runtime_configuration_001.png index 200746f..806bd9b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.worldview_zoom_steps_001.png index 4689f30..f175752 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_MetadataEditor_variables_001.png index 7eff9e7..8fb5def 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_EfficencyClass_009.png index 48852c4..ed56ef2 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_extended-analysis_017.png index 756d358..1f97391 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_3rd-connector_014.png index 9c3d74b..27f186b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_OLEDB-server_001.png index c93361f..81fe255 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_filter-alarmgroup_001.png index 77a9609..b23a3c6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_scatter_002.png index 1b9e295..9ef13e1 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_windrose_002.png index 052829d..76f2778 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(OTSU).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.command-processing_screentypes_controlgroup_005.png index f034b16..e210e4e 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_BQLSX00_connections_002.png index 5061d6b..dad9e2d 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_SEL_Options_002.png index cffd5b1..cd93dea 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_archdrv_variablendefinition_001.png index fa200e5..db8c501 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_brpvi_offlineimport_004.png index fdb2f39..9e059f5 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_simotion_online_import_001.png index 79e45e1..3e9f416 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_multimonitor_example_007.png index 5aa80ca..40adcbf 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_startpage_project-exist_001.png index 8cf26ca..fd1a373 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_windows_position_006.png index 0ce4477..6ed70c8 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.etm_gantt_runtime_001.png index e386dc2..ebe868e 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.historian_assistent_001.png index 3a0af01..d73d1ba 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.report_example_data-time_001.png index 535c92b..53458bc 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.reporting-server_report-assistant_007.png index 37145c3..4b9cf57 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.runtime_function_create_002.png index 9adc437..e98581d 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.straton_runtime_configuration_001.png index af1e1ef..752b1f6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.worldview_zoom_steps_001.png index 711f8cc..89818b0 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_MetadataEditor_variables_001.png index 3e67c92..470cac5 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_EfficencyClass_009.png index 6ee3a4f..b6c4713 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_extended-analysis_017.png index a6c5cfd..5be3c84 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_3rd-connector_014.png index 2961131..91060a0 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_OLEDB-server_001.png index 5483cfd..b629bc6 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_filter-alarmgroup_001.png index 44099cf..624ffd0 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_scatter_002.png index e8b3ab4..b78e2a2 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_windrose_002.png index 1112cd0..33be96b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.command-processing_screentypes_controlgroup_005.png index bbe3ab8..e72e6e5 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_BQLSX00_connections_002.png index 3379a45..97eecb9 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_SEL_Options_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_SEL_Options_002.png index 52b032c..0fe0df4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_SEL_Options_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_archdrv_variablendefinition_001.png index f052bef..63333c1 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_brpvi_offlineimport_004.png index a500745..7b34122 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_simotion_online_import_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_simotion_online_import_001.png index 9bc9980..223feb0 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_multimonitor_example_007.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_multimonitor_example_007.png index dbf1b7c..2e562aa 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_startpage_project-exist_001.png index 4c10f60..649ca1a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_windows_position_006.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_windows_position_006.png index 58d80cc..ac93a7b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_windows_position_006.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.etm_gantt_runtime_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.etm_gantt_runtime_001.png index a4480f9..7968b52 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.historian_assistent_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.historian_assistent_001.png index 03e73bc..29ac026 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.historian_assistent_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.report_example_data-time_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.report_example_data-time_001.png index d846e64..3b4a13b 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.report_example_data-time_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.reporting-server_report-assistant_007.png index 6965e35..57ad79a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.runtime_function_create_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.runtime_function_create_002.png index 24e80dd..76ece03 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.runtime_function_create_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.straton_runtime_configuration_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.straton_runtime_configuration_001.png index df7f293..c0e0c8a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.worldview_zoom_steps_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.worldview_zoom_steps_001.png index c2daf0f..f3f71a4 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_MetadataEditor_variables_001.png index 71b71a5..a2bb589 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_EfficencyClass_009.png index 2aae1fe..fd88023 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_extended-analysis_017.png index 54dc003..c13eca1 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_3rd-connector_014.png index 7bba9c3..957595c 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_OLEDB-server_001.png index e159700..83e611e 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_filter-alarmgroup_001.png index c6d8515..76b9bc7 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_scatter_002.png index 923f313..d99ba7a 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_windrose_002.png index 79fda98..71ca74f 100644 Binary files a/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/AutoThresholdProcessor(Triangle).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index b45747c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 9a0183f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_SEL_Options_002.png deleted file mode 100644 index f681db4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 0a897c2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 2be6b29..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_simotion_online_import_001.png deleted file mode 100644 index 0f4ad58..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_multimonitor_example_007.png deleted file mode 100644 index 0aa8f70..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_startpage_project-exist_001.png deleted file mode 100644 index d87de7e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_windows_position_006.png deleted file mode 100644 index 95d105b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.etm_gantt_runtime_001.png deleted file mode 100644 index 3af724e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.historian_assistent_001.png deleted file mode 100644 index e37df87..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.report_example_data-time_001.png deleted file mode 100644 index fe059fa..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 08e7e69..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.runtime_function_create_002.png deleted file mode 100644 index af2d6cd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.straton_runtime_configuration_001.png deleted file mode 100644 index bc7ffc0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.worldview_zoom_steps_001.png deleted file mode 100644 index 4a4f741..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 2bcba27..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 98bafac..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 25399f0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 718c0b6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index e95ad3e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 1f36382..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index adc9b7c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index e6b5c24..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 6dea5d3..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index 551fd66..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_SEL_Options_002.png deleted file mode 100644 index 46c1b37..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index f590782..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 53579d4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_simotion_online_import_001.png deleted file mode 100644 index 501f9cd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_multimonitor_example_007.png deleted file mode 100644 index a4e4047..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_startpage_project-exist_001.png deleted file mode 100644 index 531619f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_windows_position_006.png deleted file mode 100644 index a08c782..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.etm_gantt_runtime_001.png deleted file mode 100644 index 65e86f7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.historian_assistent_001.png deleted file mode 100644 index d3e00f8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.report_example_data-time_001.png deleted file mode 100644 index fcee883..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 114c00b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.runtime_function_create_002.png deleted file mode 100644 index da6d230..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.straton_runtime_configuration_001.png deleted file mode 100644 index 3f981c9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.worldview_zoom_steps_001.png deleted file mode 100644 index da3beb1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index aabbc24..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index dce1051..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 9553c43..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index bbd85ac..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index e139b35..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index be0fad5..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 2abafe8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index c437f4b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(00_00).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 0e342a3..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index e43e955..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_SEL_Options_002.png deleted file mode 100644 index 6bf4837..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 4b239ed..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 3286a1d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_simotion_online_import_001.png deleted file mode 100644 index 2faafe9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_multimonitor_example_007.png deleted file mode 100644 index ffa4256..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 2b26559..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_windows_position_006.png deleted file mode 100644 index 8c58abc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.etm_gantt_runtime_001.png deleted file mode 100644 index 5ff6106..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.historian_assistent_001.png deleted file mode 100644 index c5eeaeb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.report_example_data-time_001.png deleted file mode 100644 index d5e743e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 8063854..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.runtime_function_create_002.png deleted file mode 100644 index 28a5c23..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.straton_runtime_configuration_001.png deleted file mode 100644 index f2bfd30..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.worldview_zoom_steps_001.png deleted file mode 100644 index 480e52d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 4f06f71..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 227db27..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index ab3711a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 880e56b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index ee6c854..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index e9dd8e9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index c540f76..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index d7459df..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index e57a578..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index bc0b7e6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_SEL_Options_002.png deleted file mode 100644 index 22839f4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 6f4ced8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index d5a7490..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_simotion_online_import_001.png deleted file mode 100644 index f4807d0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_multimonitor_example_007.png deleted file mode 100644 index 1baac2f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_startpage_project-exist_001.png deleted file mode 100644 index b3be151..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_windows_position_006.png deleted file mode 100644 index 3a72e5a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.etm_gantt_runtime_001.png deleted file mode 100644 index 0ddbc46..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.historian_assistent_001.png deleted file mode 100644 index 68e74fb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.report_example_data-time_001.png deleted file mode 100644 index be02042..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 46e029f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.runtime_function_create_002.png deleted file mode 100644 index 507e2da..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.straton_runtime_configuration_001.png deleted file mode 100644 index e76d930..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.worldview_zoom_steps_001.png deleted file mode 100644 index 4369cd5..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 70cb11a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 86c698f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 61da244..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index d56d3af..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 93c2785..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index dd29862..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 2a7cbd6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index bad3ece..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(02_02).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.command-processing_screentypes_controlgroup_005.png index b7f463f..cd9516d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_BQLSX00_connections_002.png index 1ed1382..23aac22 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_SEL_Options_002.png index e93ad64..85a8bba 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_archdrv_variablendefinition_001.png index 202cf3f..5b50ac1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_brpvi_offlineimport_004.png index 92c9eb4..fd7ace7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_simotion_online_import_001.png index 0361de1..e44ca2d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_multimonitor_example_007.png index 5d74b12..65176d4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_startpage_project-exist_001.png index f050361..3727106 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_windows_position_006.png index 6761eef..dc0ceb6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.etm_gantt_runtime_001.png index fd763d7..ebfcf76 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.historian_assistent_001.png index 473e59b..66bcd36 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.report_example_data-time_001.png index c6467f1..5df59ca 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.reporting-server_report-assistant_007.png index 0a5bcca..cf15039 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.runtime_function_create_002.png index b6f36f0..57561da 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.straton_runtime_configuration_001.png index 36f5fc6..2aa157e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.worldview_zoom_steps_001.png index 35e7aa3..441c820 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_MetadataEditor_variables_001.png index 2d85294..8df915e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_EfficencyClass_009.png index 585dd57..c5d8690 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_extended-analysis_017.png index 1654046..09f2c09 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_3rd-connector_014.png index 26b290e..fd602b6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_OLEDB-server_001.png index 1fc0cdd..14aa3fd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_filter-alarmgroup_001.png index 6e5cf37..702265f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_scatter_002.png index 4c405a3..e342a2a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_windrose_002.png index e31095c..e0a31d1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.command-processing_screentypes_controlgroup_005.png index b4ee3c5..fe387ff 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_BQLSX00_connections_002.png index 7a5a1df..5c6ecfc 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_SEL_Options_002.png index d316dfc..722be0c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_archdrv_variablendefinition_001.png index db4fe21..b9b9816 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_brpvi_offlineimport_004.png index 45f3052..45ac18b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_simotion_online_import_001.png index 6164cc8..e5cd1f6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_multimonitor_example_007.png index 795ca42..bd9e95e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_startpage_project-exist_001.png index f098298..bfd95e5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_windows_position_006.png index 7b222b8..a1eb1d1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.etm_gantt_runtime_001.png index 3c03e5d..4dc432e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.historian_assistent_001.png index 213c221..5018b95 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.report_example_data-time_001.png index daec12b..6dc7460 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.reporting-server_report-assistant_007.png index e3552a8..2a07dee 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.runtime_function_create_002.png index b3ec31c..719f6cf 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.straton_runtime_configuration_001.png index 695d7b6..261cd87 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.worldview_zoom_steps_001.png index eae5dbc..5aca4e6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_MetadataEditor_variables_001.png index ec29701..7d7cc3e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_EfficencyClass_009.png index a77bd44..92d7574 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_extended-analysis_017.png index 671d464..242e845 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_3rd-connector_014.png index 52b9ef6..7d888c3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_OLEDB-server_001.png index 05d0e86..af6c5e3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_filter-alarmgroup_001.png index 80fcf71..ef89e24 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_scatter_002.png index ece54ed..f86dc55 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_windrose_002.png index 0ec767c..1d6788f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(04_04).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 2fba9e2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 9a3a212..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_SEL_Options_002.png deleted file mode 100644 index 96528b8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index c4def9f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 50768a9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_simotion_online_import_001.png deleted file mode 100644 index b5fa7b2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_multimonitor_example_007.png deleted file mode 100644 index 669a0e6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 286bf31..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_windows_position_006.png deleted file mode 100644 index 5195355..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.etm_gantt_runtime_001.png deleted file mode 100644 index 56c5d3a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.historian_assistent_001.png deleted file mode 100644 index 30e8cb6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.report_example_data-time_001.png deleted file mode 100644 index e523b15..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 25f9da8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.runtime_function_create_002.png deleted file mode 100644 index bf8cbb4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.straton_runtime_configuration_001.png deleted file mode 100644 index 9dc6e87..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.worldview_zoom_steps_001.png deleted file mode 100644 index 2eca1ee..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 51d90a1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 69a9844..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 94a4d9c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index fa64ab8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index f02e55f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index f8739ec..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 6c56223..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 6c0c828..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 70330e3..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index 7be8347..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_SEL_Options_002.png deleted file mode 100644 index 008e5a0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index d1d85f9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index cf7f70b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_simotion_online_import_001.png deleted file mode 100644 index 9c61f9e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_multimonitor_example_007.png deleted file mode 100644 index 66f45dc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_startpage_project-exist_001.png deleted file mode 100644 index 87aa23e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_windows_position_006.png deleted file mode 100644 index 8418530..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.etm_gantt_runtime_001.png deleted file mode 100644 index 7526478..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.historian_assistent_001.png deleted file mode 100644 index 117b7cb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.report_example_data-time_001.png deleted file mode 100644 index db2e981..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 3f93996..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.runtime_function_create_002.png deleted file mode 100644 index a74e7f2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.straton_runtime_configuration_001.png deleted file mode 100644 index afc26a2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.worldview_zoom_steps_001.png deleted file mode 100644 index 5349e1f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 968e658..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 936b041..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 521de94..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 010ffac..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index de00581..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 0d30ee1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 7d26778..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 36f6ffa..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(06_06).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.command-processing_screentypes_controlgroup_005.png index 9532e78..dc61789 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_BQLSX00_connections_002.png index a252ae1..bf5f473 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_SEL_Options_002.png index 87cfc1b..844c525 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_archdrv_variablendefinition_001.png index 6c8d83a..528ca84 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_brpvi_offlineimport_004.png index 8dc704b..8158aae 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_simotion_online_import_001.png index 860f29f..c0aca03 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_multimonitor_example_007.png index 41701cd..4cfe107 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_startpage_project-exist_001.png index 4cb804d..b153297 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_windows_position_006.png index 3d776c0..1cbd152 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.etm_gantt_runtime_001.png index 186d1d8..b1172aa 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.historian_assistent_001.png index ae31eea..67b127b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.report_example_data-time_001.png index 8522669..1d54d02 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.reporting-server_report-assistant_007.png index 8ae55bb..ba8cd3c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.runtime_function_create_002.png index f959d94..4a8e6f1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.straton_runtime_configuration_001.png index ef3be0a..c05bd40 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.worldview_zoom_steps_001.png index 3fcc0ce..0f1ea02 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_MetadataEditor_variables_001.png index 73a3747..e304721 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_EfficencyClass_009.png index 7ee2a4a..74ef381 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_extended-analysis_017.png index a6d7806..6fb416b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_3rd-connector_014.png index eaa32e6..18efa14 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_OLEDB-server_001.png index 7102788..547f13b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_filter-alarmgroup_001.png index 98bbe8d..3851a91 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_scatter_002.png index ce119b2..f5eeeac 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_windrose_002.png index a497f66..e90de99 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.command-processing_screentypes_controlgroup_005.png index f5e41ea..997c9f6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_BQLSX00_connections_002.png index 5c094e8..b7bd0ed 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_SEL_Options_002.png index 52fbe0a..1bfe789 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_archdrv_variablendefinition_001.png index 48b24fa..baefd94 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_brpvi_offlineimport_004.png index 23849e2..7ce7168 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_simotion_online_import_001.png index 9b81d52..d17333a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_multimonitor_example_007.png index da636fd..58b4283 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_startpage_project-exist_001.png index 2612e03..a31451e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_windows_position_006.png index 8372e6e..8c0a32c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.etm_gantt_runtime_001.png index 1ae8733..e424627 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.historian_assistent_001.png index 9852246..3aa4111 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.report_example_data-time_001.png index dc7183f..79f760d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.reporting-server_report-assistant_007.png index 5f3982b..be32d3a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.runtime_function_create_002.png index 144b4f5..6eda556 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.straton_runtime_configuration_001.png index dd455ae..b94af33 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.worldview_zoom_steps_001.png index a10b61c..9080c3c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_MetadataEditor_variables_001.png index 3685eae..f586d2c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_EfficencyClass_009.png index 4e16e8d..0a1ceb4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_extended-analysis_017.png index 5115bdd..57fe6bd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_3rd-connector_014.png index 04ea024..b57f53c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_OLEDB-server_001.png index 6d0e109..c78dc95 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_filter-alarmgroup_001.png index 2664845..330daa5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_scatter_002.png index ccbe304..ce4085b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_windrose_002.png index 32359ae..a3854dc 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(08_08).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 4d92d3c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 511db49..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_SEL_Options_002.png deleted file mode 100644 index 0f3d56a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 063698c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 2d00e35..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_simotion_online_import_001.png deleted file mode 100644 index 5a7bffc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_multimonitor_example_007.png deleted file mode 100644 index 793eb88..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_startpage_project-exist_001.png deleted file mode 100644 index c6849f1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_windows_position_006.png deleted file mode 100644 index 66b23db..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.etm_gantt_runtime_001.png deleted file mode 100644 index cb40356..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.historian_assistent_001.png deleted file mode 100644 index 8c4a830..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.report_example_data-time_001.png deleted file mode 100644 index 1f08b45..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.reporting-server_report-assistant_007.png deleted file mode 100644 index fd43e98..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.runtime_function_create_002.png deleted file mode 100644 index 912cfab..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.straton_runtime_configuration_001.png deleted file mode 100644 index 9537a44..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.worldview_zoom_steps_001.png deleted file mode 100644 index 3643c86..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index a1bf383..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 9c3f783..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index ddef101..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index c739600..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index dd84839..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index b1b0975..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index e9b2dab..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 7f2f031..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 5e576c6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index d887968..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_SEL_Options_002.png deleted file mode 100644 index eb60a1c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index b1c819d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 2ecffef..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_simotion_online_import_001.png deleted file mode 100644 index 3e5c047..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_multimonitor_example_007.png deleted file mode 100644 index 6f71830..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_startpage_project-exist_001.png deleted file mode 100644 index a9d3e3e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_windows_position_006.png deleted file mode 100644 index 54bbf59..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.etm_gantt_runtime_001.png deleted file mode 100644 index c4d31fc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.historian_assistent_001.png deleted file mode 100644 index bbbc724..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.report_example_data-time_001.png deleted file mode 100644 index dc76bc6..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 18d6453..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.runtime_function_create_002.png deleted file mode 100644 index 3f10700..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.straton_runtime_configuration_001.png deleted file mode 100644 index 6a21294..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.worldview_zoom_steps_001.png deleted file mode 100644 index cecd99e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index e6f6d88..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index c85799d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 2caaccd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 7171093..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index f0d4a75..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 12a2bee..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 53a1e38..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 5f1dd8e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(10_10).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.command-processing_screentypes_controlgroup_005.png index 42cc090..28d442b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_BQLSX00_connections_002.png index 722b876..1246624 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_SEL_Options_002.png index 1ea5d6b..94a72f6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_archdrv_variablendefinition_001.png index f43c6d8..72fa997 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_brpvi_offlineimport_004.png index 8b506de..3657b5c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_simotion_online_import_001.png index a67c2a3..7624fe4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_multimonitor_example_007.png index b50c5d1..dc87454 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_startpage_project-exist_001.png index e444946..5563ad4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_windows_position_006.png index 35aba67..a06128b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.etm_gantt_runtime_001.png index ad53dfb..c1c5eba 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.historian_assistent_001.png index 1ccb6a8..52a3584 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.report_example_data-time_001.png index 6d21626..8661c50 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.reporting-server_report-assistant_007.png index c73c887..bc12e80 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.runtime_function_create_002.png index 2470086..3a0f810 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.straton_runtime_configuration_001.png index 3cb5da4..4baf979 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.worldview_zoom_steps_001.png index b5004fe..bf6c0c5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_MetadataEditor_variables_001.png index 2925081..fb64301 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_EfficencyClass_009.png index 9b15995..9d743ca 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_extended-analysis_017.png index 7a6460e..4e63492 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_3rd-connector_014.png index c53b3cb..5b3d707 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_OLEDB-server_001.png index 2b8494e..f07fed4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_filter-alarmgroup_001.png index d880be9..b61ad98 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_scatter_002.png index 246ff1c..ac768d2 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_windrose_002.png index f481e7a..7f0b27c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.command-processing_screentypes_controlgroup_005.png index 32fad0e..5dca8b6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_BQLSX00_connections_002.png index cb21b47..095b498 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_SEL_Options_002.png index 8238e80..95c4cda 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_archdrv_variablendefinition_001.png index 6669a8b..34d2891 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_brpvi_offlineimport_004.png index dfba412..5bca53c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_simotion_online_import_001.png index 5705348..a1e7be5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_multimonitor_example_007.png index 3e944b0..d94c0b8 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_startpage_project-exist_001.png index 221a777..b080e26 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_windows_position_006.png index b8d9786..b937669 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.etm_gantt_runtime_001.png index 7546c8f..4bfa9f2 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.historian_assistent_001.png index 106b366..2df5c12 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.report_example_data-time_001.png index f1cb958..db3c7ee 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.reporting-server_report-assistant_007.png index 11440f9..cab48bc 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.runtime_function_create_002.png index 1da8369..a5a76cd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.straton_runtime_configuration_001.png index b8601df..eb51b42 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.worldview_zoom_steps_001.png index d35b6b3..d0c7114 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_MetadataEditor_variables_001.png index d5c44fe..0a6385c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_EfficencyClass_009.png index 438e989..25312c1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_extended-analysis_017.png index e966656..8a267a2 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_3rd-connector_014.png index 0517bfd..5625cca 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_OLEDB-server_001.png index b98ae53..6297ebe 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_filter-alarmgroup_001.png index d3d4b6d..e240862 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_scatter_002.png index 6b008c5..f1da11a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_windrose_002.png index de2d485..acefe9f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(12_12).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 49e9df8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 731be15..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_SEL_Options_002.png deleted file mode 100644 index 338f348..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 01d296e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index a6cf991..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_simotion_online_import_001.png deleted file mode 100644 index 8b12a41..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_multimonitor_example_007.png deleted file mode 100644 index 4c7bf47..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_startpage_project-exist_001.png deleted file mode 100644 index b2299c0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_windows_position_006.png deleted file mode 100644 index b334611..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.etm_gantt_runtime_001.png deleted file mode 100644 index bd7c891..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.historian_assistent_001.png deleted file mode 100644 index 45b696a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.report_example_data-time_001.png deleted file mode 100644 index 42b912f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 058cde7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.runtime_function_create_002.png deleted file mode 100644 index 453c2e1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.straton_runtime_configuration_001.png deleted file mode 100644 index 302fa3e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.worldview_zoom_steps_001.png deleted file mode 100644 index 310f49c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 95bba45..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 2c5b24c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 1a7004a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 83181f2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index b79f345..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 02b0142..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 8e7a18f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 4af8886..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 3ab9050..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index fc5b116..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_SEL_Options_002.png deleted file mode 100644 index 69dc8ba..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index aa6bac0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 8775f05..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_simotion_online_import_001.png deleted file mode 100644 index d45990c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_multimonitor_example_007.png deleted file mode 100644 index e05e482..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_startpage_project-exist_001.png deleted file mode 100644 index f7c7978..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_windows_position_006.png deleted file mode 100644 index f031e8c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.etm_gantt_runtime_001.png deleted file mode 100644 index 692c877..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.historian_assistent_001.png deleted file mode 100644 index b9bf54c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.report_example_data-time_001.png deleted file mode 100644 index 419c9cd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 20785a5..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.runtime_function_create_002.png deleted file mode 100644 index f8af3c4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.straton_runtime_configuration_001.png deleted file mode 100644 index c556406..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.worldview_zoom_steps_001.png deleted file mode 100644 index a91a5a9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index f6c59ff..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 4151ec7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 3999062..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 3269de8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 861f30d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 08ad89c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 0a69130..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index fb35e4e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(14_14).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.command-processing_screentypes_controlgroup_005.png index ed2625d..73659e3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_BQLSX00_connections_002.png index de0f975..8b7ce8a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_SEL_Options_002.png index d236b39..70283a6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_archdrv_variablendefinition_001.png index 847d52c..920aea9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_brpvi_offlineimport_004.png index b267565..a2f8351 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_simotion_online_import_001.png index 8b860d1..e2df41d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_multimonitor_example_007.png index ec3df0d..9566fd0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_startpage_project-exist_001.png index 88fa72d..57832bc 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_windows_position_006.png index 7cdcfbf..d701b45 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.etm_gantt_runtime_001.png index 2ae7aa3..1f0a628 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.historian_assistent_001.png index 0033453..84dff4e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.report_example_data-time_001.png index 7edf740..2db0256 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.reporting-server_report-assistant_007.png index 90f0082..58354a0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.runtime_function_create_002.png index 12c17c1..6f08a70 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.straton_runtime_configuration_001.png index 9435c61..91155f9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.worldview_zoom_steps_001.png index ce14f00..39557cf 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_MetadataEditor_variables_001.png index 8ac93f4..84692be 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_EfficencyClass_009.png index 5d4fae1..97066d9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_extended-analysis_017.png index d01b6d1..e9dd8e1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_3rd-connector_014.png index 4e3957a..afd2aa0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_OLEDB-server_001.png index 9eedcac..e532f7c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_filter-alarmgroup_001.png index 3e50004..d43e446 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_scatter_002.png index 1ec73f5..27d24bb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_windrose_002.png index 739235c..5a5568d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.command-processing_screentypes_controlgroup_005.png index 65c7003..995cabf 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_BQLSX00_connections_002.png index 81aef3f..71007cb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_SEL_Options_002.png index d520163..15eaaf6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_archdrv_variablendefinition_001.png index 53c7f20..2d18286 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_brpvi_offlineimport_004.png index a79e524..20b2e77 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_simotion_online_import_001.png index 64ea33f..c17b7e0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_multimonitor_example_007.png index 3a139c8..cf5e744 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_startpage_project-exist_001.png index d8cacd7..58340e7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_windows_position_006.png index 4a7f344..e1f45fb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.etm_gantt_runtime_001.png index f46d3e2..4a48113 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.historian_assistent_001.png index 3118926..e1bd91b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.report_example_data-time_001.png index 139e5ac..5119d08 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.reporting-server_report-assistant_007.png index ecc7e24..ba4be3d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.runtime_function_create_002.png index 813cd32..90350bc 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.straton_runtime_configuration_001.png index acbfeb7..2b6e867 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.worldview_zoom_steps_001.png index 14e54b3..a5e0bb1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_MetadataEditor_variables_001.png index 3508c3c..7a3ebf3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_EfficencyClass_009.png index cd14582..641a28f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_extended-analysis_017.png index 98bb375..1c2cf38 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_3rd-connector_014.png index 9e5bef7..bf549fe 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_OLEDB-server_001.png index b669310..d710664 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_filter-alarmgroup_001.png index 7cc3ea6..24e3358 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_scatter_002.png index ae4adbf..80867ae 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_windrose_002.png index fe2eb63..fd1aaa6 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(16_16).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 7759f63..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index b92729b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_SEL_Options_002.png deleted file mode 100644 index af8a606..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index b6dabc4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index ade1421..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_simotion_online_import_001.png deleted file mode 100644 index 48effcc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_multimonitor_example_007.png deleted file mode 100644 index a1cf0fe..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 2920984..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_windows_position_006.png deleted file mode 100644 index b1b3a7b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.etm_gantt_runtime_001.png deleted file mode 100644 index 193296d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.historian_assistent_001.png deleted file mode 100644 index ffeec1f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.report_example_data-time_001.png deleted file mode 100644 index f0fe691..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 3c43468..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.runtime_function_create_002.png deleted file mode 100644 index 6c2ee4e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.straton_runtime_configuration_001.png deleted file mode 100644 index 6903ac2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.worldview_zoom_steps_001.png deleted file mode 100644 index 4ea37cb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 5114809..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 92428a8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index a21c736..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 2103329..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 32e4fe2..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 8858d94..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 4e50268..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 39efcf7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 538db81..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index a511a3c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_SEL_Options_002.png deleted file mode 100644 index ac0a8ed..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 746fb15..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index d768813..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_simotion_online_import_001.png deleted file mode 100644 index cc1fda1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_multimonitor_example_007.png deleted file mode 100644 index 7ef2c4d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_startpage_project-exist_001.png deleted file mode 100644 index bb96f5a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_windows_position_006.png deleted file mode 100644 index 71c6ddb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.etm_gantt_runtime_001.png deleted file mode 100644 index 96378f3..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.historian_assistent_001.png deleted file mode 100644 index 7a91467..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.report_example_data-time_001.png deleted file mode 100644 index 0698227..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.reporting-server_report-assistant_007.png deleted file mode 100644 index c90be0b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.runtime_function_create_002.png deleted file mode 100644 index 6220560..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.straton_runtime_configuration_001.png deleted file mode 100644 index e149960..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.worldview_zoom_steps_001.png deleted file mode 100644 index bce207a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index dde4619..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index d7936da..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 5d196a0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index e44bb8c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 80f1d78..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 3a75ae8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 2d606e9..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 14ec755..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(18_18).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.command-processing_screentypes_controlgroup_005.png index def4b4c..c097eee 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_BQLSX00_connections_002.png index 2388db5..d01d788 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_SEL_Options_002.png index ce47466..56dd2a3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_archdrv_variablendefinition_001.png index b011c60..6bb25bd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_brpvi_offlineimport_004.png index ef15dbc..72061c0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_simotion_online_import_001.png index 1e3d8bd..6b1eb54 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_multimonitor_example_007.png index df68620..16a1758 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_startpage_project-exist_001.png index 8ee1559..a3124f0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_windows_position_006.png index 90a1f87..c8a789d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.etm_gantt_runtime_001.png index ac6789b..9973e4b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.historian_assistent_001.png index d3af957..73806eb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.report_example_data-time_001.png index 60757c5..c889f5c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.reporting-server_report-assistant_007.png index 31aa32a..a152da9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.runtime_function_create_002.png index 8685cec..46cef3a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.straton_runtime_configuration_001.png index 6c939e0..cd3c8a1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.worldview_zoom_steps_001.png index 227d85a..2c06100 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_MetadataEditor_variables_001.png index 5502724..c6ac028 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_EfficencyClass_009.png index ccc1ad8..3e1de5b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_extended-analysis_017.png index 735052a..7aa434c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_3rd-connector_014.png index 76ae1b4..b518733 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_OLEDB-server_001.png index e8d9688..bc31953 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_filter-alarmgroup_001.png index 14327a4..d0fdd9a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_scatter_002.png index a70e629..c70020f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_windrose_002.png index 392d8e8..7a3e5c3 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.command-processing_screentypes_controlgroup_005.png index e1b98e5..bcc3d04 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_BQLSX00_connections_002.png index 34b28b4..633ab57 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_SEL_Options_002.png index cb7546b..906d4f9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_archdrv_variablendefinition_001.png index d947927..4bae66e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_brpvi_offlineimport_004.png index 1c268d1..52bb4af 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_simotion_online_import_001.png index 0d5d5f8..5e3afa0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_multimonitor_example_007.png index 28b9bed..91e2d6d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_startpage_project-exist_001.png index 192cca6..77d2a6f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_windows_position_006.png index 5b862c3..b89487b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.etm_gantt_runtime_001.png index 6fd095c..a73b3f7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.historian_assistent_001.png index 36a8fe5..5e4768b 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.report_example_data-time_001.png index ab414ac..14e17c4 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.reporting-server_report-assistant_007.png index 765fafe..0949811 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.runtime_function_create_002.png index bd868cb..4acacb8 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.straton_runtime_configuration_001.png index bf7b9dc..859adab 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.worldview_zoom_steps_001.png index af3545d..2aa2765 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_MetadataEditor_variables_001.png index de3666b..8d2d18d 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_EfficencyClass_009.png index 4d88c57..422cfc7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_extended-analysis_017.png index 4ee2d75..ce13590 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_3rd-connector_014.png index a8c6a7c..583e6f2 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_OLEDB-server_001.png index 77c7b4c..7fdab52 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_filter-alarmgroup_001.png index 43310f3..6f76a5f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_scatter_002.png index 30d322a..f4655e5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_windrose_002.png index 833cf15..3a42123 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(20_20).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index e3c5f3e..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 17c83f8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_SEL_Options_002.png deleted file mode 100644 index 322c64c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index e7667dc..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index d69e001..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_simotion_online_import_001.png deleted file mode 100644 index b83502b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_multimonitor_example_007.png deleted file mode 100644 index 7ca6926..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 04ba07a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_windows_position_006.png deleted file mode 100644 index 1c2c1a8..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.etm_gantt_runtime_001.png deleted file mode 100644 index becf9cd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.historian_assistent_001.png deleted file mode 100644 index b7a5bbd..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.report_example_data-time_001.png deleted file mode 100644 index 4d77df4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.reporting-server_report-assistant_007.png deleted file mode 100644 index c0c65ee..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.runtime_function_create_002.png deleted file mode 100644 index 1ce436b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.straton_runtime_configuration_001.png deleted file mode 100644 index 6a515a0..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.worldview_zoom_steps_001.png deleted file mode 100644 index 197b1db..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index f50847c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 3a3040c..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index cd61cfe..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index fa08d2a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 1694e3a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 2d0ff7a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index ac886d3..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 20166fe..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 54519ed..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index f8bab3d..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_SEL_Options_002.png deleted file mode 100644 index 19a7959..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index ecfb7e7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 1ccf916..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_simotion_online_import_001.png deleted file mode 100644 index 27d0abb..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_multimonitor_example_007.png deleted file mode 100644 index 4a95df1..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_startpage_project-exist_001.png deleted file mode 100644 index 2e79564..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_windows_position_006.png deleted file mode 100644 index a10e50a..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.etm_gantt_runtime_001.png deleted file mode 100644 index e9f3266..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.historian_assistent_001.png deleted file mode 100644 index e9a3439..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.report_example_data-time_001.png deleted file mode 100644 index b8c1643..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 25a588b..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.runtime_function_create_002.png deleted file mode 100644 index 911d753..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.straton_runtime_configuration_001.png deleted file mode 100644 index dbcbc23..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.worldview_zoom_steps_001.png deleted file mode 100644 index 73abc30..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 19643f4..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 6dfff8f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index a1fd409..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 2e24ecf..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 4c2d4a5..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index af1f5c7..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 3bdbd7f..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 838dbcf..0000000 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(22_22).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.command-processing_screentypes_controlgroup_005.png index 7583ce1..bdcf690 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_BQLSX00_connections_002.png index 0742fe2..ead3861 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_SEL_Options_002.png index 2f41330..627930c 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_archdrv_variablendefinition_001.png index 38ca59c..01c52ea 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_brpvi_offlineimport_004.png index f251d6b..9aacb70 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_simotion_online_import_001.png index 6d6d4b5..71ea800 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_multimonitor_example_007.png index 811b828..ad20e43 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_startpage_project-exist_001.png index eb0c05f..6bace51 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_windows_position_006.png index 67c0590..68e15e2 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.etm_gantt_runtime_001.png index 8081d0a..6cb8d59 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.historian_assistent_001.png index 88a934a..bbf7189 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.report_example_data-time_001.png index 8dc759b..c4983cd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.reporting-server_report-assistant_007.png index e028b77..1a7bee5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.runtime_function_create_002.png index d6dd761..ab5732a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.straton_runtime_configuration_001.png index 2787c01..8d44622 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.worldview_zoom_steps_001.png index 076059b..7930904 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_MetadataEditor_variables_001.png index 393602b..27c2778 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_EfficencyClass_009.png index f6cc7e3..9c4a02a 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_extended-analysis_017.png index 44dfd9c..c303b75 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_3rd-connector_014.png index 880e7fa..64ae139 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_OLEDB-server_001.png index 8ee3d84..a59a0d7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_filter-alarmgroup_001.png index fef7e11..492feeb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_scatter_002.png index b005114..a0c893e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_windrose_002.png index 7375510..db87600 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.command-processing_screentypes_controlgroup_005.png index 083bafc..730f3a9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_BQLSX00_connections_002.png index aa0d881..6ed1aa9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_SEL_Options_002.png index b49f60c..fc6445f 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_archdrv_variablendefinition_001.png index 8679f52..0b3e797 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_brpvi_offlineimport_004.png index 9d18f5f..7985737 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_simotion_online_import_001.png index 1e1d694..a7f0eeb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_multimonitor_example_007.png index 5923aca..0cb7274 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_startpage_project-exist_001.png index edb41ec..dff6482 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_windows_position_006.png index e8726e6..9bd8baf 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.etm_gantt_runtime_001.png index e7d69ed..222eb32 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.historian_assistent_001.png index e8fbc53..2b869f5 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.report_example_data-time_001.png index e64e3e0..adc83eb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.reporting-server_report-assistant_007.png index ecaef14..03cdaa7 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.runtime_function_create_002.png index 67f0746..2e032b0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.straton_runtime_configuration_001.png index 47e1427..de23802 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.worldview_zoom_steps_001.png index 1534999..dc0ab48 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_MetadataEditor_variables_001.png index 5525cd2..ac5b2b0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_EfficencyClass_009.png index d337f2a..99410fb 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_extended-analysis_017.png index 71f0ee9..5f2bbdd 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_3rd-connector_014.png index 3972b2f..04477b9 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_OLEDB-server_001.png index f173fb2..92d102e 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_filter-alarmgroup_001.png index 805c98e..63b2835 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_scatter_002.png index 6a6dd02..abc7ca1 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_windrose_002.png index 42bf5c7..84566a0 100644 Binary files a/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdAdaptiveProcessor(24_24).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(0%).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 8b817df..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(0%).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index c758f32..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(0%).00.driver_SEL_Options_002.png deleted file mode 100644 index 8ac6529..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 5f62ff8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(0%).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 3ac0828..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.driver_simotion_online_import_001.png deleted file mode 100644 index 1781310..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(0%).00.editor_multimonitor_example_007.png deleted file mode 100644 index 8763ad4..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 54951d2..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(0%).00.editor_windows_position_006.png deleted file mode 100644 index ad38468..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.etm_gantt_runtime_001.png deleted file mode 100644 index b6e641b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.historian_assistent_001.png deleted file mode 100644 index 93c3e66..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.report_example_data-time_001.png deleted file mode 100644 index ab7d0f6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(0%).00.reporting-server_report-assistant_007.png deleted file mode 100644 index 61c03c1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(0%).00.runtime_function_create_002.png deleted file mode 100644 index 6f4b979..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.straton_runtime_configuration_001.png deleted file mode 100644 index 6c52efd..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.worldview_zoom_steps_001.png deleted file mode 100644 index 5c633f1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 9e44092..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index f1dd883..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 11e0a30..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 35c1c94..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index a8d0c4a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index f19626d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 3bf091f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index f993da1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(0%).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index fcf2969..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(0%).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index 26052d0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(0%).01.driver_SEL_Options_002.png deleted file mode 100644 index 9e503a3..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 88564b8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(0%).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 6c80b10..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.driver_simotion_online_import_001.png deleted file mode 100644 index f01f27e..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(0%).01.editor_multimonitor_example_007.png deleted file mode 100644 index f22df45..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.editor_startpage_project-exist_001.png deleted file mode 100644 index b906ffb..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(0%).01.editor_windows_position_006.png deleted file mode 100644 index faacbd9..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.etm_gantt_runtime_001.png deleted file mode 100644 index 2d47efc..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.historian_assistent_001.png deleted file mode 100644 index 94a6803..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.report_example_data-time_001.png deleted file mode 100644 index 3806205..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(0%).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 4e8f508..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(0%).01.runtime_function_create_002.png deleted file mode 100644 index 66196c0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.straton_runtime_configuration_001.png deleted file mode 100644 index 642d10d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.worldview_zoom_steps_001.png deleted file mode 100644 index 56a1a4b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 915edff..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 1b3300f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 5b45a19..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 073d8a5..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index ffa9841..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 03bdf74..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index f3565ea..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 7988965..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(0%).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(10%).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 3c8ee7a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(10%).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index e7ba81c..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(10%).00.driver_SEL_Options_002.png deleted file mode 100644 index 398302f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 6c7a316..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(10%).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index adf9ad7..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.driver_simotion_online_import_001.png deleted file mode 100644 index 96b15d5..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(10%).00.editor_multimonitor_example_007.png deleted file mode 100644 index c7c60b0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 8d13740..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(10%).00.editor_windows_position_006.png deleted file mode 100644 index 354549b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.etm_gantt_runtime_001.png deleted file mode 100644 index 3d750fb..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.historian_assistent_001.png deleted file mode 100644 index f00b5f6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.report_example_data-time_001.png deleted file mode 100644 index 146f131..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(10%).00.reporting-server_report-assistant_007.png deleted file mode 100644 index d3e3604..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(10%).00.runtime_function_create_002.png deleted file mode 100644 index c21635d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.straton_runtime_configuration_001.png deleted file mode 100644 index f80411f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.worldview_zoom_steps_001.png deleted file mode 100644 index c79464b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 3628887..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index e37af31..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 3eb49b2..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 5f62e8b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 1ae9e82..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 07f94d6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 8d1cff1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 81dd97e..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(10%).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 462840c..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(10%).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index a6b638d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(10%).01.driver_SEL_Options_002.png deleted file mode 100644 index 30cefed..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 9754a10..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(10%).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 391a0f8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.driver_simotion_online_import_001.png deleted file mode 100644 index 5fae20b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(10%).01.editor_multimonitor_example_007.png deleted file mode 100644 index 5db2bbc..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.editor_startpage_project-exist_001.png deleted file mode 100644 index 976ae8f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(10%).01.editor_windows_position_006.png deleted file mode 100644 index 54c61ca..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.etm_gantt_runtime_001.png deleted file mode 100644 index 8595f6f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.historian_assistent_001.png deleted file mode 100644 index 093cea3..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.report_example_data-time_001.png deleted file mode 100644 index 4661c0a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(10%).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 1685807..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(10%).01.runtime_function_create_002.png deleted file mode 100644 index fd486d2..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.straton_runtime_configuration_001.png deleted file mode 100644 index f7789c6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.worldview_zoom_steps_001.png deleted file mode 100644 index 94958d3..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 50c3f18..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 68bad37..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 52de97c..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 04b125a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 5e8991f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 3ac3696..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 1be7a7d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 438b7a1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(10%).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(100%).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 20aee12..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(100%).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index 93eb571..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(100%).00.driver_SEL_Options_002.png deleted file mode 100644 index 7bfba00..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index bab1bd9..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(100%).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 2c52e36..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.driver_simotion_online_import_001.png deleted file mode 100644 index d8665e9..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(100%).00.editor_multimonitor_example_007.png deleted file mode 100644 index 27ddf6c..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.editor_startpage_project-exist_001.png deleted file mode 100644 index 7ce789d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(100%).00.editor_windows_position_006.png deleted file mode 100644 index fa66868..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.etm_gantt_runtime_001.png deleted file mode 100644 index ca436d4..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.historian_assistent_001.png deleted file mode 100644 index 51b7745..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.report_example_data-time_001.png deleted file mode 100644 index 682c366..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(100%).00.reporting-server_report-assistant_007.png deleted file mode 100644 index f1a9be4..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(100%).00.runtime_function_create_002.png deleted file mode 100644 index 6f1b61d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.straton_runtime_configuration_001.png deleted file mode 100644 index c4a02a6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.worldview_zoom_steps_001.png deleted file mode 100644 index 33f3ff0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 39af33b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 0b26992..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index c485c3a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 8f99dda..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index d791b64..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 089d1ab..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 59b04a7..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 22654c0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(100%).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 2d3b560..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(100%).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index 2d4e5d8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(100%).01.driver_SEL_Options_002.png deleted file mode 100644 index 8318253..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 48a1fc1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(100%).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 662de2f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.driver_simotion_online_import_001.png deleted file mode 100644 index cccf5ec..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(100%).01.editor_multimonitor_example_007.png deleted file mode 100644 index 8cfe285..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.editor_startpage_project-exist_001.png deleted file mode 100644 index 5e4496a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(100%).01.editor_windows_position_006.png deleted file mode 100644 index b3cc377..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.etm_gantt_runtime_001.png deleted file mode 100644 index a8301ad..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.historian_assistent_001.png deleted file mode 100644 index 00ee57e..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.report_example_data-time_001.png deleted file mode 100644 index a982d51..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(100%).01.reporting-server_report-assistant_007.png deleted file mode 100644 index e054eee..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(100%).01.runtime_function_create_002.png deleted file mode 100644 index 8ad5fae..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.straton_runtime_configuration_001.png deleted file mode 100644 index cd71672..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.worldview_zoom_steps_001.png deleted file mode 100644 index d21a745..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index b4cc82e..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 252a4c8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 48c3d71..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index afbd4da..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index 3481923..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 6e1a378..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index e473db0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 17ad5d8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(100%).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(20%).00.command-processing_screentypes_controlgroup_005.png index e47219d..d1ae901 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_BQLSX00_connections_002.png index df142b6..f34760d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_SEL_Options_002.png index b6b116f..3b27653 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_archdrv_variablendefinition_001.png index b422c4f..27719d8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_brpvi_offlineimport_004.png index 381d87e..c495033 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_simotion_online_import_001.png index 019d62c..87c0972 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_multimonitor_example_007.png index 51f8f0a..9b31d7e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_startpage_project-exist_001.png index 54f07b6..f134de3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_windows_position_006.png index 93cdddb..e7ff3ec 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.etm_gantt_runtime_001.png index e4dd6ea..3aeb3c2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.historian_assistent_001.png index 0f6bb42..0cb0ebb 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.report_example_data-time_001.png index 1db71f7..21a5cad 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(20%).00.reporting-server_report-assistant_007.png index d41c7dc..87e120b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(20%).00.runtime_function_create_002.png index 37686b7..686bb12 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.straton_runtime_configuration_001.png index d90110f..cd5edb0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.worldview_zoom_steps_001.png index e19e5fb..aa0595a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_MetadataEditor_variables_001.png index 1e201e8..4435c10 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_EfficencyClass_009.png index 6f160ec..bafe216 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_extended-analysis_017.png index f324cb0..e36ad6a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_3rd-connector_014.png index b7e6461..b37914a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_OLEDB-server_001.png index 72bfca1..d0f1e38 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_filter-alarmgroup_001.png index 0259f06..956b4f0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_scatter_002.png index 11b3a1f..5cc0c77 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_windrose_002.png index 05268b0..b1dd244 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(20%).01.command-processing_screentypes_controlgroup_005.png index 5bb774f..6f4d1ac 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_BQLSX00_connections_002.png index 9b503fd..493da9e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_SEL_Options_002.png index fe47f63..4967f30 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_archdrv_variablendefinition_001.png index b48bed1..623fb2d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_brpvi_offlineimport_004.png index 55cc3dc..a8b5057 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_simotion_online_import_001.png index 83afded..b7010a4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_multimonitor_example_007.png index 5a94de8..5cca2e6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_startpage_project-exist_001.png index 978988d..5e71e5b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_windows_position_006.png index 32a49f7..cdf926a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.etm_gantt_runtime_001.png index 8d848c0..e1aed22 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.historian_assistent_001.png index 0fa324c..9de4a59 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.report_example_data-time_001.png index 670d8b9..4af3c0c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(20%).01.reporting-server_report-assistant_007.png index b5e4ffd..79805de 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(20%).01.runtime_function_create_002.png index 479fd2d..6226c7a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.straton_runtime_configuration_001.png index f502929..8e8f08a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.worldview_zoom_steps_001.png index 4947ad5..6636fe4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_MetadataEditor_variables_001.png index c854575..bce439b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_EfficencyClass_009.png index 1a7a9d4..2caf73a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_extended-analysis_017.png index 59fdb26..d03abc1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_3rd-connector_014.png index c3870be..8807c6c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_OLEDB-server_001.png index 089ab51..ffa03c1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_filter-alarmgroup_001.png index ac297be..d8247f9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_scatter_002.png index fd42db1..f1bfdfe 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_windrose_002.png index 7273bad..e35d235 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(20%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(30%).00.command-processing_screentypes_controlgroup_005.png index 6104bdc..78876ac 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_BQLSX00_connections_002.png index 05eed72..25f6f0b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_SEL_Options_002.png index 5accbed..20521f2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_archdrv_variablendefinition_001.png index 4a8d079..e894a40 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_brpvi_offlineimport_004.png index ca95021..75d4616 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_simotion_online_import_001.png index 73943cd..42e0f40 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_multimonitor_example_007.png index 64b1e86..fcb1914 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_startpage_project-exist_001.png index 9d677e2..adc6c12 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_windows_position_006.png index 92c5ea7..fcb182d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.etm_gantt_runtime_001.png index d62fe0d..4503842 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.historian_assistent_001.png index cb625f7..f6664e1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.report_example_data-time_001.png index 8f40a72..544ab76 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(30%).00.reporting-server_report-assistant_007.png index c02e35d..5dc5290 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(30%).00.runtime_function_create_002.png index 92c9563..5987167 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.straton_runtime_configuration_001.png index d5f88e4..d0b93ee 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.worldview_zoom_steps_001.png index e8a9878..8910147 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_MetadataEditor_variables_001.png index e5d04b5..1c3be93 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_EfficencyClass_009.png index 3b66327..9d4db89 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_extended-analysis_017.png index d6a86c5..b86d6df 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_3rd-connector_014.png index 6f93e12..6675852 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_OLEDB-server_001.png index bb7ca23..2b27b9d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_filter-alarmgroup_001.png index 75bbaff..b624631 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_scatter_002.png index cd6b985..aac9bbb 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_windrose_002.png index da90aa8..6ce4a0a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(30%).01.command-processing_screentypes_controlgroup_005.png index ec85e2e..8ea4f1d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_BQLSX00_connections_002.png index dd591dc..811c7c8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_SEL_Options_002.png index 208505e..867854e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_archdrv_variablendefinition_001.png index ba1a754..94c4337 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_brpvi_offlineimport_004.png index b4514b5..b89ce2c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_simotion_online_import_001.png index 85105ce..a02ce28 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_multimonitor_example_007.png index 81563b8..dc59a6a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_startpage_project-exist_001.png index b369632..b22fc12 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_windows_position_006.png index e1b0564..63cd3a9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.etm_gantt_runtime_001.png index 86a2db9..c6a56a9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.historian_assistent_001.png index 46101fd..8748f77 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.report_example_data-time_001.png index df38aae..ccc14ab 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(30%).01.reporting-server_report-assistant_007.png index 96ddc34..eafc655 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(30%).01.runtime_function_create_002.png index 7f79797..b54fc93 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.straton_runtime_configuration_001.png index 0add1bb..6080a80 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.worldview_zoom_steps_001.png index 13a02cb..401a130 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_MetadataEditor_variables_001.png index 226999c..19636ce 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_EfficencyClass_009.png index 87f7d55..cd72da1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_extended-analysis_017.png index d94ea44..7caec68 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_3rd-connector_014.png index 25e7d91..5a20a33 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_OLEDB-server_001.png index ec27c4e..5361ce4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_filter-alarmgroup_001.png index faaaeb2..f20bf24 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_scatter_002.png index 2ffe90e..6ce184f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_windrose_002.png index 68609b8..2ea6a28 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(30%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(40%).00.command-processing_screentypes_controlgroup_005.png index e18c996..7070a60 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_BQLSX00_connections_002.png index 5a5cade..4135ca8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_SEL_Options_002.png index 9ee5b78..2a15207 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_archdrv_variablendefinition_001.png index 7e174ef..3961a79 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_brpvi_offlineimport_004.png index 48881ee..5e28532 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_simotion_online_import_001.png index 2306837..eac1605 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_multimonitor_example_007.png index 8000034..91a4ddd 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_startpage_project-exist_001.png index 46c9d02..5e8977c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_windows_position_006.png index 0f9cf74..f346407 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.etm_gantt_runtime_001.png index 8eb0e51..f22f190 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.historian_assistent_001.png index 41fe471..e7e68ad 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.report_example_data-time_001.png index 225cc9e..825f0a1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(40%).00.reporting-server_report-assistant_007.png index 0947860..75ea35a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(40%).00.runtime_function_create_002.png index cea8732..f774880 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.straton_runtime_configuration_001.png index 84da8fd..8fac3c5 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.worldview_zoom_steps_001.png index 09badaf..353c2aa 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_MetadataEditor_variables_001.png index 59c9fd7..be1f769 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_EfficencyClass_009.png index c175496..9878bfb 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_extended-analysis_017.png index ad092df..e42622c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_3rd-connector_014.png index e4ad989..20f6530 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_OLEDB-server_001.png index b62a68a..78fb502 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_filter-alarmgroup_001.png index 9c38eb7..aa791a8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_scatter_002.png index ef16de5..f13db6e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_windrose_002.png index 0c34cac..d8c73e6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(40%).01.command-processing_screentypes_controlgroup_005.png index 2fc1dd5..a1cd9a1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_BQLSX00_connections_002.png index 9247497..891e4ba 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_SEL_Options_002.png index 78e3aca..ee59d1e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_archdrv_variablendefinition_001.png index 8a77a90..e685926 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_brpvi_offlineimport_004.png index 55057ee..eced8a3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_simotion_online_import_001.png index 9fe5843..d560f07 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_multimonitor_example_007.png index 9c1c52a..84c30e7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_startpage_project-exist_001.png index ca33b7c..fba4baa 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_windows_position_006.png index 071f8b7..156f658 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.etm_gantt_runtime_001.png index 2e75cc8..307171d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.historian_assistent_001.png index eafa70e..b3669aa 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.report_example_data-time_001.png index 320022d..c967ffd 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(40%).01.reporting-server_report-assistant_007.png index 7819664..bf62fc0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(40%).01.runtime_function_create_002.png index 5397b61..1d5137a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.straton_runtime_configuration_001.png index fdfad15..99dd382 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.worldview_zoom_steps_001.png index b5af7c9..5249a48 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_MetadataEditor_variables_001.png index 71dfbd5..c45a3b6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_EfficencyClass_009.png index b5c078b..0e5b7a1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_extended-analysis_017.png index 169ae0f..be4d34d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_3rd-connector_014.png index f0a6687..0dc2f21 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_OLEDB-server_001.png index 6d1dc2d..7fe51d1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_filter-alarmgroup_001.png index 614ce16..6ddd21f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_scatter_002.png index 7a22022..508bfd7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_windrose_002.png index f7cf475..17763e3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(40%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(50%).00.command-processing_screentypes_controlgroup_005.png index 1e05041..5e80253 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_BQLSX00_connections_002.png index 4f5dff0..0d9fa53 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_SEL_Options_002.png index f9be860..2cb6ed3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_archdrv_variablendefinition_001.png index d8bfc85..56feb89 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_brpvi_offlineimport_004.png index 24c416d..c869de9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_simotion_online_import_001.png index b410b4c..62ee76f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_multimonitor_example_007.png index 6b23172..919fe86 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_startpage_project-exist_001.png index 60b388a..7b942c1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_windows_position_006.png index 49b57ff..38bea99 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.etm_gantt_runtime_001.png index 4edb557..25355ff 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.historian_assistent_001.png index b706cee..028ba6e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.report_example_data-time_001.png index a9d299a..38c315a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(50%).00.reporting-server_report-assistant_007.png index df8304a..e6eede3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(50%).00.runtime_function_create_002.png index b167691..93cd126 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.straton_runtime_configuration_001.png index 38e521f..e1a6d1e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.worldview_zoom_steps_001.png index 6bffc2b..530d967 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_MetadataEditor_variables_001.png index 820d260..4456f53 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_EfficencyClass_009.png index a5ce8a4..1a54f8e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_extended-analysis_017.png index 7f1f718..04d2a86 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_3rd-connector_014.png index d51dfd2..52f89e2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_OLEDB-server_001.png index a17db0d..fd5e984 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_filter-alarmgroup_001.png index 9486bf1..d2db85d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_scatter_002.png index e8c2e26..dabeefb 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_windrose_002.png index 5751f58..aaf2bf4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(50%).01.command-processing_screentypes_controlgroup_005.png index 8ad2c8b..4e406c3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_BQLSX00_connections_002.png index 31b0bc7..f7ee15f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_SEL_Options_002.png index 64f4c44..2594ea0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_archdrv_variablendefinition_001.png index 3f1833c..882e496 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_brpvi_offlineimport_004.png index af2555c..c5834ee 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_simotion_online_import_001.png index f524dcc..7a03b9a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_multimonitor_example_007.png index 7f6b007..8ff86b6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_startpage_project-exist_001.png index a5f620f..08eb595 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_windows_position_006.png index 6383fe0..9cec196 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.etm_gantt_runtime_001.png index e4eece5..0c48a8c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.historian_assistent_001.png index 08f3117..5b8ec86 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.report_example_data-time_001.png index 91dd092..73baa03 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(50%).01.reporting-server_report-assistant_007.png index 1e8a01f..1d332a2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(50%).01.runtime_function_create_002.png index 38a7d2e..282e235 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.straton_runtime_configuration_001.png index a4cc5e1..cfc79c1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.worldview_zoom_steps_001.png index e59997d..44036c3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_MetadataEditor_variables_001.png index 362feb9..0b5c4f3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_EfficencyClass_009.png index 90b53fc..e38baa4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_extended-analysis_017.png index f26c611..f9c39b9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_3rd-connector_014.png index 49a4b39..d775f58 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_OLEDB-server_001.png index 796970c..d944cc4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_filter-alarmgroup_001.png index d102830..7ba418c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_scatter_002.png index a4cab37..bd182a0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_windrose_002.png index a2b57cd..a37c724 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(50%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(60%).00.command-processing_screentypes_controlgroup_005.png index 456b080..ba3f57b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_BQLSX00_connections_002.png index c34da8d..0a0b10a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_SEL_Options_002.png index 2dc2dc6..2d40a39 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_archdrv_variablendefinition_001.png index 7064883..6e4e2b4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_brpvi_offlineimport_004.png index bf91bc3..8c7d4c7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_simotion_online_import_001.png index 9445d09..b9d436a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_multimonitor_example_007.png index 4bc9c6c..8936efc 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_startpage_project-exist_001.png index de34db6..bf2cea0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_windows_position_006.png index 20384fe..603599b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.etm_gantt_runtime_001.png index 7afbf3e..93fe02a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.historian_assistent_001.png index 13e6806..399d6e4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.report_example_data-time_001.png index b96cd9e..2bddca6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(60%).00.reporting-server_report-assistant_007.png index 04d5e21..c5c184d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(60%).00.runtime_function_create_002.png index ecced58..b586cd2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.straton_runtime_configuration_001.png index 7894994..f433435 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.worldview_zoom_steps_001.png index 7332ea7..a384bc3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_MetadataEditor_variables_001.png index dfcd95d..179e7ef 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_EfficencyClass_009.png index f59929f..c1e74d5 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_extended-analysis_017.png index 910d415..e3f1e5f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_3rd-connector_014.png index 7efd3be..1b8438a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_OLEDB-server_001.png index 4cf3e4d..b293a01 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_filter-alarmgroup_001.png index 4a65fcf..d99a7a7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_scatter_002.png index 14d74eb..2500928 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_windrose_002.png index ed06384..b9a68d1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(60%).01.command-processing_screentypes_controlgroup_005.png index c3a342e..89e096f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_BQLSX00_connections_002.png index 933500f..d946695 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_SEL_Options_002.png index 03aef9b..e65cdb0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_archdrv_variablendefinition_001.png index 3bc473b..03a4e92 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_brpvi_offlineimport_004.png index a039168..5cde751 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_simotion_online_import_001.png index e825d9e..cfc8c3b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_multimonitor_example_007.png index 545f90e..cc70783 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_startpage_project-exist_001.png index 794dcf4..ff27b28 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_windows_position_006.png index f33da0a..9f0c726 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.etm_gantt_runtime_001.png index 13a3cfe..aa7bd69 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.historian_assistent_001.png index da55385..35ea64a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.report_example_data-time_001.png index 0ac78e3..7e0cbdb 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(60%).01.reporting-server_report-assistant_007.png index 5a7c1e5..2628568 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(60%).01.runtime_function_create_002.png index 2c72d5e..6af07de 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.straton_runtime_configuration_001.png index 3e819b8..ca3cd44 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.worldview_zoom_steps_001.png index c922dbd..893443d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_MetadataEditor_variables_001.png index 19e74ba..cb5a453 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_EfficencyClass_009.png index bc5fde5..82f0439 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_extended-analysis_017.png index 4c0af79..da24da4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_3rd-connector_014.png index 615a3aa..6c915f2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_OLEDB-server_001.png index 9d0aded..375817e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_filter-alarmgroup_001.png index d74d53c..a16ae72 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_scatter_002.png index 28bd5bc..4c2b400 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_windrose_002.png index 5bc2734..a7c23c2 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(60%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(70%).00.command-processing_screentypes_controlgroup_005.png index 32ebdfb..80097d1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_BQLSX00_connections_002.png index da3604c..ebf4410 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_SEL_Options_002.png index b90a89f..8544656 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_archdrv_variablendefinition_001.png index 4101f4d..f0e0041 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_brpvi_offlineimport_004.png index 507f5ab..49a9db1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_simotion_online_import_001.png index 88126cb..adde083 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_multimonitor_example_007.png index ee5ffbe..2f5e45f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_startpage_project-exist_001.png index 18f6c5d..9ef85be 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_windows_position_006.png index 3382748..3a1afa8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.etm_gantt_runtime_001.png index 03f46cb..314bf52 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.historian_assistent_001.png index 0d7ba1e..53ea115 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.report_example_data-time_001.png index 13cb674..a555786 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(70%).00.reporting-server_report-assistant_007.png index effa422..8dc98ca 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(70%).00.runtime_function_create_002.png index ac984e1..8c28f74 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.straton_runtime_configuration_001.png index e689948..1b0cda7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.worldview_zoom_steps_001.png index 0c7000e..cf32b30 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_MetadataEditor_variables_001.png index f788298..5ef833b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_EfficencyClass_009.png index 9395682..4ac9fc3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_extended-analysis_017.png index d8bdee0..e2e587a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_3rd-connector_014.png index 363a079..5013f6a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_OLEDB-server_001.png index fc2ea8e..802a8c6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_filter-alarmgroup_001.png index 209106f..2552f75 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_scatter_002.png index 96e7d49..e866f55 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_windrose_002.png index 9a021e4..f5f6250 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(70%).01.command-processing_screentypes_controlgroup_005.png index f24fc0b..5c60cbf 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_BQLSX00_connections_002.png index 08847f0..65661e1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_SEL_Options_002.png index 3c7e898..de414b3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_archdrv_variablendefinition_001.png index d00affc..e4ae02c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_brpvi_offlineimport_004.png index 6b3ae7c..1588eaf 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_simotion_online_import_001.png index fc3055c..3f00f30 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_multimonitor_example_007.png index 3b1c28b..65f6ab0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_startpage_project-exist_001.png index 6654564..eb6b1a8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_windows_position_006.png index e17c164..96b6ed0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.etm_gantt_runtime_001.png index 3b7f5d1..0c49ac3 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.historian_assistent_001.png index d7c0940..5847b76 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.report_example_data-time_001.png index c58caa2..24a0f2b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(70%).01.reporting-server_report-assistant_007.png index 8129e25..0d3001b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(70%).01.runtime_function_create_002.png index eaf3051..3b6d3ed 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.straton_runtime_configuration_001.png index 8d52873..3cbe549 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.worldview_zoom_steps_001.png index 01a99f1..a511946 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_MetadataEditor_variables_001.png index 3851b32..c5f919e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_EfficencyClass_009.png index eb8a2df..990606d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_extended-analysis_017.png index 30d737e..010adf9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_3rd-connector_014.png index c5280ef..3e3e68e 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_OLEDB-server_001.png index f7e8059..a931c7d 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_filter-alarmgroup_001.png index 1ef4ab5..a04648f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_scatter_002.png index 8832719..af7d1d1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_windrose_002.png index b28848f..f2b09c4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(70%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(80%).00.command-processing_screentypes_controlgroup_005.png index 1a378f9..5976186 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_BQLSX00_connections_002.png index 69fe19b..a8558b6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_SEL_Options_002.png index da725c7..ae9c80f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_archdrv_variablendefinition_001.png index 40ff734..f2a2d9f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_brpvi_offlineimport_004.png index 7f07e47..6b5f38b 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_simotion_online_import_001.png index 0914b0d..71ecc38 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_multimonitor_example_007.png index 692f7e3..12da0d7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_startpage_project-exist_001.png index bb5d690..81c59c1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_windows_position_006.png index 3df4c69..df445fa 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.etm_gantt_runtime_001.png index 17e96fc..8b942f9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.historian_assistent_001.png index 2449400..edd9e86 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.report_example_data-time_001.png index 2bd0c16..b7b6502 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(80%).00.reporting-server_report-assistant_007.png index 1aa4aac..ef33c79 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(80%).00.runtime_function_create_002.png index 8403567..3dc1fa0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.straton_runtime_configuration_001.png index 1b4eb74..ac2df32 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.worldview_zoom_steps_001.png index 7ecfc92..5d374d7 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_MetadataEditor_variables_001.png index 8d8e5cd..7b3b554 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_EfficencyClass_009.png index 9b57322..c0d9192 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_extended-analysis_017.png index de5442b..f4a4e20 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_3rd-connector_014.png index cf9339e..199e2ed 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_OLEDB-server_001.png index 36706e2..97ac35c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_filter-alarmgroup_001.png index 5a45c8b..1cd3220 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_scatter_002.png index 9bd721a..88019c1 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_windrose_002.png index 173da0f..8ffc262 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).00.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(80%).01.command-processing_screentypes_controlgroup_005.png index 66c866b..c708fa5 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.command-processing_screentypes_controlgroup_005.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.command-processing_screentypes_controlgroup_005.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_BQLSX00_connections_002.png index d1739cc..127cea8 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_BQLSX00_connections_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_BQLSX00_connections_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_SEL_Options_002.png index 52afbd0..9b3876c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_SEL_Options_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_SEL_Options_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_archdrv_variablendefinition_001.png index a2e9f52..3b30ed9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_archdrv_variablendefinition_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_archdrv_variablendefinition_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_brpvi_offlineimport_004.png index 29ad75f..d621de0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_brpvi_offlineimport_004.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_brpvi_offlineimport_004.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_simotion_online_import_001.png index 6f133e9..5ba37e6 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.driver_simotion_online_import_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.driver_simotion_online_import_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_multimonitor_example_007.png index 5a64afa..21ca222 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_multimonitor_example_007.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_multimonitor_example_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_startpage_project-exist_001.png index fbd3014..6a2e157 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_startpage_project-exist_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_startpage_project-exist_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_windows_position_006.png index 0997fa8..2c7f050 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.editor_windows_position_006.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.editor_windows_position_006.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.etm_gantt_runtime_001.png index f10d378..91c0b55 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.etm_gantt_runtime_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.etm_gantt_runtime_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.historian_assistent_001.png index 634d4db..0195159 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.historian_assistent_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.historian_assistent_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.report_example_data-time_001.png index db99075..7d62a0f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.report_example_data-time_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.report_example_data-time_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(80%).01.reporting-server_report-assistant_007.png index ee1272f..80762c9 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.reporting-server_report-assistant_007.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.reporting-server_report-assistant_007.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(80%).01.runtime_function_create_002.png index fe9a9da..8f0457c 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.runtime_function_create_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.runtime_function_create_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.straton_runtime_configuration_001.png index 6becc8b..24831ae 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.straton_runtime_configuration_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.straton_runtime_configuration_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.worldview_zoom_steps_001.png index 58b91ba..a90751a 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.worldview_zoom_steps_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.worldview_zoom_steps_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_MetadataEditor_variables_001.png index 3c6017b..e37d75f 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_MetadataEditor_variables_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_MetadataEditor_variables_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_EfficencyClass_009.png index 17a8d34..3a20741 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_EfficencyClass_009.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_EfficencyClass_009.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_extended-analysis_017.png index d5a5a64..04888d0 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_extended-analysis_017.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_REPORTS_extended-analysis_017.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_3rd-connector_014.png index 33f746b..cbc1e97 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_3rd-connector_014.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_3rd-connector_014.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_OLEDB-server_001.png index 841f327..28e42ec 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_OLEDB-server_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_OLEDB-server_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_filter-alarmgroup_001.png index d5a6181..ece66b5 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_filter-alarmgroup_001.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_filter-alarmgroup_001.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_scatter_002.png index 0465ea2..b9b3909 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_scatter_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_scatter_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_windrose_002.png index a8c7ccf..5eb53a4 100644 Binary files a/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_windrose_002.png and b/Examples/testdata/results/ThresholdProcessor(80%).01.zrs_ZAMS_windrose_002.png differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(90%).00.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 920747a..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(90%).00.driver_BQLSX00_connections_002.png deleted file mode 100644 index ac98b24..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(90%).00.driver_SEL_Options_002.png deleted file mode 100644 index 0c4fb29..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index f52d4be..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(90%).00.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 704f467..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.driver_simotion_online_import_001.png deleted file mode 100644 index 781d331..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(90%).00.editor_multimonitor_example_007.png deleted file mode 100644 index bc18c9b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.editor_startpage_project-exist_001.png deleted file mode 100644 index a32dd79..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(90%).00.editor_windows_position_006.png deleted file mode 100644 index f7010f8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.etm_gantt_runtime_001.png deleted file mode 100644 index b539418..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.historian_assistent_001.png deleted file mode 100644 index 2f2fafa..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.report_example_data-time_001.png deleted file mode 100644 index 61a885b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(90%).00.reporting-server_report-assistant_007.png deleted file mode 100644 index efd34c8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(90%).00.runtime_function_create_002.png deleted file mode 100644 index 7b53e41..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.straton_runtime_configuration_001.png deleted file mode 100644 index cddbaa5..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.worldview_zoom_steps_001.png deleted file mode 100644 index 3c49626..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 70104d8..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 229c952..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index 80f6d97..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 829c0b6..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index d18eb95..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index de7b0e1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 65749a0..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_windrose_002.png deleted file mode 100644 index 17d9b0b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).00.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.command-processing_screentypes_controlgroup_005.png b/Examples/testdata/results/ThresholdProcessor(90%).01.command-processing_screentypes_controlgroup_005.png deleted file mode 100644 index 72e5b26..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.command-processing_screentypes_controlgroup_005.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_BQLSX00_connections_002.png b/Examples/testdata/results/ThresholdProcessor(90%).01.driver_BQLSX00_connections_002.png deleted file mode 100644 index 1f19674..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_BQLSX00_connections_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_SEL_Options_002.png b/Examples/testdata/results/ThresholdProcessor(90%).01.driver_SEL_Options_002.png deleted file mode 100644 index a4fe4eb..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_SEL_Options_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_archdrv_variablendefinition_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.driver_archdrv_variablendefinition_001.png deleted file mode 100644 index 1603b21..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_archdrv_variablendefinition_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_brpvi_offlineimport_004.png b/Examples/testdata/results/ThresholdProcessor(90%).01.driver_brpvi_offlineimport_004.png deleted file mode 100644 index 2b2d7b5..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_brpvi_offlineimport_004.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_simotion_online_import_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.driver_simotion_online_import_001.png deleted file mode 100644 index 75729aa..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.driver_simotion_online_import_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_multimonitor_example_007.png b/Examples/testdata/results/ThresholdProcessor(90%).01.editor_multimonitor_example_007.png deleted file mode 100644 index 77edd93..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_multimonitor_example_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_startpage_project-exist_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.editor_startpage_project-exist_001.png deleted file mode 100644 index f5d4512..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_startpage_project-exist_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_windows_position_006.png b/Examples/testdata/results/ThresholdProcessor(90%).01.editor_windows_position_006.png deleted file mode 100644 index cde8c63..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.editor_windows_position_006.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.etm_gantt_runtime_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.etm_gantt_runtime_001.png deleted file mode 100644 index c9ed3cc..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.etm_gantt_runtime_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.historian_assistent_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.historian_assistent_001.png deleted file mode 100644 index a9328e2..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.historian_assistent_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.report_example_data-time_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.report_example_data-time_001.png deleted file mode 100644 index 64010d1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.report_example_data-time_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.reporting-server_report-assistant_007.png b/Examples/testdata/results/ThresholdProcessor(90%).01.reporting-server_report-assistant_007.png deleted file mode 100644 index 896254d..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.reporting-server_report-assistant_007.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.runtime_function_create_002.png b/Examples/testdata/results/ThresholdProcessor(90%).01.runtime_function_create_002.png deleted file mode 100644 index 23f3f4b..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.runtime_function_create_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.straton_runtime_configuration_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.straton_runtime_configuration_001.png deleted file mode 100644 index f7e78e1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.straton_runtime_configuration_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.worldview_zoom_steps_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.worldview_zoom_steps_001.png deleted file mode 100644 index bc03f81..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.worldview_zoom_steps_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_MetadataEditor_variables_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_MetadataEditor_variables_001.png deleted file mode 100644 index 4bca2f3..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_MetadataEditor_variables_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_EfficencyClass_009.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_EfficencyClass_009.png deleted file mode 100644 index 59360fa..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_EfficencyClass_009.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_extended-analysis_017.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_extended-analysis_017.png deleted file mode 100644 index d7cc7d9..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_REPORTS_extended-analysis_017.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_3rd-connector_014.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_3rd-connector_014.png deleted file mode 100644 index 902c9b1..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_3rd-connector_014.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_OLEDB-server_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_OLEDB-server_001.png deleted file mode 100644 index c611feb..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_OLEDB-server_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_filter-alarmgroup_001.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_filter-alarmgroup_001.png deleted file mode 100644 index 7048dab..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_filter-alarmgroup_001.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_scatter_002.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_scatter_002.png deleted file mode 100644 index 22e6d8f..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_scatter_002.png and /dev/null differ diff --git a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_windrose_002.png b/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_windrose_002.png deleted file mode 100644 index fc00776..0000000 Binary files a/Examples/testdata/results/ThresholdProcessor(90%).01.zrs_ZAMS_windrose_002.png and /dev/null differ diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Kapur).json index 7d1ad5c..814865f 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.542564}],"Text":"active","Confidence":96.79794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54188}],"Text":"interlocking","Confidence":96.79317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57395}],"Text":"text","Confidence":96.77364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57457}],"Text":"static","Confidence":96.41597},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57424}],"Text":"typ","Confidence":96.24245},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573906}],"Text":"10034","Confidence":95.51848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.213356}],"Text":"id","Confidence":94.4935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.0015}],"Text":"interlockings","Confidence":91.522606}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.542564}],"Text":"active","Confidence":96.79794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54188}],"Text":"interlocking","Confidence":96.79317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57395}],"Text":"text","Confidence":96.77364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57457}],"Text":"static","Confidence":96.41597},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57424}],"Text":"typ","Confidence":96.24245},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573906}],"Text":"10034","Confidence":95.51848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.213356}],"Text":"id","Confidence":94.4935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.0015}],"Text":"interlockings","Confidence":91.522606}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(OTSU).json index 9cf7555..6dbcc0b 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574554}],"Text":"text","Confidence":97.00578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57374}],"Text":"no","Confidence":96.960205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57188}],"Text":"static","Confidence":96.80931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55524}],"Text":"active","Confidence":96.759766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56436}],"Text":"interlocking","Confidence":96.759766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57459}],"Text":"typ","Confidence":96.520744},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57405}],"Text":"10034","Confidence":95.39681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.51649}],"Text":"id","Confidence":95.28345},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02329}],"Text":"interlockings","Confidence":91.568794}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574554}],"Text":"text","Confidence":97.00578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57374}],"Text":"no","Confidence":96.960205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57188}],"Text":"static","Confidence":96.80931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55524}],"Text":"active","Confidence":96.759766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56436}],"Text":"interlocking","Confidence":96.759766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57459}],"Text":"typ","Confidence":96.520744},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57405}],"Text":"10034","Confidence":95.39681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.51649}],"Text":"id","Confidence":95.28345},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02329}],"Text":"interlockings","Confidence":91.568794}],"Elapsed":0.0029} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Triangle).json index 9ce5ada..f2104e6 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.003} \ No newline at end of file +{"Words":[],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 7c4fb12..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53576}],"Text":"static","Confidence":83.415276}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(04_04).json index 499ebc9..11a28ea 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.91049}],"Text":"text","Confidence":71.373474},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.39578}],"Text":"interlockings\u0027","Confidence":67.77048}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.91049}],"Text":"text","Confidence":71.373474},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.39578}],"Text":"interlockings\u0027","Confidence":67.77048}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index a6a5301..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.675705}],"Text":"interlockings\u0027","Confidence":83.72996}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(08_08).json index bf61384..46f2375 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file +{"Words":[],"Elapsed":0.0013} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 74e785a..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56984}],"Text":"no","Confidence":96.71561}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(12_12).json index f6e71f3..bac0e6d 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56009}],"Text":"interlocking","Confidence":96.03055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"=","Confidence":98.875565}],"Text":"no","Confidence":90.52365}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56009}],"Text":"interlocking","Confidence":96.03055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"=","Confidence":98.875565}],"Text":"no","Confidence":90.52365}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index b22d33f..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.570404}],"Text":"interlocking","Confidence":92.600365}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(16_16).json index 89685df..4ba0fac 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57402}],"Text":"text","Confidence":97.001816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57146}],"Text":"active","Confidence":96.76578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57349}],"Text":"interlocking","Confidence":93.043564}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57402}],"Text":"text","Confidence":97.001816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57146}],"Text":"active","Confidence":96.76578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57349}],"Text":"interlocking","Confidence":93.043564}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 0fbf747..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.559105}],"Text":"10034","Confidence":96.67571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46393}],"Text":"text","Confidence":96.2475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.35562}],"Text":"interlocking","Confidence":95.32682},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.565956}],"Text":"interlockings","Confidence":89.96171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.512764}],"Text":"active","Confidence":88.43732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.42548}],"Text":"no","Confidence":55.04519},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.13441}],"Text":"id","Confidence":51.940826}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index c16ebdc..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56757}],"Text":"text","Confidence":96.95108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56799}],"Text":"no","Confidence":96.80819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56802}],"Text":"active","Confidence":96.70626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56384}],"Text":"interlocking","Confidence":96.331726},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.987274}],"Text":"interlockings","Confidence":92.63313},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.704834}],"Text":"ee","Confidence":51.843094}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(24_24).json index 1dccc58..aa29afe 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57441}],"Text":"text","Confidence":96.89887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57348}],"Text":"active","Confidence":95.977165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.52684}],"Text":"interlocking","Confidence":94.1788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.49744}],"Text":"no","Confidence":93.17914},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.95887}],"Text":"interlockings","Confidence":90.39885}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57441}],"Text":"text","Confidence":96.89887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57348}],"Text":"active","Confidence":95.977165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.52684}],"Text":"interlocking","Confidence":94.1788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.49744}],"Text":"no","Confidence":93.17914},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.95887}],"Text":"interlockings","Confidence":90.39885}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(0%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(0%).json deleted file mode 100644 index 27baf7a..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.570526}],"Text":"text","Confidence":96.84509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53051}],"Text":"interlocking","Confidence":96.71356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.571335}],"Text":"active","Confidence":96.47665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57168}],"Text":"static","Confidence":95.79578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55895}],"Text":"no","Confidence":95.33177},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45998}],"Text":"10034","Confidence":93.312256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02161}],"Text":"id","Confidence":93.15127},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.75128}],"Text":"interlackings","Confidence":91.25897},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.482025}],"Text":"interlacking","Confidence":89.374176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57347}],"Text":"typ","Confidence":87.176414}],"Elapsed":0.0019} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(10%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(10%).json deleted file mode 100644 index 5a43477..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56176}],"Text":"text","Confidence":96.93234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56667}],"Text":"active","Confidence":96.76146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.5692}],"Text":"no","Confidence":96.70138},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51375}],"Text":"interlocking","Confidence":96.59626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5713}],"Text":"static","Confidence":96.47444},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.536964}],"Text":"10034","Confidence":95.86471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56442}],"Text":"typ","Confidence":95.8309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.56729}],"Text":"id","Confidence":94.237465},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.990204}],"Text":"interlacking","Confidence":92.885376},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.00099}],"Text":"interlackings","Confidence":92.505875}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(100%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(100%).json deleted file mode 100644 index da0daea..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0031} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(20%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(20%).json index ee0419f..80346af 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57311}],"Text":"text","Confidence":96.983826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57013}],"Text":"active","Confidence":96.79877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55845}],"Text":"interlocking","Confidence":96.76135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57221}],"Text":"static","Confidence":96.67084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5747}],"Text":"typ","Confidence":96.36376},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55845}],"Text":"10034","Confidence":96.249245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.55599}],"Text":"id","Confidence":94.950134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56548}],"Text":"no","Confidence":93.63412},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.026474}],"Text":"interlacking","Confidence":93.10431},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02292}],"Text":"interlackings","Confidence":92.32093}],"Elapsed":0.0021} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57311}],"Text":"text","Confidence":96.983826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57013}],"Text":"active","Confidence":96.79877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55845}],"Text":"interlocking","Confidence":96.76135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57221}],"Text":"static","Confidence":96.67084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5747}],"Text":"typ","Confidence":96.36376},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55845}],"Text":"10034","Confidence":96.249245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.55599}],"Text":"id","Confidence":94.950134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56548}],"Text":"no","Confidence":93.63412},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.026474}],"Text":"interlacking","Confidence":93.10431},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02292}],"Text":"interlackings","Confidence":92.32093}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(40%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(40%).json index 0f8833f..7d49db5 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57454}],"Text":"text","Confidence":97.01799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.53414}],"Text":"no","Confidence":96.739006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54209}],"Text":"active","Confidence":96.72471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.56609}],"Text":"interlocking","Confidence":96.68917},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55662}],"Text":"10034","Confidence":96.6079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57184}],"Text":"static","Confidence":96.54196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.5194}],"Text":"id","Confidence":96.53813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57373}],"Text":"typ","Confidence":96.290535},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02138}],"Text":"interlockings","Confidence":92.45223}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57454}],"Text":"text","Confidence":97.01799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.53414}],"Text":"no","Confidence":96.739006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54209}],"Text":"active","Confidence":96.72471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.56609}],"Text":"interlocking","Confidence":96.68917},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55662}],"Text":"10034","Confidence":96.6079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57184}],"Text":"static","Confidence":96.54196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.5194}],"Text":"id","Confidence":96.53813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57373}],"Text":"typ","Confidence":96.290535},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02138}],"Text":"interlockings","Confidence":92.45223}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(50%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(50%).json index 0e7fd51..f8b9339 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57453}],"Text":"text","Confidence":97.00855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57374}],"Text":"no","Confidence":96.94295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.494896}],"Text":"interlocking","Confidence":96.46429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.51393}],"Text":"static","Confidence":96.3797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5536}],"Text":"active","Confidence":96.36135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574524}],"Text":"typ","Confidence":96.224144},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57401}],"Text":"10034","Confidence":95.1212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.49686}],"Text":"id","Confidence":94.99443},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02132}],"Text":"interlockings","Confidence":91.7407}],"Elapsed":0.0011} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57453}],"Text":"text","Confidence":97.00855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57374}],"Text":"no","Confidence":96.94295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.494896}],"Text":"interlocking","Confidence":96.46429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.51393}],"Text":"static","Confidence":96.3797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5536}],"Text":"active","Confidence":96.36135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574524}],"Text":"typ","Confidence":96.224144},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57401}],"Text":"10034","Confidence":95.1212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.49686}],"Text":"id","Confidence":94.99443},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.02132}],"Text":"interlockings","Confidence":91.7407}],"Elapsed":0.0018} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(60%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(60%).json index 16fb66b..1687b95 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(60%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(60%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57432}],"Text":"no","Confidence":96.91375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57411}],"Text":"static","Confidence":96.90599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.559456}],"Text":"interlocking","Confidence":96.867065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573456}],"Text":"text","Confidence":96.84417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57463}],"Text":"typ","Confidence":96.58554},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.568726}],"Text":"10034","Confidence":95.921646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.522766}],"Text":"id","Confidence":95.670044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54724}],"Text":"active","Confidence":95.297714},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.0218}],"Text":"interlockings","Confidence":92.37626}],"Elapsed":0.0012} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57432}],"Text":"no","Confidence":96.91375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57411}],"Text":"static","Confidence":96.90599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.559456}],"Text":"interlocking","Confidence":96.867065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573456}],"Text":"text","Confidence":96.84417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57463}],"Text":"typ","Confidence":96.58554},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.568726}],"Text":"10034","Confidence":95.921646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.522766}],"Text":"id","Confidence":95.670044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54724}],"Text":"active","Confidence":95.297714},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.0218}],"Text":"interlockings","Confidence":92.37626}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(70%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(70%).json index 22c26e4..dac7799 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54935}],"Text":"interlocking","Confidence":96.845436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56035}],"Text":"text","Confidence":96.69412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52499}],"Text":"active","Confidence":96.67488},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56628}],"Text":"10034","Confidence":96.658165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574196}],"Text":"typ","Confidence":96.07626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57464}],"Text":"static","Confidence":95.664856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.034874}],"Text":"id","Confidence":93.24414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56802}],"Text":"no","Confidence":93.02323},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.00373}],"Text":"interlockings","Confidence":92.761444}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54935}],"Text":"interlocking","Confidence":96.845436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56035}],"Text":"text","Confidence":96.69412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52499}],"Text":"active","Confidence":96.67488},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56628}],"Text":"10034","Confidence":96.658165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574196}],"Text":"typ","Confidence":96.07626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57464}],"Text":"static","Confidence":95.664856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.034874}],"Text":"id","Confidence":93.24414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56802}],"Text":"no","Confidence":93.02323},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.00373}],"Text":"interlockings","Confidence":92.761444}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(80%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(80%).json index 5690e7b..3e81493 100644 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573265}],"Text":"text","Confidence":96.83888},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57134}],"Text":"10034","Confidence":96.50367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57471}],"Text":"typ","Confidence":96.38421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.533226}],"Text":"interlocking","Confidence":96.04509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55591}],"Text":"active","Confidence":95.35461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.31962}],"Text":"id","Confidence":95.23735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53059}],"Text":"static","Confidence":88.47911},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.86086}],"Text":"interlockings","Confidence":88.38581}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573265}],"Text":"text","Confidence":96.83888},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57134}],"Text":"10034","Confidence":96.50367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57471}],"Text":"typ","Confidence":96.38421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.533226}],"Text":"interlocking","Confidence":96.04509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55591}],"Text":"active","Confidence":95.35461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.31962}],"Text":"id","Confidence":95.23735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53059}],"Text":"static","Confidence":88.47911},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.86086}],"Text":"interlockings","Confidence":88.38581}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(90%).json b/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(90%).json deleted file mode 100644 index aa53a43..0000000 --- a/Examples/testdata/results/command-processing_screentypes_controlgroup_005.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Kapur).json index 71c340f..a069f30 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.523895}],"Text":"wert","Confidence":83.35003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.317184}],"Text":"bseu","Confidence":68.95723}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.523895}],"Text":"wert","Confidence":83.35003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.317184}],"Text":"bseu","Confidence":68.95723}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(OTSU).json index f2104e6..7171390 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Triangle).json index a0afdbe..aa53a43 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file +{"Words":[],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(04_04).json index 1fb6a00..cec91b3 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0021} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index f2104e6..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(08_08).json index d7eeb80..cb6250d 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index d7eeb80..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(12_12).json index 6b46a4b..d49ca2d 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.00529}],"Text":"en","Confidence":58.73655}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.00529}],"Text":"en","Confidence":58.73655}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(16_16).json index aa53a43..cb6250d 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0012} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 13b20de..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.6827}],"Text":"never","Confidence":83.778915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.48385}],"Text":"wert","Confidence":70.34588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.935165}],"Text":"fl","Confidence":68.59128}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(20_20).json index c28a359..67c346d 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.51221}],"Text":"were","Confidence":75.97507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55936}],"Text":"wert","Confidence":73.62125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.28057}],"Text":"ka","Confidence":59.96401}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.51221}],"Text":"were","Confidence":75.97507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55936}],"Text":"wert","Confidence":73.62125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.28057}],"Text":"ka","Confidence":59.96401}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index bf2d962..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.41202}],"Text":"stele","Confidence":87.65596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":95.35092}],"Text":"te","Confidence":67.456474}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(24_24).json index 32a84ed..d7eeb80 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0007} \ No newline at end of file +{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(0%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(0%).json deleted file mode 100644 index 0ba2dc3..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.555275}],"Text":"wert","Confidence":92.22379},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.03713}],"Text":"datenbausteinkonfiguration","Confidence":91.651665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.438126}],"Text":"wet","Confidence":85.33292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.19285}],"Text":"id","Confidence":81.46678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.03917}],"Text":"neue","Confidence":76.43646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.62822}],"Text":"ohne","Confidence":76.39753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.471535}],"Text":"neve","Confidence":73.22467},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.0907}],"Text":"seriel","Confidence":72.95465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":96.03388}],"Text":"produkt","Confidence":72.23716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.79223}],"Text":"stale","Confidence":69.88289},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.76267}],"Text":"daterbaustan","Confidence":67.5146},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":96.807976}],"Text":"stebe","Confidence":66.835175},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":95.09961}],"Text":"abbrechen","Confidence":65.69724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55686}],"Text":"kennung","Confidence":65.45073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.73574}],"Text":"so","Confidence":65.45073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.960144}],"Text":"neuer","Confidence":64.72101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.43946}],"Text":"name","Confidence":64.71693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":94.57134}],"Text":"wert","Confidence":61.999405},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.96035}],"Text":"ard\u0131n","Confidence":61.450207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":94.445595}],"Text":"wert","Confidence":61.119186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.062416}],"Text":"het","Confidence":60.098343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.23171}],"Text":"stele","Confidence":59.621964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55081}],"Text":"sena","Confidence":52.75277}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(10%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(10%).json deleted file mode 100644 index 52f829b..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.51062}],"Text":"id","Confidence":93.54636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.22474}],"Text":"wert","Confidence":91.72513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.532425}],"Text":"archiv","Confidence":91.397415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":98.55767}],"Text":"wert","Confidence":89.90371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.7608}],"Text":"name","Confidence":89.34648},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.034805}],"Text":"datenbausteinkonfiguration","Confidence":88.72098},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.03549}],"Text":"datersatz","Confidence":84.72864},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"5","Confidence":97.32296}],"Text":"57-300","Confidence":81.26073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.21713}],"Text":"offset","Confidence":80.934265},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.14231}],"Text":"frei","Confidence":79.2034},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.56116}],"Text":"stete","Confidence":73.91592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.07106}],"Text":"neue","Confidence":68.467255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.3952}],"Text":"in","Confidence":66.92113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.54777}],"Text":"kennung","Confidence":65.03594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.900856}],"Text":"so","Confidence":65.03594},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.4573}],"Text":"schrebstetus","Confidence":58.77623},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.856964}],"Text":"frei","Confidence":58.38972},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.520905}],"Text":"stete","Confidence":57.58823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.20155}],"Text":"never","Confidence":56.100357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.3238}],"Text":"never","Confidence":54.914444},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"k","Confidence":98.47881}],"Text":"kchen","Confidence":51.936092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":92.957535}],"Text":"tl","Confidence":50.70275}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(100%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(20%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(20%).json index 419c282..14cc1e2 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.52321}],"Text":"never","Confidence":95.01881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.2741}],"Text":"id","Confidence":94.918686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56803}],"Text":"wert","Confidence":91.27358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.32737}],"Text":"name","Confidence":90.44299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.93274}],"Text":"offset","Confidence":88.79335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.99731}],"Text":"ohne","Confidence":88.05537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56634}],"Text":"datensatz","Confidence":76.49716},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.34744}],"Text":"techen","Confidence":74.43209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.71543}],"Text":"archiv","Confidence":74.15721},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.19241}],"Text":"daterbaustain","Confidence":73.46188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.536385}],"Text":"kennung","Confidence":70.849556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.96184}],"Text":"so","Confidence":70.849556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.19878}],"Text":"stele","Confidence":70.28728},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.6383}],"Text":"frei","Confidence":64.987175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.47694}],"Text":"einstellungen","Confidence":63.67745}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.52321}],"Text":"never","Confidence":95.01881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.2741}],"Text":"id","Confidence":94.918686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56803}],"Text":"wert","Confidence":91.27358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.32737}],"Text":"name","Confidence":90.44299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.93274}],"Text":"offset","Confidence":88.79335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.99731}],"Text":"ohne","Confidence":88.05537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56634}],"Text":"datensatz","Confidence":76.49716},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.34744}],"Text":"techen","Confidence":74.43209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.71543}],"Text":"archiv","Confidence":74.15721},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.19241}],"Text":"daterbaustain","Confidence":73.46188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.536385}],"Text":"kennung","Confidence":70.849556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.96184}],"Text":"so","Confidence":70.849556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.19878}],"Text":"stele","Confidence":70.28728},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.6383}],"Text":"frei","Confidence":64.987175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.47694}],"Text":"einstellungen","Confidence":63.67745}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(30%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(30%).json index d74bc5b..cb7d476 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.50685}],"Text":"id","Confidence":95.81502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.98864}],"Text":"archiv","Confidence":91.13259},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.02915}],"Text":"1d","Confidence":88.73735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.43757}],"Text":"offset","Confidence":87.2577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.16375}],"Text":"abbrechen","Confidence":87.14623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.11353}],"Text":"ohne","Confidence":86.79474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.5309}],"Text":"wert","Confidence":86.14381},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.69127}],"Text":"datenbaustein","Confidence":84.74064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.26959}],"Text":"name","Confidence":81.90321},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.42235}],"Text":"kennung","Confidence":81.21903},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.402016}],"Text":"screbstetus","Confidence":69.9576},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.48583}],"Text":"ooppetwort","Confidence":68.40082},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"5","Confidence":98.15378}],"Text":"50","Confidence":58.426838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.4902}],"Text":"serie","Confidence":54.73909},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.23338}],"Text":"seneil","Confidence":54.03691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.875305}],"Text":"so","Confidence":50.12714}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.50685}],"Text":"id","Confidence":95.81502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.98864}],"Text":"archiv","Confidence":91.13259},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.02915}],"Text":"1d","Confidence":88.73735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.43757}],"Text":"offset","Confidence":87.2577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.16375}],"Text":"abbrechen","Confidence":87.14623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.11353}],"Text":"ohne","Confidence":86.79474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.5309}],"Text":"wert","Confidence":86.14381},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.69127}],"Text":"datenbaustein","Confidence":84.74064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.26959}],"Text":"name","Confidence":81.90321},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.42235}],"Text":"kennung","Confidence":81.21903},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.402016}],"Text":"screbstetus","Confidence":69.9576},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.48583}],"Text":"ooppetwort","Confidence":68.40082},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"5","Confidence":98.15378}],"Text":"50","Confidence":58.426838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.4902}],"Text":"serie","Confidence":54.73909},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.23338}],"Text":"seneil","Confidence":54.03691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.875305}],"Text":"so","Confidence":50.12714}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(40%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(40%).json index 6e51004..6086428 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.04813}],"Text":"id","Confidence":93.33688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.529106}],"Text":"offset","Confidence":89.399254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.24982}],"Text":"ohne","Confidence":87.02242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.56455}],"Text":"kennung","Confidence":85.98188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.141304}],"Text":"so","Confidence":85.98188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.73748}],"Text":"archiv","Confidence":82.70628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.5294}],"Text":"wert","Confidence":82.53271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.81555}],"Text":"produkt","Confidence":81.45087},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.014755}],"Text":"datenbaustein","Confidence":79.62634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.526}],"Text":"datensatz","Confidence":67.721664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.52492}],"Text":"datentyp","Confidence":51.08529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.04605}],"Text":"name","Confidence":50.629837}],"Elapsed":0.0017} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.04813}],"Text":"id","Confidence":93.33688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.529106}],"Text":"offset","Confidence":89.399254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.24982}],"Text":"ohne","Confidence":87.02242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.56455}],"Text":"kennung","Confidence":85.98188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.141304}],"Text":"so","Confidence":85.98188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.73748}],"Text":"archiv","Confidence":82.70628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.5294}],"Text":"wert","Confidence":82.53271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.81555}],"Text":"produkt","Confidence":81.45087},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.014755}],"Text":"datenbaustein","Confidence":79.62634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.526}],"Text":"datensatz","Confidence":67.721664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.52492}],"Text":"datentyp","Confidence":51.08529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.04605}],"Text":"name","Confidence":50.629837}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(50%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(50%).json index 8a991e1..429a3b9 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.372505}],"Text":"wert","Confidence":91.33012},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.89888}],"Text":"datentyp","Confidence":90.38901},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.0055}],"Text":"frei","Confidence":70.2885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.02381}],"Text":"doppelwort","Confidence":66.56085},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.12975}],"Text":"stele","Confidence":63.61284}],"Elapsed":1.0864} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.372505}],"Text":"wert","Confidence":91.33012},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.89888}],"Text":"datentyp","Confidence":90.38901},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.0055}],"Text":"frei","Confidence":70.2885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.02381}],"Text":"doppelwort","Confidence":66.56085},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.12975}],"Text":"stele","Confidence":63.61284}],"Elapsed":0.0017} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(60%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(60%).json index 871ad5a..2c6e420 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(60%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(60%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0017} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(70%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(70%).json index 50878b4..c43e312 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47458}],"Text":"name","Confidence":63.53707}],"Elapsed":0.002} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47458}],"Text":"name","Confidence":63.53707}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(80%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(80%).json index a971f8d..e32925e 100644 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44242}],"Text":"wert","Confidence":81.287994}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44242}],"Text":"wert","Confidence":81.287994}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(90%).json b/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(90%).json deleted file mode 100644 index cb6250d..0000000 --- a/Examples/testdata/results/driver_BQLSX00_connections_002.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Kapur).json index 38bd710..59abcf5 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57435}],"Text":"100","Confidence":96.81294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549}],"Text":"integer","Confidence":96.754486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55166}],"Text":"sel","Confidence":96.73617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.559555}],"Text":"an","Confidence":96.73165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56852}],"Text":"and","Confidence":96.71046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54433}],"Text":"enter","Confidence":96.59473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.48509}],"Text":"between","Confidence":96.39564},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57335}],"Text":"180000","Confidence":92.49949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.30679}],"Text":"eq","Confidence":51.5387}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57435}],"Text":"100","Confidence":96.81294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549}],"Text":"integer","Confidence":96.754486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55166}],"Text":"sel","Confidence":96.73617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.559555}],"Text":"an","Confidence":96.73165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56852}],"Text":"and","Confidence":96.71046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54433}],"Text":"enter","Confidence":96.59473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.48509}],"Text":"between","Confidence":96.39564},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57335}],"Text":"180000","Confidence":92.49949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.30679}],"Text":"eq","Confidence":51.5387}],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(OTSU).json index 80758f4..825b15b 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.557755}],"Text":"integer","Confidence":96.90287},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573204}],"Text":"180000","Confidence":96.88203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57442}],"Text":"an","Confidence":96.852615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545555}],"Text":"enter","Confidence":96.81889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572014}],"Text":"and","Confidence":96.75398},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57427}],"Text":"100","Confidence":96.44409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573975}],"Text":"between","Confidence":96.338875}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.557755}],"Text":"integer","Confidence":96.90287},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573204}],"Text":"180000","Confidence":96.88203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57442}],"Text":"an","Confidence":96.852615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545555}],"Text":"enter","Confidence":96.81889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572014}],"Text":"and","Confidence":96.75398},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57427}],"Text":"100","Confidence":96.44409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573975}],"Text":"between","Confidence":96.338875}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Triangle).json index 5b559fc..a0afdbe 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/driver_SEL_Options_002.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0018} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 0a207b3..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.54476}],"Text":"100","Confidence":58.983696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.29428}],"Text":"ane","Confidence":52.471737}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(04_04).json index 181fbb8..81e3137 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.80529}],"Text":"between","Confidence":54.803955},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":96.53305}],"Text":"300001","Confidence":53.243164}],"Elapsed":0.0011} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.80529}],"Text":"between","Confidence":54.803955},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":96.53305}],"Text":"300001","Confidence":53.243164}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 45027c3..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45498}],"Text":"integer","Confidence":95.294174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.571945}],"Text":"between","Confidence":93.29697},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.422424}],"Text":"1180000","Confidence":71.53767}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(08_08).json index f71a7c9..a353c25 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57159}],"Text":"integer","Confidence":96.28458},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.15529}],"Text":"100","Confidence":94.087006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57439}],"Text":"an","Confidence":93.537796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.571045}],"Text":"enter","Confidence":93.537796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5641}],"Text":"between","Confidence":91.6357},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45984}],"Text":"180000","Confidence":82.00489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573105}],"Text":"and","Confidence":80.06698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.320335}],"Text":"an","Confidence":80.00014}],"Elapsed":0.0003} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57159}],"Text":"integer","Confidence":96.28458},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.15529}],"Text":"100","Confidence":94.087006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57439}],"Text":"an","Confidence":93.537796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.571045}],"Text":"enter","Confidence":93.537796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5641}],"Text":"between","Confidence":91.6357},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45984}],"Text":"180000","Confidence":82.00489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573105}],"Text":"and","Confidence":80.06698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.320335}],"Text":"an","Confidence":80.00014}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 9a745ad..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52883}],"Text":"integer","Confidence":96.70182},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.489365}],"Text":"100","Confidence":96.42557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572296}],"Text":"between","Confidence":96.324196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574135}],"Text":"enter","Confidence":96.12935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.50809}],"Text":"an","Confidence":96.12935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5705}],"Text":"and","Confidence":95.921455},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55664}],"Text":"180000","Confidence":91.09799}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(12_12).json index 89354cf..633fe14 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.559845}],"Text":"between","Confidence":96.7771},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55401}],"Text":"180000","Confidence":96.71503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56755}],"Text":"enter","Confidence":96.58295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54712}],"Text":"integer","Confidence":96.51638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48645}],"Text":"an","Confidence":96.405136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567604}],"Text":"and","Confidence":96.361565},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57377}],"Text":"100","Confidence":96.34142}],"Elapsed":0.0003} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.559845}],"Text":"between","Confidence":96.7771},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55401}],"Text":"180000","Confidence":96.71503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56755}],"Text":"enter","Confidence":96.58295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54712}],"Text":"integer","Confidence":96.51638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48645}],"Text":"an","Confidence":96.405136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567604}],"Text":"and","Confidence":96.361565},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57377}],"Text":"100","Confidence":96.34142}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 28856b4..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57409}],"Text":"and","Confidence":96.802475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.53883}],"Text":"between","Confidence":96.77186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57434}],"Text":"enter","Confidence":96.58665},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.50002}],"Text":"180000","Confidence":96.500175},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56852}],"Text":"100","Confidence":96.018715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57458}],"Text":"an","Confidence":93.48051},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51405}],"Text":"integer","Confidence":93.48051}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(16_16).json index 46f2f55..d06f956 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57414}],"Text":"enter","Confidence":96.796455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"and","Confidence":96.78719},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.546875}],"Text":"180000","Confidence":96.69191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56575}],"Text":"between","Confidence":96.64191},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.574165}],"Text":"100","Confidence":96.62709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54282}],"Text":"integer","Confidence":96.4964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.45048}],"Text":"an","Confidence":96.15335}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57414}],"Text":"enter","Confidence":96.796455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"and","Confidence":96.78719},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.546875}],"Text":"180000","Confidence":96.69191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56575}],"Text":"between","Confidence":96.64191},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.574165}],"Text":"100","Confidence":96.62709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54282}],"Text":"integer","Confidence":96.4964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.45048}],"Text":"an","Confidence":96.15335}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index cb6250d..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 63960c6..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.571846}],"Text":"between","Confidence":96.60566},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57446}],"Text":"100","Confidence":96.52151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57444}],"Text":"and","Confidence":96.52151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574776}],"Text":"enter","Confidence":96.44628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57483}],"Text":"an","Confidence":96.44628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48959}],"Text":"integer","Confidence":96.427155},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51934}],"Text":"180000","Confidence":96.34549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.79703}],"Text":"ay","Confidence":64.91623}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(0%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(0%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(10%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(10%).json deleted file mode 100644 index 1b8cb96..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56678}],"Text":"sel","Confidence":96.967476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57048}],"Text":"enter","Confidence":96.9458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57388}],"Text":"between","Confidence":96.765434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57427}],"Text":"an","Confidence":96.38523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56293}],"Text":"integer","Confidence":96.36008},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56979}],"Text":"and","Confidence":96.065},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57076}],"Text":"180000","Confidence":75.145035},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57399}],"Text":"190","Confidence":73.722336},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.568665}],"Text":"182000","Confidence":73.24007}],"Elapsed":0.0028} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(100%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(20%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(20%).json index b715e77..2820462 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55884}],"Text":"sel","Confidence":96.91188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56661}],"Text":"enter","Confidence":96.53417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57466}],"Text":"an","Confidence":96.53417},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57398}],"Text":"100","Confidence":96.503586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56674}],"Text":"and","Confidence":96.477104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4579}],"Text":"integer","Confidence":96.20533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574295}],"Text":"between","Confidence":96.13005},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57273}],"Text":"180000","Confidence":91.10669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.46787}],"Text":"ea","Confidence":50.42757}],"Elapsed":0.0021} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55884}],"Text":"sel","Confidence":96.91188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56661}],"Text":"enter","Confidence":96.53417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57466}],"Text":"an","Confidence":96.53417},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57398}],"Text":"100","Confidence":96.503586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56674}],"Text":"and","Confidence":96.477104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4579}],"Text":"integer","Confidence":96.20533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574295}],"Text":"between","Confidence":96.13005},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57273}],"Text":"180000","Confidence":91.10669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.46787}],"Text":"ea","Confidence":50.42757}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(30%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(30%).json index 744eff7..fd7a083 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57442}],"Text":"100","Confidence":96.86419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.544495}],"Text":"integer","Confidence":96.811485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56187}],"Text":"sel","Confidence":96.78074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55993}],"Text":"an","Confidence":96.7602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57024}],"Text":"and","Confidence":96.5703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57192}],"Text":"between","Confidence":96.49025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545494}],"Text":"enter","Confidence":96.43183},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57399}],"Text":"180000","Confidence":93.656425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.30679}],"Text":"eq","Confidence":51.5387}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57442}],"Text":"100","Confidence":96.86419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.544495}],"Text":"integer","Confidence":96.811485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56187}],"Text":"sel","Confidence":96.78074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55993}],"Text":"an","Confidence":96.7602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57024}],"Text":"and","Confidence":96.5703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57192}],"Text":"between","Confidence":96.49025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545494}],"Text":"enter","Confidence":96.43183},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57399}],"Text":"180000","Confidence":93.656425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.30679}],"Text":"eq","Confidence":51.5387}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(50%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(50%).json index 35f6229..ba6f4fc 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57412}],"Text":"enter","Confidence":97.00279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.564606}],"Text":"integer","Confidence":96.904106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.570175}],"Text":"and","Confidence":96.84106},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56961}],"Text":"180000","Confidence":96.77808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51952}],"Text":"an","Confidence":96.61205},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.50587}],"Text":"100","Confidence":96.54106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56949}],"Text":"between","Confidence":96.43199},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.571945}],"Text":"180000","Confidence":94.427826}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57412}],"Text":"enter","Confidence":97.00279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.564606}],"Text":"integer","Confidence":96.904106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.570175}],"Text":"and","Confidence":96.84106},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56961}],"Text":"180000","Confidence":96.77808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51952}],"Text":"an","Confidence":96.61205},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.50587}],"Text":"100","Confidence":96.54106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56949}],"Text":"between","Confidence":96.43199},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.571945}],"Text":"180000","Confidence":94.427826}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(70%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(70%).json index f0dde5d..8e2621b 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55097}],"Text":"integer","Confidence":96.81885},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57435}],"Text":"100","Confidence":96.701965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57289}],"Text":"enter","Confidence":96.650536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574905}],"Text":"an","Confidence":96.650536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57333}],"Text":"and","Confidence":96.59044},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52718}],"Text":"180000","Confidence":96.502014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56886}],"Text":"between","Confidence":96.29021}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55097}],"Text":"integer","Confidence":96.81885},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57435}],"Text":"100","Confidence":96.701965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57289}],"Text":"enter","Confidence":96.650536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574905}],"Text":"an","Confidence":96.650536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57333}],"Text":"and","Confidence":96.59044},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52718}],"Text":"180000","Confidence":96.502014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56886}],"Text":"between","Confidence":96.29021}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(80%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(80%).json index 41f5eb2..43b0e44 100644 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57406}],"Text":"enter","Confidence":96.95982},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57466}],"Text":"100","Confidence":96.84956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54557}],"Text":"and","Confidence":96.80797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.568405}],"Text":"integer","Confidence":96.69381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52622}],"Text":"an","Confidence":96.68356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572655}],"Text":"between","Confidence":96.52856},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57151}],"Text":"180000","Confidence":94.41809}],"Elapsed":0.0012} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57406}],"Text":"enter","Confidence":96.95982},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57466}],"Text":"100","Confidence":96.84956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54557}],"Text":"and","Confidence":96.80797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.568405}],"Text":"integer","Confidence":96.69381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52622}],"Text":"an","Confidence":96.68356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572655}],"Text":"between","Confidence":96.52856},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57151}],"Text":"180000","Confidence":94.41809}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(90%).json b/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(90%).json deleted file mode 100644 index 7dcee27..0000000 --- a/Examples/testdata/results/driver_SEL_Options_002.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.573944}],"Text":"integer","Confidence":96.74669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570076}],"Text":"between","Confidence":96.70778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51693}],"Text":"and","Confidence":96.61849},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57182}],"Text":"100","Confidence":96.26492},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56971}],"Text":"180000","Confidence":95.862015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574326}],"Text":"enter","Confidence":95.80082},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57389}],"Text":"an","Confidence":95.80082}],"Elapsed":0.002} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(Kapur).json index bb951bf..ec075e4 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":95.878975}],"Text":"gq","Confidence":70.975655},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.29547}],"Text":"ayig","Confidence":68.44551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":93.51789}],"Text":"yom","Confidence":54.625214}],"Elapsed":0.0012} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":95.878975}],"Text":"gq","Confidence":70.975655},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.29547}],"Text":"ayig","Confidence":68.44551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":93.51789}],"Text":"yom","Confidence":54.625214}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(OTSU).json index f2dd536..deefa5b 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56974}],"Text":"sie","Confidence":96.870346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54621}],"Text":"das","Confidence":96.69995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.48693}],"Text":"byte","Confidence":96.40854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.502846}],"Text":"objekt","Confidence":94.29667},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.99861}],"Text":"selektieren","Confidence":92.62254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.572876}],"Text":"gew\u00FCnschte","Confidence":88.507454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"x","Confidence":94.904945}],"Text":"xl","Confidence":64.334625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.31634}],"Text":"verlassen","Confidence":60.214363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.469376}],"Text":"hilfe","Confidence":58.18582}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56974}],"Text":"sie","Confidence":96.870346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54621}],"Text":"das","Confidence":96.69995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.48693}],"Text":"byte","Confidence":96.40854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.502846}],"Text":"objekt","Confidence":94.29667},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.99861}],"Text":"selektieren","Confidence":92.62254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.572876}],"Text":"gew\u00FCnschte","Confidence":88.507454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"x","Confidence":94.904945}],"Text":"xl","Confidence":64.334625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.31634}],"Text":"verlassen","Confidence":60.214363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.469376}],"Text":"hilfe","Confidence":58.18582}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index 1785b7d..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":98.98419}],"Text":"yariablendefinition","Confidence":77.83586}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(04_04).json index d7eeb80..cec91b3 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 32a84ed..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(08_08).json index 0705ba2..d8e3650 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54981}],"Text":"float","Confidence":95.65159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56754}],"Text":"gew\u00FCnschte","Confidence":90.145195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54938}],"Text":"sie","Confidence":86.39467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.480545}],"Text":"das","Confidence":86.39467},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.293816}],"Text":"archive","Confidence":74.05672},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.027306}],"Text":"elektieren","Confidence":67.86906}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54981}],"Text":"float","Confidence":95.65159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56754}],"Text":"gew\u00FCnschte","Confidence":90.145195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54938}],"Text":"sie","Confidence":86.39467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.480545}],"Text":"das","Confidence":86.39467},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.293816}],"Text":"archive","Confidence":74.05672},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.027306}],"Text":"elektieren","Confidence":67.86906}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index e9c1ef3..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57051}],"Text":"bit","Confidence":96.99355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.5715}],"Text":"byte","Confidence":96.94824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56584}],"Text":"float","Confidence":96.94088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56829}],"Text":"wort","Confidence":96.61019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56689}],"Text":"string","Confidence":96.580734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54183}],"Text":"sie","Confidence":96.565834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.488625}],"Text":"gew\u00FCnschte","Confidence":95.72711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51419}],"Text":"archive","Confidence":93.39247},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.04273}],"Text":"treibervariable","Confidence":91.86523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.03588}],"Text":"selektieren","Confidence":91.6345},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.02287}],"Text":"doppelwort","Confidence":91.0644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.71535}],"Text":"variablendefinition","Confidence":91.00742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5733}],"Text":"das","Confidence":90.99895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.254265}],"Text":"er","Confidence":73.77984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.061295}],"Text":"ie","Confidence":65.42906},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.68386}],"Text":"129","Confidence":57.393898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.29489}],"Text":"en","Confidence":53.79088}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(16_16).json index 1148ab8..9e681af 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568954}],"Text":"bit","Confidence":96.98268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57179}],"Text":"byte","Confidence":96.96005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56875}],"Text":"float","Confidence":96.95954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56994}],"Text":"wort","Confidence":96.83871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55315}],"Text":"sie","Confidence":96.8237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54176}],"Text":"das","Confidence":96.792336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5743}],"Text":"gew\u00FCnschte","Confidence":96.61034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5426}],"Text":"string","Confidence":96.452614},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.037704}],"Text":"doppelwort","Confidence":91.84849},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.99251}],"Text":"treibervariable","Confidence":90.982735},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.97053}],"Text":"selektieren","Confidence":90.92082},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.26904}],"Text":"variablendefinition","Confidence":87.88329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.47833}],"Text":"ff","Confidence":68.7871},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.02881}],"Text":"gewtinschte","Confidence":65.99806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.57178}],"Text":"konfiguration","Confidence":61.90967},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.35115}],"Text":"tloat","Confidence":60.458076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.29384}],"Text":"archive","Confidence":53.819756}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568954}],"Text":"bit","Confidence":96.98268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57179}],"Text":"byte","Confidence":96.96005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56875}],"Text":"float","Confidence":96.95954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56994}],"Text":"wort","Confidence":96.83871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55315}],"Text":"sie","Confidence":96.8237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54176}],"Text":"das","Confidence":96.792336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5743}],"Text":"gew\u00FCnschte","Confidence":96.61034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5426}],"Text":"string","Confidence":96.452614},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.037704}],"Text":"doppelwort","Confidence":91.84849},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.99251}],"Text":"treibervariable","Confidence":90.982735},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.97053}],"Text":"selektieren","Confidence":90.92082},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.26904}],"Text":"variablendefinition","Confidence":87.88329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.47833}],"Text":"ff","Confidence":68.7871},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.02881}],"Text":"gewtinschte","Confidence":65.99806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.57178}],"Text":"konfiguration","Confidence":61.90967},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.35115}],"Text":"tloat","Confidence":60.458076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.29384}],"Text":"archive","Confidence":53.819756}],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 15d79bf..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56986}],"Text":"byte","Confidence":96.98903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56874}],"Text":"wort","Confidence":96.899796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.534904}],"Text":"bit","Confidence":96.74433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56741}],"Text":"float","Confidence":96.736694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.91482}],"Text":"string","Confidence":92.40374},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.04331}],"Text":"treibervariable","Confidence":91.92505},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.02985}],"Text":"doppelwort","Confidence":91.3917}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(20_20).json index 16a8546..fd5f04d 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56443}],"Text":"bit","Confidence":96.95099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.562386}],"Text":"byte","Confidence":96.92373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573105}],"Text":"float","Confidence":96.56949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.36451}],"Text":"wort","Confidence":95.55158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.551796}],"Text":"string","Confidence":94.910934},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.007416}],"Text":"doppelwort","Confidence":91.55279},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.02877}],"Text":"treibervariable","Confidence":86.56958},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.833626}],"Text":"variablendefinition","Confidence":84.8354},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.014435}],"Text":"treibervatiable","Confidence":78.32142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.520706}],"Text":"archive","Confidence":69.572334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.54265}],"Text":"et","Confidence":68.71352}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56443}],"Text":"bit","Confidence":96.95099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.562386}],"Text":"byte","Confidence":96.92373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573105}],"Text":"float","Confidence":96.56949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.36451}],"Text":"wort","Confidence":95.55158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.551796}],"Text":"string","Confidence":94.910934},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.007416}],"Text":"doppelwort","Confidence":91.55279},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.02877}],"Text":"treibervariable","Confidence":86.56958},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.833626}],"Text":"variablendefinition","Confidence":84.8354},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.014435}],"Text":"treibervatiable","Confidence":78.32142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.520706}],"Text":"archive","Confidence":69.572334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.54265}],"Text":"et","Confidence":68.71352}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 94274d6..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57397}],"Text":"bit","Confidence":96.787285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57074}],"Text":"wort","Confidence":96.71993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.569855}],"Text":"float","Confidence":96.56235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56068}],"Text":"byte","Confidence":96.24918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.111374}],"Text":"string","Confidence":89.60209},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.033806}],"Text":"doppelwort","Confidence":86.3033},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.017105}],"Text":"treibervariable","Confidence":84.238174}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(0%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(0%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(10%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(10%).json deleted file mode 100644 index 0aef4e7..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.267365}],"Text":"archive","Confidence":80.03415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.785225}],"Text":"float","Confidence":51.37535}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(100%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(100%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(20%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(20%).json index 0a9a907..ddf36ee 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570244}],"Text":"float","Confidence":96.95428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5736}],"Text":"sie","Confidence":96.197586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.396355}],"Text":"hilfe","Confidence":95.62291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.52523}],"Text":"objekt","Confidence":94.93959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.321045}],"Text":"archive","Confidence":94.93547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56621}],"Text":"das","Confidence":93.2588},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.96682}],"Text":"selektieren","Confidence":92.49347},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.01511}],"Text":"gewunschte","Confidence":91.7324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.46977}],"Text":"verlassen","Confidence":89.37221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.18424}],"Text":"chop","Confidence":87.28972}],"Elapsed":0.004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570244}],"Text":"float","Confidence":96.95428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5736}],"Text":"sie","Confidence":96.197586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.396355}],"Text":"hilfe","Confidence":95.62291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.52523}],"Text":"objekt","Confidence":94.93959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.321045}],"Text":"archive","Confidence":94.93547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56621}],"Text":"das","Confidence":93.2588},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.96682}],"Text":"selektieren","Confidence":92.49347},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.01511}],"Text":"gewunschte","Confidence":91.7324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.46977}],"Text":"verlassen","Confidence":89.37221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.18424}],"Text":"chop","Confidence":87.28972}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(30%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(30%).json index 9ffa1e5..c957b23 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57259}],"Text":"bit","Confidence":96.79886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57402}],"Text":"float","Confidence":96.68684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.567726}],"Text":"byte","Confidence":96.634254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.52222}],"Text":"wort","Confidence":95.03492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.561264}],"Text":"konfiguration","Confidence":94.79544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56546}],"Text":"string","Confidence":93.471855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.99842}],"Text":"doppelwort","Confidence":92.0235},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03558}],"Text":"treibervariable","Confidence":91.972725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948}],"Elapsed":0.0014} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57259}],"Text":"bit","Confidence":96.79886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57402}],"Text":"float","Confidence":96.68684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.567726}],"Text":"byte","Confidence":96.634254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.52222}],"Text":"wort","Confidence":95.03492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.561264}],"Text":"konfiguration","Confidence":94.79544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56546}],"Text":"string","Confidence":93.471855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.99842}],"Text":"doppelwort","Confidence":92.0235},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03558}],"Text":"treibervariable","Confidence":91.972725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948}],"Elapsed":0.0116} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(40%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(40%).json index d8264ba..c5d961e 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948}],"Elapsed":0.0014} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(50%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(50%).json index 5016811..adc4a5b 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.68306}],"Text":"bi","Confidence":57.812683}],"Elapsed":0.0012} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56963}],"Text":"sie","Confidence":96.89126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5131}],"Text":"das","Confidence":96.58822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47914}],"Text":"hilfe","Confidence":96.354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.481964}],"Text":"objekt","Confidence":93.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.997375}],"Text":"selektieren","Confidence":92.40666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57443}],"Text":"gew\u00FCnschte","Confidence":74.237656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.76956}],"Text":"verlassen","Confidence":63.386948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.68306}],"Text":"bi","Confidence":57.812683}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(60%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(60%).json index 54e584f..e6ee9a4 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(60%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(60%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57245}],"Text":"sie","Confidence":96.05889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.534}],"Text":"objekt","Confidence":95.68962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.35617}],"Text":"hilfe","Confidence":95.49322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55796}],"Text":"das","Confidence":93.192894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.92732}],"Text":"selektieren","Confidence":92.430244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.03607}],"Text":"gewunschte","Confidence":91.65348},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.75928}],"Text":"verlassen","Confidence":91.31497},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.568146}],"Text":"bit","Confidence":96.92102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49227}],"Text":"byte","Confidence":96.44589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55909}],"Text":"string","Confidence":96.332664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.55462}],"Text":"konfiguration","Confidence":96.07746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57245}],"Text":"sie","Confidence":96.05889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.534}],"Text":"objekt","Confidence":95.68962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.35617}],"Text":"hilfe","Confidence":95.49322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55796}],"Text":"das","Confidence":93.192894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572754}],"Text":"float","Confidence":92.49397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.92732}],"Text":"selektieren","Confidence":92.430244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.03607}],"Text":"gewunschte","Confidence":91.65348},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.75928}],"Text":"verlassen","Confidence":91.31497},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03683}],"Text":"treibervariable","Confidence":89.22003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.907555}],"Text":"doppelwort","Confidence":89.21376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.01044}],"Text":"wort","Confidence":79.07303}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(70%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(70%).json index cb6f89a..75754cb 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57452}],"Text":"float","Confidence":96.85986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.53596}],"Text":"byte","Confidence":96.751724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57261}],"Text":"bit","Confidence":96.496376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55371}],"Text":"string","Confidence":96.30129},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.03963}],"Text":"konfiguration","Confidence":91.67195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.04107}],"Text":"treibervariable","Confidence":91.07109},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.04086}],"Text":"doppelwort","Confidence":89.56325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.38497}],"Text":"verlassen","Confidence":81.69479},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.477844}],"Text":"hilfe","Confidence":73.72683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.9629}],"Text":"ort","Confidence":64.7403}],"Elapsed":0.0013} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57452}],"Text":"float","Confidence":96.85986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.53596}],"Text":"byte","Confidence":96.751724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57261}],"Text":"bit","Confidence":96.496376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55371}],"Text":"string","Confidence":96.30129},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.03963}],"Text":"konfiguration","Confidence":91.67195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.04107}],"Text":"treibervariable","Confidence":91.07109},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.04086}],"Text":"doppelwort","Confidence":89.56325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.38497}],"Text":"verlassen","Confidence":81.69479},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.477844}],"Text":"hilfe","Confidence":73.72683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.9629}],"Text":"ort","Confidence":64.7403}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(80%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(80%).json index 5c6df76..1a8539d 100644 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57289}],"Text":"byte","Confidence":97.00685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57482}],"Text":"bit","Confidence":96.94006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57411}],"Text":"float","Confidence":96.93899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56662}],"Text":"wort","Confidence":96.71951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57472}],"Text":"string","Confidence":95.85072},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03934}],"Text":"treibervariable","Confidence":92.43559},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.04112}],"Text":"doppelwort","Confidence":92.058525},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.03939}],"Text":"konfiguration","Confidence":89.61225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.03573}],"Text":"bl","Confidence":58.250114}],"Elapsed":0.0011} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57289}],"Text":"byte","Confidence":97.00685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57482}],"Text":"bit","Confidence":96.94006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57411}],"Text":"float","Confidence":96.93899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56662}],"Text":"wort","Confidence":96.71951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57472}],"Text":"string","Confidence":95.85072},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03934}],"Text":"treibervariable","Confidence":92.43559},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.04112}],"Text":"doppelwort","Confidence":92.058525},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"K","Confidence":99.03939}],"Text":"konfiguration","Confidence":89.61225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.03573}],"Text":"bl","Confidence":58.250114}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(90%).json b/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(90%).json deleted file mode 100644 index 233053c..0000000 --- a/Examples/testdata/results/driver_archdrv_variablendefinition_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57065}],"Text":"bit","Confidence":96.96286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.572945}],"Text":"byte","Confidence":96.09232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.5426}],"Text":"wort","Confidence":94.92757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.38668}],"Text":"float","Confidence":91.882805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.947205}],"Text":"doppelwort","Confidence":82.25223},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.0351}],"Text":"treibervartable","Confidence":82.106445},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.04285}],"Text":"treibervariable","Confidence":78.256294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.44571}],"Text":"sting","Confidence":74.20154},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.03718}],"Text":"treibervatiable","Confidence":67.32394},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u00A5","Confidence":95.792816}],"Text":"ariablendefinition","Confidence":64.83447},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":93.807785}],"Text":"yariablendefinition","Confidence":56.65447}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Kapur).json index bd7a1c2..e4b30ad 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57077}],"Text":"new","Confidence":96.57643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57279}],"Text":"filename","Confidence":96.13549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54751}],"Text":"opc","Confidence":96.04332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54717}],"Text":"tag","Confidence":96.04332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.571465}],"Text":"description","Confidence":95.90221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54436}],"Text":"anew","Confidence":95.48964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55816}],"Text":"file","Confidence":95.15849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.41627}],"Text":"declaration","Confidence":88.91388},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.029976}],"Text":"tag","Confidence":70.711624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.57413}],"Text":"inewopctag","Confidence":56.68903},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.71098}],"Text":"newopc","Confidence":54.780533}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57077}],"Text":"new","Confidence":96.57643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57279}],"Text":"filename","Confidence":96.13549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54751}],"Text":"opc","Confidence":96.04332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54717}],"Text":"tag","Confidence":96.04332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.571465}],"Text":"description","Confidence":95.90221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54436}],"Text":"anew","Confidence":95.48964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55816}],"Text":"file","Confidence":95.15849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.41627}],"Text":"declaration","Confidence":88.91388},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.029976}],"Text":"tag","Confidence":70.711624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.57413}],"Text":"inewopctag","Confidence":56.68903},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.71098}],"Text":"newopc","Confidence":54.780533}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(OTSU).json index 0ecf34d..4163ec3 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5679}],"Text":"tag","Confidence":96.82897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.535126}],"Text":"opc","Confidence":96.692345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57307}],"Text":"filename","Confidence":96.68601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5736}],"Text":"declaration","Confidence":96.57921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55665}],"Text":"new","Confidence":96.405304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.553955}],"Text":"anew","Confidence":96.322075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57059}],"Text":"file","Confidence":95.10455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5729}],"Text":"description","Confidence":94.62018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":99.046616}],"Text":"back","Confidence":82.70294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.5172}],"Text":"fish","Confidence":72.08441},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.46729}],"Text":"newopc","Confidence":61.271038},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":94.349304}],"Text":"tag","Confidence":60.445118}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5679}],"Text":"tag","Confidence":96.82897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.535126}],"Text":"opc","Confidence":96.692345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57307}],"Text":"filename","Confidence":96.68601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5736}],"Text":"declaration","Confidence":96.57921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55665}],"Text":"new","Confidence":96.405304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.553955}],"Text":"anew","Confidence":96.322075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57059}],"Text":"file","Confidence":95.10455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5729}],"Text":"description","Confidence":94.62018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":99.046616}],"Text":"back","Confidence":82.70294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.5172}],"Text":"fish","Confidence":72.08441},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.46729}],"Text":"newopc","Confidence":61.271038},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":94.349304}],"Text":"tag","Confidence":60.445118}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Triangle).json index a0afdbe..2c6e420 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 3932a88..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":95.13965}],"Text":"ee","Confidence":60.69655}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(04_04).json index ca5b173..03f44ab 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.01423}],"Text":"tile","Confidence":72.09959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.30418}],"Text":"anew","Confidence":65.36363},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.43297}],"Text":"opgtaq","Confidence":56.3579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.80319}],"Text":"ca","Confidence":50.831207}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.01423}],"Text":"tile","Confidence":72.09959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.30418}],"Text":"anew","Confidence":65.36363},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.43297}],"Text":"opgtaq","Confidence":56.3579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.80319}],"Text":"ca","Confidence":50.831207}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 6e1baac..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.3552}],"Text":"tag","Confidence":84.447296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56044}],"Text":"anew","Confidence":58.525005},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.00508}],"Text":"opg","Confidence":58.525005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.123604}],"Text":"fle","Confidence":56.93808}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(08_08).json index daf2efa..40a7018 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.40399}],"Text":"anew","Confidence":95.36921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57209}],"Text":"opc","Confidence":93.542496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44771}],"Text":"tag","Confidence":93.36176}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.40399}],"Text":"anew","Confidence":95.36921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57209}],"Text":"opc","Confidence":93.542496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44771}],"Text":"tag","Confidence":93.36176}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index ed7f5cd..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55595}],"Text":"opc","Confidence":96.87548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57099}],"Text":"tag","Confidence":96.27268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.95829}],"Text":"anew","Confidence":78.70804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.46809}],"Text":"file","Confidence":71.92119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57114}],"Text":"description","Confidence":65.32554}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(12_12).json index faa51c7..6c43b55 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.00429}],"Text":"opc","Confidence":90.48104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.23629}],"Text":"anew","Confidence":80.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5723}],"Text":"description","Confidence":67.67216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.414024}],"Text":"fic","Confidence":65.75856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43841}],"Text":"tad","Confidence":55.18745}],"Elapsed":0.0003} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.00429}],"Text":"opc","Confidence":90.48104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.23629}],"Text":"anew","Confidence":80.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5723}],"Text":"description","Confidence":67.67216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.414024}],"Text":"fic","Confidence":65.75856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43841}],"Text":"tad","Confidence":55.18745}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 2b2d261..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.572945}],"Text":"opc","Confidence":96.365746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57073}],"Text":"tag","Confidence":93.28778},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":97.58253}],"Text":"anew","Confidence":83.07768},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.32465}],"Text":"file","Confidence":82.92248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57159}],"Text":"file","Confidence":75.97104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.895874}],"Text":"ld","Confidence":57.714252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":92.97475}],"Text":"anew","Confidence":50.82323}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(16_16).json index 1413ced..de0178a 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56575}],"Text":"new","Confidence":96.91508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55554}],"Text":"opc","Confidence":96.52475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.567825}],"Text":"tag","Confidence":96.27786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.26754}],"Text":"anew","Confidence":94.872795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.570305}],"Text":"declaration","Confidence":76.479706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56886}],"Text":"file","Confidence":52.430283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.83968}],"Text":"sro","Confidence":51.902386}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56575}],"Text":"new","Confidence":96.91508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55554}],"Text":"opc","Confidence":96.52475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.567825}],"Text":"tag","Confidence":96.27786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.26754}],"Text":"anew","Confidence":94.872795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.570305}],"Text":"declaration","Confidence":76.479706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56886}],"Text":"file","Confidence":52.430283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.83968}],"Text":"sro","Confidence":51.902386}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(20_20).json index 8841f36..4a1295d 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566345}],"Text":"file","Confidence":77.584335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.56399}],"Text":"opc","Confidence":75.201645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.570465}],"Text":"tag","Confidence":75.201645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.95743}],"Text":"wh","Confidence":62.628963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.9354}],"Text":"se","Confidence":50.54782}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566345}],"Text":"file","Confidence":77.584335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.56399}],"Text":"opc","Confidence":75.201645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.570465}],"Text":"tag","Confidence":75.201645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.95743}],"Text":"wh","Confidence":62.628963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.9354}],"Text":"se","Confidence":50.54782}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 97f25c9..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.579025}],"Text":"io","Confidence":55.053158}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(24_24).json index 0f31520..2e6db0b 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.31432}],"Text":"ss","Confidence":69.56038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.44558}],"Text":"cs","Confidence":54.119038}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.31432}],"Text":"ss","Confidence":69.56038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.44558}],"Text":"cs","Confidence":54.119038}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(0%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(0%).json deleted file mode 100644 index 415e715..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.53651}],"Text":"es","Confidence":78.754456}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(10%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(10%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(100%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(100%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(20%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(20%).json index b5a7bcc..8a51395 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.14075}],"Text":"opc","Confidence":93.98521},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.021385}],"Text":"mew","Confidence":93.14967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.475006}],"Text":"tay","Confidence":73.79976},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.90464}],"Text":"14","Confidence":64.33247},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":95.258446}],"Text":"zeclaration","Confidence":55.92788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.510925}],"Text":"fd","Confidence":54.57649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.12061}],"Text":"dec","Confidence":51.813465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.617035}],"Text":"fal","Confidence":50.167118}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.14075}],"Text":"opc","Confidence":93.98521},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.021385}],"Text":"mew","Confidence":93.14967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.475006}],"Text":"tay","Confidence":73.79976},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.90464}],"Text":"14","Confidence":64.33247},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":95.258446}],"Text":"zeclaration","Confidence":55.92788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.510925}],"Text":"fd","Confidence":54.57649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.12061}],"Text":"dec","Confidence":51.813465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.617035}],"Text":"fal","Confidence":50.167118}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(30%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(30%).json index d7a7382..ed3fc55 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56814}],"Text":"back","Confidence":96.76056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564285}],"Text":"finish","Confidence":96.65777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53867}],"Text":"cancel","Confidence":96.234055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.51998}],"Text":"tag","Confidence":95.99185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.097885}],"Text":"opc","Confidence":93.68517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.41674}],"Text":"news","Confidence":88.91717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.66675}],"Text":"help","Confidence":86.02423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57237}],"Text":"file","Confidence":79.88855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.00071}],"Text":"cescrig\u00FCcr","Confidence":69.10635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.31069}],"Text":"declaration","Confidence":60.17482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.04574}],"Text":"whe","Confidence":55.662884}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56814}],"Text":"back","Confidence":96.76056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564285}],"Text":"finish","Confidence":96.65777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53867}],"Text":"cancel","Confidence":96.234055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.51998}],"Text":"tag","Confidence":95.99185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.097885}],"Text":"opc","Confidence":93.68517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.41674}],"Text":"news","Confidence":88.91717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.66675}],"Text":"help","Confidence":86.02423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57237}],"Text":"file","Confidence":79.88855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.00071}],"Text":"cescrig\u00FCcr","Confidence":69.10635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.31069}],"Text":"declaration","Confidence":60.17482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.04574}],"Text":"whe","Confidence":55.662884}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(40%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(40%).json index 1c6269b..46eaa79 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573105}],"Text":"finish","Confidence":96.97323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57394}],"Text":"back","Confidence":96.85347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56062}],"Text":"help","Confidence":96.7429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5747}],"Text":"declaration","Confidence":96.629196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57311}],"Text":"opc","Confidence":96.406654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.437256}],"Text":"anew","Confidence":96.06081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43996}],"Text":"tag","Confidence":96.00246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57131}],"Text":"cancel","Confidence":95.83507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57126}],"Text":"file","Confidence":93.31492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56924}],"Text":"new","Confidence":91.24855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.416985}],"Text":"cescriptior","Confidence":88.374695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.03371}],"Text":"filerame","Confidence":76.99104}],"Elapsed":0.0014} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573105}],"Text":"finish","Confidence":96.97323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57394}],"Text":"back","Confidence":96.85347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56062}],"Text":"help","Confidence":96.7429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5747}],"Text":"declaration","Confidence":96.629196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57311}],"Text":"opc","Confidence":96.406654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.437256}],"Text":"anew","Confidence":96.06081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43996}],"Text":"tag","Confidence":96.00246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57131}],"Text":"cancel","Confidence":95.83507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57126}],"Text":"file","Confidence":93.31492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56924}],"Text":"new","Confidence":91.24855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.416985}],"Text":"cescriptior","Confidence":88.374695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.03371}],"Text":"filerame","Confidence":76.99104}],"Elapsed":0.0013} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(80%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(80%).json index a613418..2ebf922 100644 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55836}],"Text":"anew","Confidence":96.657265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.5744}],"Text":"opc","Confidence":96.321144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52853}],"Text":"tag","Confidence":95.65004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562965}],"Text":"file","Confidence":95.506805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55786}],"Text":"new","Confidence":94.919266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54408}],"Text":"tog","Confidence":60.346485}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55836}],"Text":"anew","Confidence":96.657265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.5744}],"Text":"opc","Confidence":96.321144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52853}],"Text":"tag","Confidence":95.65004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562965}],"Text":"file","Confidence":95.506805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55786}],"Text":"new","Confidence":94.919266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54408}],"Text":"tog","Confidence":60.346485}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(90%).json b/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(90%).json deleted file mode 100644 index e37711e..0000000 --- a/Examples/testdata/results/driver_brpvi_offlineimport_004.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.56596}],"Text":"opc","Confidence":96.81299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.475655}],"Text":"anew","Confidence":96.12837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56792}],"Text":"file","Confidence":95.71644}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Kapur).json index 928774c..acd05d3 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5567}],"Text":"new","Confidence":96.75793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.571144}],"Text":"cancel","Confidence":96.69421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50758}],"Text":"label","Confidence":96.55306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.51663}],"Text":"existing","Confidence":94.19246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.4534}],"Text":"resources","Confidence":91.89997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57214}],"Text":"fitter","Confidence":90.679474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52313}],"Text":"select","Confidence":89.548325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57089}],"Text":"connections","Confidence":89.364235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.40916}],"Text":"et","Confidence":88.864075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.495766}],"Text":"import","Confidence":82.679855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.52436}],"Text":"variables","Confidence":82.67055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.98588}],"Text":"connecticn","Confidence":62.703476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.350624}],"Text":"ck","Confidence":53.45439}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5567}],"Text":"new","Confidence":96.75793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.571144}],"Text":"cancel","Confidence":96.69421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50758}],"Text":"label","Confidence":96.55306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.51663}],"Text":"existing","Confidence":94.19246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.4534}],"Text":"resources","Confidence":91.89997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57214}],"Text":"fitter","Confidence":90.679474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52313}],"Text":"select","Confidence":89.548325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57089}],"Text":"connections","Confidence":89.364235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.40916}],"Text":"et","Confidence":88.864075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.495766}],"Text":"import","Confidence":82.679855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.52436}],"Text":"variables","Confidence":82.67055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.98588}],"Text":"connecticn","Confidence":62.703476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.350624}],"Text":"ck","Confidence":53.45439}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(OTSU).json index 1fb9300..d31a6c7 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55611}],"Text":"new","Confidence":96.892746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.553535}],"Text":"label","Confidence":96.8354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56593}],"Text":"import","Confidence":96.76439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56681}],"Text":"variable","Confidence":96.622025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57321}],"Text":"resources","Confidence":96.57496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50704}],"Text":"variables","Confidence":96.33261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.4661}],"Text":"set","Confidence":96.26271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.4627}],"Text":"existing","Confidence":96.2389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56775}],"Text":"connection","Confidence":96.17856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.568504}],"Text":"select","Confidence":95.96162},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.55186}],"Text":"d445","Confidence":95.85773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.28974}],"Text":"all","Confidence":95.028206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57295}],"Text":"connections","Confidence":93.6046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572296}],"Text":"fitter","Confidence":88.986465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.431946}],"Text":"only","Confidence":74.5785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.823296}],"Text":"ovnly","Confidence":73.64835}],"Elapsed":0.0011} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55611}],"Text":"new","Confidence":96.892746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.553535}],"Text":"label","Confidence":96.8354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56593}],"Text":"import","Confidence":96.76439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56681}],"Text":"variable","Confidence":96.622025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57321}],"Text":"resources","Confidence":96.57496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50704}],"Text":"variables","Confidence":96.33261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.4661}],"Text":"set","Confidence":96.26271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.4627}],"Text":"existing","Confidence":96.2389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56775}],"Text":"connection","Confidence":96.17856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.568504}],"Text":"select","Confidence":95.96162},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.55186}],"Text":"d445","Confidence":95.85773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.28974}],"Text":"all","Confidence":95.028206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57295}],"Text":"connections","Confidence":93.6046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572296}],"Text":"fitter","Confidence":88.986465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.431946}],"Text":"only","Confidence":74.5785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.823296}],"Text":"ovnly","Confidence":73.64835}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Triangle).json index fc1d2e4..e35c214 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56131}],"Text":"connection","Confidence":96.65893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57254}],"Text":"select","Confidence":86.36948},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.988014}],"Text":"0445","Confidence":85.590935},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.7369}],"Text":"0445","Confidence":50.607574}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56131}],"Text":"connection","Confidence":96.65893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57254}],"Text":"select","Confidence":86.36948},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.988014}],"Text":"0445","Confidence":85.590935},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.7369}],"Text":"0445","Confidence":50.607574}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(04_04).json index f404e84..7922a8b 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.357834}],"Text":"connection","Confidence":80.99464}],"Elapsed":0.0003} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.357834}],"Text":"connection","Confidence":80.99464}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 3e1532e..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57369}],"Text":"connection","Confidence":96.10373}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(08_08).json index e222516..12f48f1 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.545296}],"Text":"select","Confidence":96.7161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.53145}],"Text":"label","Confidence":96.710846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.479324}],"Text":"existing","Confidence":96.35528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55756}],"Text":"connection","Confidence":96.32486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52395}],"Text":"import","Confidence":95.89073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.68975}],"Text":"new","Confidence":89.595726},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92551}],"Text":"existin","Confidence":88.57822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.22131}],"Text":"variable","Confidence":80.54918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.062294}],"Text":"tew","Confidence":71.05434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.556274}],"Text":"only","Confidence":61.89393},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":94.16344}],"Text":"yonly","Confidence":59.144054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.79883}],"Text":"variables","Confidence":51.499752}],"Elapsed":0.0003} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.545296}],"Text":"select","Confidence":96.7161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.53145}],"Text":"label","Confidence":96.710846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.479324}],"Text":"existing","Confidence":96.35528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55756}],"Text":"connection","Confidence":96.32486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52395}],"Text":"import","Confidence":95.89073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.68975}],"Text":"new","Confidence":89.595726},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92551}],"Text":"existin","Confidence":88.57822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.22131}],"Text":"variable","Confidence":80.54918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.062294}],"Text":"tew","Confidence":71.05434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.556274}],"Text":"only","Confidence":61.89393},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":94.16344}],"Text":"yonly","Confidence":59.144054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.79883}],"Text":"variables","Confidence":51.499752}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 9a2e3a4..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56448}],"Text":"new","Confidence":96.80942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52003}],"Text":"import","Confidence":96.64017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.54212}],"Text":"label","Confidence":96.63962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53291}],"Text":"select","Confidence":96.459946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.571205}],"Text":"connection","Confidence":96.30444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.13223}],"Text":"existing","Confidence":93.92565},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.040764}],"Text":"existin","Confidence":92.762955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55929}],"Text":"only","Confidence":91.774124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.053604}],"Text":"resources","Confidence":86.37524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572235}],"Text":"connections","Confidence":86.282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.36371}],"Text":"al","Confidence":65.47014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.102234}],"Text":"oo","Confidence":64.76814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.688835}],"Text":"variables","Confidence":53.465137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":92.95923}],"Text":"connections","Confidence":50.65731},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.006516}],"Text":"d445","Confidence":50.61674}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(12_12).json index f9d49f3..08829e7 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57116}],"Text":"new","Confidence":96.85938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57144}],"Text":"connection","Confidence":96.51263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.482475}],"Text":"resources","Confidence":96.377335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54276}],"Text":"select","Confidence":96.32939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57355}],"Text":"variables","Confidence":95.99651},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.54357}],"Text":"label","Confidence":94.79775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57257}],"Text":"existing","Confidence":93.77017},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":98.920876}],"Text":"d445","Confidence":92.44615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.566895}],"Text":"only","Confidence":90.787704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45061}],"Text":"import","Confidence":89.47211},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57363}],"Text":"connections","Confidence":83.06138},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":99.040794}],"Text":"al","Confidence":79.752335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.186966}],"Text":"variable","Confidence":59.30877}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57116}],"Text":"new","Confidence":96.85938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57144}],"Text":"connection","Confidence":96.51263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.482475}],"Text":"resources","Confidence":96.377335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54276}],"Text":"select","Confidence":96.32939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57355}],"Text":"variables","Confidence":95.99651},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.54357}],"Text":"label","Confidence":94.79775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57257}],"Text":"existing","Confidence":93.77017},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":98.920876}],"Text":"d445","Confidence":92.44615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.566895}],"Text":"only","Confidence":90.787704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45061}],"Text":"import","Confidence":89.47211},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57363}],"Text":"connections","Confidence":83.06138},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":99.040794}],"Text":"al","Confidence":79.752335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.186966}],"Text":"variable","Confidence":59.30877}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 1b73e86..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56676}],"Text":"new","Confidence":96.96337},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46135}],"Text":"select","Confidence":96.22945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.564964}],"Text":"connection","Confidence":96.217964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.488434}],"Text":"resources","Confidence":96.059555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55364}],"Text":"existing","Confidence":95.76212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56388}],"Text":"variables","Confidence":95.415405},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.11509}],"Text":"d445","Confidence":92.04261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.478836}],"Text":"label","Confidence":86.449974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572784}],"Text":"connections","Confidence":74.09953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.580765}],"Text":"only","Confidence":69.13987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.099106}],"Text":"import","Confidence":53.74534}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(16_16).json index b5df342..f7e968e 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55021}],"Text":"select","Confidence":96.6688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5685}],"Text":"connection","Confidence":96.51213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4946}],"Text":"connections","Confidence":91.39613},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"(","Confidence":99.51039}],"Text":"0445","Confidence":64.89423},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"(","Confidence":99.509254}],"Text":"445","Confidence":56.986916}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55021}],"Text":"select","Confidence":96.6688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5685}],"Text":"connection","Confidence":96.51213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4946}],"Text":"connections","Confidence":91.39613},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"(","Confidence":99.51039}],"Text":"0445","Confidence":64.89423},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"(","Confidence":99.509254}],"Text":"445","Confidence":56.986916}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index b05d376..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57322}],"Text":"connection","Confidence":96.404465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54618}],"Text":"select","Confidence":96.26012}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(20_20).json index 883c737..ba0e831 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57069}],"Text":"variables","Confidence":96.790634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5474}],"Text":"import","Confidence":96.72267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50463}],"Text":"select","Confidence":96.44144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56571}],"Text":"connection","Confidence":96.40075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.42466}],"Text":"variable","Confidence":95.972626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.564644}],"Text":"only","Confidence":93.72226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.571075}],"Text":"new","Confidence":93.72226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.47153}],"Text":"resources","Confidence":93.30324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.493195}],"Text":"existing","Confidence":93.28407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.10693}],"Text":"all","Confidence":88.924644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.82171}],"Text":"set","Confidence":84.533806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.47742}],"Text":"label","Confidence":79.64013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.36969}],"Text":"ei","Confidence":72.4895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.547134}],"Text":"connections","Confidence":56.1427}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57069}],"Text":"variables","Confidence":96.790634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5474}],"Text":"import","Confidence":96.72267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50463}],"Text":"select","Confidence":96.44144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56571}],"Text":"connection","Confidence":96.40075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.42466}],"Text":"variable","Confidence":95.972626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.564644}],"Text":"only","Confidence":93.72226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.571075}],"Text":"new","Confidence":93.72226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.47153}],"Text":"resources","Confidence":93.30324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.493195}],"Text":"existing","Confidence":93.28407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.10693}],"Text":"all","Confidence":88.924644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.82171}],"Text":"set","Confidence":84.533806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.47742}],"Text":"label","Confidence":79.64013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.36969}],"Text":"ei","Confidence":72.4895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.547134}],"Text":"connections","Confidence":56.1427}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index a530d81..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.514565}],"Text":"select","Confidence":96.601944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56465}],"Text":"connection","Confidence":96.431274},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":98.11148}],"Text":"d445","Confidence":86.78035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56891}],"Text":"connections","Confidence":77.08223}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(24_24).json index fb0f43a..3559933 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572464}],"Text":"select","Confidence":96.76914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56926}],"Text":"connection","Confidence":96.69037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57453}],"Text":"variables","Confidence":96.28955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5689}],"Text":"existing","Confidence":95.437294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56522}],"Text":"new","Confidence":94.993355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53086}],"Text":"all","Confidence":88.37286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56566}],"Text":"connections","Confidence":83.68381},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.22212}],"Text":"0445","Confidence":59.554844},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":94.1887}],"Text":"d445","Confidence":59.320892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.87036}],"Text":"oniy","Confidence":52.98081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.099434}],"Text":"mm","Confidence":51.696056}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572464}],"Text":"select","Confidence":96.76914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56926}],"Text":"connection","Confidence":96.69037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57453}],"Text":"variables","Confidence":96.28955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5689}],"Text":"existing","Confidence":95.437294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56522}],"Text":"new","Confidence":94.993355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53086}],"Text":"all","Confidence":88.37286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56566}],"Text":"connections","Confidence":83.68381},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.22212}],"Text":"0445","Confidence":59.554844},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":94.1887}],"Text":"d445","Confidence":59.320892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.87036}],"Text":"oniy","Confidence":52.98081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.099434}],"Text":"mm","Confidence":51.696056}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(0%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(0%).json deleted file mode 100644 index f2104e6..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(10%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(10%).json deleted file mode 100644 index aa53a43..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(100%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(100%).json deleted file mode 100644 index 8c27aab..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0224} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(20%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(20%).json index 46f2375..7171390 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0013} \ No newline at end of file +{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(30%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(30%).json index b556588..9a22928 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5378}],"Text":"set","Confidence":96.14968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.30729}],"Text":"label","Confidence":95.15103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.30993}],"Text":"select","Confidence":93.30027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5554}],"Text":"filter","Confidence":84.548615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.588646}],"Text":"ok","Confidence":83.12053},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":97.78142}],"Text":"yanables","Confidence":82.8925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.41266}],"Text":"conn","Confidence":81.59967},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.99278}],"Text":"cennecticn","Confidence":75.77872},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.0497}],"Text":"all","Confidence":74.39427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.5676}],"Text":"import","Confidence":67.168945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.61259}],"Text":"isting","Confidence":62.288124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.24945}],"Text":"resources","Confidence":59.746166}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5378}],"Text":"set","Confidence":96.14968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.30729}],"Text":"label","Confidence":95.15103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.30993}],"Text":"select","Confidence":93.30027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5554}],"Text":"filter","Confidence":84.548615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.588646}],"Text":"ok","Confidence":83.12053},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":97.78142}],"Text":"yanables","Confidence":82.8925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.41266}],"Text":"conn","Confidence":81.59967},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.99278}],"Text":"cennecticn","Confidence":75.77872},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.0497}],"Text":"all","Confidence":74.39427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.5676}],"Text":"import","Confidence":67.168945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.61259}],"Text":"isting","Confidence":62.288124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.24945}],"Text":"resources","Confidence":59.746166}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(40%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(40%).json index 0bbb94f..07a044e 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50681}],"Text":"label","Confidence":96.54767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50182}],"Text":"existing","Confidence":96.48415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.549225}],"Text":"new","Confidence":96.30078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56438}],"Text":"cancel","Confidence":96.22111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5702}],"Text":"resources","Confidence":95.4745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49437}],"Text":"import","Confidence":95.066124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.25288}],"Text":"variables","Confidence":94.77013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571625}],"Text":"select","Confidence":94.709404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57214}],"Text":"fitter","Confidence":90.66054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5737}],"Text":"connections","Confidence":86.5343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.7832}],"Text":"all","Confidence":84.482414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.63229}],"Text":"et","Confidence":83.42607},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.94985}],"Text":"connectien","Confidence":51.372696}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50681}],"Text":"label","Confidence":96.54767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50182}],"Text":"existing","Confidence":96.48415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.549225}],"Text":"new","Confidence":96.30078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56438}],"Text":"cancel","Confidence":96.22111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5702}],"Text":"resources","Confidence":95.4745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49437}],"Text":"import","Confidence":95.066124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.25288}],"Text":"variables","Confidence":94.77013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571625}],"Text":"select","Confidence":94.709404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57214}],"Text":"fitter","Confidence":90.66054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5737}],"Text":"connections","Confidence":86.5343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.7832}],"Text":"all","Confidence":84.482414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.63229}],"Text":"et","Confidence":83.42607},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.94985}],"Text":"connectien","Confidence":51.372696}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(70%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(70%).json index e501dbb..2a85bb2 100644 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5612}],"Text":"new","Confidence":96.92841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5658}],"Text":"import","Confidence":96.92518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.567825}],"Text":"variable","Confidence":96.84642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572136}],"Text":"set","Confidence":96.77264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56999}],"Text":"resources","Confidence":96.76823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57106}],"Text":"connection","Confidence":96.74089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.47354}],"Text":"existing","Confidence":96.31477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50648}],"Text":"variables","Confidence":96.279915},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.54501}],"Text":"d445","Confidence":95.648224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56782}],"Text":"select","Confidence":95.544075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.554726}],"Text":"label","Confidence":95.18654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.25978}],"Text":"all","Confidence":94.81848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572945}],"Text":"connections","Confidence":93.899376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57145}],"Text":"fitter","Confidence":90.12208},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":98.198944}],"Text":"all","Confidence":83.219406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.328636}],"Text":"only","Confidence":67.64679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.1637}],"Text":"cance","Confidence":53.52002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.17097}],"Text":"ox","Confidence":50.930042}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5612}],"Text":"new","Confidence":96.92841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5658}],"Text":"import","Confidence":96.92518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.567825}],"Text":"variable","Confidence":96.84642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572136}],"Text":"set","Confidence":96.77264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56999}],"Text":"resources","Confidence":96.76823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57106}],"Text":"connection","Confidence":96.74089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.47354}],"Text":"existing","Confidence":96.31477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50648}],"Text":"variables","Confidence":96.279915},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.54501}],"Text":"d445","Confidence":95.648224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56782}],"Text":"select","Confidence":95.544075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.554726}],"Text":"label","Confidence":95.18654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.25978}],"Text":"all","Confidence":94.81848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572945}],"Text":"connections","Confidence":93.899376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57145}],"Text":"fitter","Confidence":90.12208},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":98.198944}],"Text":"all","Confidence":83.219406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.328636}],"Text":"only","Confidence":67.64679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.1637}],"Text":"cance","Confidence":53.52002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.17097}],"Text":"ox","Confidence":50.930042}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(90%).json b/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(90%).json deleted file mode 100644 index 52055de..0000000 --- a/Examples/testdata/results/driver_simotion_online_import_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56819}],"Text":"connection","Confidence":96.59611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57471}],"Text":"select","Confidence":93.972664},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"D","Confidence":99.25674}],"Text":"d445","Confidence":92.577415},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"-","Confidence":98.53759}],"Text":"-c","Confidence":63.121284}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(Kapur).json index 7764a6b..9e8d6d6 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":97.02545}],"Text":"43","Confidence":79.17815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.93719}],"Text":"co","Confidence":66.61865}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":97.02545}],"Text":"43","Confidence":79.17815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.93719}],"Text":"co","Confidence":66.61865}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(OTSU).json index 3ef1878..d9680b1 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5692}],"Text":"alternative","Confidence":96.971016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567215}],"Text":"top","Confidence":96.9705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56917}],"Text":"bottom","Confidence":96.96511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56094}],"Text":"in","Confidence":96.92662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5707}],"Text":"define","Confidence":96.921265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55965}],"Text":"itor","Confidence":96.91755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56355}],"Text":"online","Confidence":96.90498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57468}],"Text":"display","Confidence":96.888115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55124}],"Text":"menu","Confidence":96.82417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54422}],"Text":"physical","Confidence":96.76198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53079}],"Text":"the","Confidence":96.71557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573975}],"Text":"position","Confidence":96.711105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52718}],"Text":"right","Confidence":96.6903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55859}],"Text":"name","Confidence":96.62467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.567856}],"Text":"options","Confidence":96.57834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.57295}],"Text":"left","Confidence":96.29526},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.50468}],"Text":"1080","Confidence":94.805275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57229}],"Text":"monitor","Confidence":94.02269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57149}],"Text":"for","Confidence":93.18518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.035034}],"Text":"undedactable","Confidence":93.06145},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52912}],"Text":"1920","Confidence":89.26518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.93579}],"Text":"m_o1","Confidence":85.461334},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.55582}],"Text":"3840","Confidence":83.96103},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":96.692}],"Text":"m_oo","Confidence":75.72717}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5692}],"Text":"alternative","Confidence":96.971016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567215}],"Text":"top","Confidence":96.9705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56917}],"Text":"bottom","Confidence":96.96511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56094}],"Text":"in","Confidence":96.92662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5707}],"Text":"define","Confidence":96.921265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55965}],"Text":"itor","Confidence":96.91755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56355}],"Text":"online","Confidence":96.90498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57468}],"Text":"display","Confidence":96.888115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55124}],"Text":"menu","Confidence":96.82417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54422}],"Text":"physical","Confidence":96.76198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53079}],"Text":"the","Confidence":96.71557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573975}],"Text":"position","Confidence":96.711105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52718}],"Text":"right","Confidence":96.6903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55859}],"Text":"name","Confidence":96.62467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.567856}],"Text":"options","Confidence":96.57834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.57295}],"Text":"left","Confidence":96.29526},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.50468}],"Text":"1080","Confidence":94.805275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57229}],"Text":"monitor","Confidence":94.02269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57149}],"Text":"for","Confidence":93.18518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.035034}],"Text":"undedactable","Confidence":93.06145},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52912}],"Text":"1920","Confidence":89.26518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.93579}],"Text":"m_o1","Confidence":85.461334},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.55582}],"Text":"3840","Confidence":83.96103},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":96.692}],"Text":"m_oo","Confidence":75.72717}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(04_04).json index 219343f..4ffda4f 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.2822}],"Text":"detine","Confidence":79.932205}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.2822}],"Text":"detine","Confidence":79.932205}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 3557268..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.58148}],"Text":"lea","Confidence":55.8936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56789}],"Text":"define","Confidence":55.68792}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(08_08).json index 17c8caf..b00abd9 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56333}],"Text":"physical","Confidence":95.36103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54391}],"Text":"display","Confidence":94.92817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.93012}],"Text":"online","Confidence":92.51084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57384}],"Text":"menu","Confidence":91.84596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.53862}],"Text":"define","Confidence":91.6012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54296}],"Text":"in","Confidence":91.09322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55675}],"Text":"the","Confidence":91.09322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.24549}],"Text":"online","Confidence":87.71842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53853}],"Text":"monitor","Confidence":86.519875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.54544}],"Text":"go","Confidence":68.818085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.02568}],"Text":"options","Confidence":65.17979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.59452}],"Text":"ca","Confidence":54.704216}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56333}],"Text":"physical","Confidence":95.36103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54391}],"Text":"display","Confidence":94.92817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.93012}],"Text":"online","Confidence":92.51084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57384}],"Text":"menu","Confidence":91.84596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.53862}],"Text":"define","Confidence":91.6012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54296}],"Text":"in","Confidence":91.09322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55675}],"Text":"the","Confidence":91.09322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.24549}],"Text":"online","Confidence":87.71842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53853}],"Text":"monitor","Confidence":86.519875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.54544}],"Text":"go","Confidence":68.818085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.02568}],"Text":"options","Confidence":65.17979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.59452}],"Text":"ca","Confidence":54.704216}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index f03ff08..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5745}],"Text":"physical","Confidence":96.891525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56861}],"Text":"monitor","Confidence":94.97763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":93.41149}],"Text":"define","Confidence":53.880417}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(12_12).json index b4d4e52..c0dfc22 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54717}],"Text":"the","Confidence":96.83021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558784}],"Text":"physical","Confidence":96.61636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57442}],"Text":"menu","Confidence":96.53537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.38679}],"Text":"define","Confidence":95.707504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57447}],"Text":"monitor","Confidence":95.29166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.430176}],"Text":"in","Confidence":93.902466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57121}],"Text":"for","Confidence":93.25102},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.01461}],"Text":"undedactable","Confidence":92.5632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.184166}],"Text":"position","Confidence":85.83192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.488434}],"Text":"monitor","Confidence":83.914604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.562836}],"Text":"online","Confidence":65.40407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.42014}],"Text":"display","Confidence":60.940983}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54717}],"Text":"the","Confidence":96.83021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558784}],"Text":"physical","Confidence":96.61636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57442}],"Text":"menu","Confidence":96.53537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.38679}],"Text":"define","Confidence":95.707504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57447}],"Text":"monitor","Confidence":95.29166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.430176}],"Text":"in","Confidence":93.902466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57121}],"Text":"for","Confidence":93.25102},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.01461}],"Text":"undedactable","Confidence":92.5632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.184166}],"Text":"position","Confidence":85.83192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.488434}],"Text":"monitor","Confidence":83.914604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.562836}],"Text":"online","Confidence":65.40407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.42014}],"Text":"display","Confidence":60.940983}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index f38c80a..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57348}],"Text":"monitor","Confidence":96.91608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.55568}],"Text":"define","Confidence":96.88978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57348}],"Text":"physical","Confidence":96.504234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.553795}],"Text":"for","Confidence":93.23238},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.033134}],"Text":"undedactable","Confidence":89.92612}],"Elapsed":0.0019} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 9da96cb..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.558876}],"Text":"define","Confidence":96.91215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56917}],"Text":"name","Confidence":96.80231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57383}],"Text":"physical","Confidence":96.72333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56731}],"Text":"position","Confidence":95.301056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.50674}],"Text":"options","Confidence":94.29354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57429}],"Text":"for","Confidence":93.206375},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.0087}],"Text":"undedactable","Confidence":93.06086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.38302}],"Text":"help","Confidence":85.81334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56215}],"Text":"mon","Confidence":74.337105}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(20_20).json index 4bfda9a..4fabb0f 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.571205}],"Text":"define","Confidence":96.90369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56408}],"Text":"position","Confidence":96.384895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570145}],"Text":"physical","Confidence":94.88399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.92597}],"Text":"monitor","Confidence":92.4818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.511765}],"Text":"cancel","Confidence":67.589096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":95.537796}],"Text":"mm","Confidence":54.600693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.3142}],"Text":"tos","Confidence":50.895317}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.571205}],"Text":"define","Confidence":96.90369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56408}],"Text":"position","Confidence":96.384895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570145}],"Text":"physical","Confidence":94.88399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.92597}],"Text":"monitor","Confidence":92.4818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.511765}],"Text":"cancel","Confidence":67.589096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":95.537796}],"Text":"mm","Confidence":54.600693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.3142}],"Text":"tos","Confidence":50.895317}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 860b002..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57449}],"Text":"define","Confidence":96.89876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.570984}],"Text":"monitor","Confidence":96.767975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56614}],"Text":"position","Confidence":96.608406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57446}],"Text":"physical","Confidence":96.458855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.417656}],"Text":"cancel","Confidence":93.74045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.43695}],"Text":"ok","Confidence":86.78464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.39012}],"Text":"help","Confidence":83.7028}],"Elapsed":0.0018} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(24_24).json index c49f6c8..0606ec2 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57408}],"Text":"define","Confidence":96.91177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57445}],"Text":"the","Confidence":96.882385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57328}],"Text":"monitor","Confidence":96.83695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57017}],"Text":"display","Confidence":96.43069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57461}],"Text":"physical","Confidence":96.25601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48523}],"Text":"in","Confidence":95.99359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57305}],"Text":"for","Confidence":93.19644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.322975}],"Text":"undedactable","Confidence":88.06096},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.79459}],"Text":"onine","Confidence":87.62042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.1857}],"Text":"options","Confidence":73.22984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.667534}],"Text":"alternative","Confidence":70.60898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52653}],"Text":"menu","Confidence":54.74705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.030495}],"Text":"meru","Confidence":54.706825}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57408}],"Text":"define","Confidence":96.91177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57445}],"Text":"the","Confidence":96.882385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57328}],"Text":"monitor","Confidence":96.83695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57017}],"Text":"display","Confidence":96.43069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57461}],"Text":"physical","Confidence":96.25601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48523}],"Text":"in","Confidence":95.99359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57305}],"Text":"for","Confidence":93.19644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.322975}],"Text":"undedactable","Confidence":88.06096},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.79459}],"Text":"onine","Confidence":87.62042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.1857}],"Text":"options","Confidence":73.22984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.667534}],"Text":"alternative","Confidence":70.60898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52653}],"Text":"menu","Confidence":54.74705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.030495}],"Text":"meru","Confidence":54.706825}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(0%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(0%).json deleted file mode 100644 index 0692f9e..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0027} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(10%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(10%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(100%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(100%).json deleted file mode 100644 index 8c27aab..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0224} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(20%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(20%).json index 66cebf6..2c6e420 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0019} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(40%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(40%).json index c02c977..4558a43 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.563354}],"Text":"physical","Confidence":96.93422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56885}],"Text":"menu","Confidence":96.90617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5698}],"Text":"monitor","Confidence":96.82797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.53506}],"Text":"options","Confidence":96.71406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.534096}],"Text":"right","Confidence":96.65184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57424}],"Text":"the","Confidence":96.442276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.47721}],"Text":"in","Confidence":96.337906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50183}],"Text":"left","Confidence":96.28186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52959}],"Text":"alternative","Confidence":96.07173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.572365}],"Text":"for","Confidence":93.166336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54668}],"Text":"top","Confidence":92.71503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.539345}],"Text":"online","Confidence":92.48727},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.948814}],"Text":"undedactable","Confidence":92.089745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.52213}],"Text":"name","Confidence":91.5285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.569595}],"Text":"position","Confidence":85.73869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.72721}],"Text":"display","Confidence":84.09047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.4737}],"Text":"bottom","Confidence":80.28646}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.563354}],"Text":"physical","Confidence":96.93422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56885}],"Text":"menu","Confidence":96.90617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5698}],"Text":"monitor","Confidence":96.82797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.53506}],"Text":"options","Confidence":96.71406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.534096}],"Text":"right","Confidence":96.65184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57424}],"Text":"the","Confidence":96.442276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.47721}],"Text":"in","Confidence":96.337906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50183}],"Text":"left","Confidence":96.28186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52959}],"Text":"alternative","Confidence":96.07173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.572365}],"Text":"for","Confidence":93.166336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54668}],"Text":"top","Confidence":92.71503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.539345}],"Text":"online","Confidence":92.48727},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.948814}],"Text":"undedactable","Confidence":92.089745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.52213}],"Text":"name","Confidence":91.5285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.569595}],"Text":"position","Confidence":85.73869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.72721}],"Text":"display","Confidence":84.09047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.4737}],"Text":"bottom","Confidence":80.28646}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(50%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(50%).json index 10a59c0..7240d38 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57066}],"Text":"bottom","Confidence":96.99467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.567894}],"Text":"alternative","Confidence":96.971245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57198}],"Text":"the","Confidence":96.97089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57112}],"Text":"online","Confidence":96.95407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57014}],"Text":"in","Confidence":96.922585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57458}],"Text":"menu","Confidence":96.89178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57428}],"Text":"position","Confidence":96.89148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57366}],"Text":"display","Confidence":96.84526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573746}],"Text":"monitor","Confidence":96.74501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56605}],"Text":"top","Confidence":96.486725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.43377}],"Text":"options","Confidence":96.036385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.557045}],"Text":"for","Confidence":93.22132},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.0344}],"Text":"undedactable","Confidence":93.13515},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.020454}],"Text":"m_o1","Confidence":82.67345},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":94.132355}],"Text":"m_00","Confidence":58.92651}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57066}],"Text":"bottom","Confidence":96.99467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.567894}],"Text":"alternative","Confidence":96.971245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57198}],"Text":"the","Confidence":96.97089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57112}],"Text":"online","Confidence":96.95407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57014}],"Text":"in","Confidence":96.922585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57458}],"Text":"menu","Confidence":96.89178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57428}],"Text":"position","Confidence":96.89148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57366}],"Text":"display","Confidence":96.84526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573746}],"Text":"monitor","Confidence":96.74501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56605}],"Text":"top","Confidence":96.486725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.43377}],"Text":"options","Confidence":96.036385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.557045}],"Text":"for","Confidence":93.22132},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.0344}],"Text":"undedactable","Confidence":93.13515},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.020454}],"Text":"m_o1","Confidence":82.67345},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":94.132355}],"Text":"m_00","Confidence":58.92651}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(80%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(80%).json index 9ea63cf..b76bfcf 100644 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57415}],"Text":"monitor","Confidence":96.937614},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56898}],"Text":"1080","Confidence":96.91049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574326}],"Text":"the","Confidence":96.87209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5677}],"Text":"bottom","Confidence":96.83543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56919}],"Text":"menu","Confidence":96.78612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.529106}],"Text":"left","Confidence":96.703},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55925}],"Text":"1920","Confidence":96.56982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55455}],"Text":"position","Confidence":96.41334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48613}],"Text":"in","Confidence":96.40289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.48264}],"Text":"options","Confidence":96.378494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49394}],"Text":"define","Confidence":96.13972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.40855}],"Text":"physical","Confidence":95.8598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.45785}],"Text":"name","Confidence":95.478264},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.4299}],"Text":"3840","Confidence":95.33654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.09354}],"Text":"right","Confidence":93.65477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.07311}],"Text":"top","Confidence":93.511765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57025}],"Text":"for","Confidence":93.18102},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.034386}],"Text":"undedactable","Confidence":90.568794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.228424}],"Text":"m_00","Confidence":87.59895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53554}],"Text":"online","Confidence":86.59967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55635}],"Text":"moniter","Confidence":67.26459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.14319}],"Text":"display","Confidence":66.002335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57058}],"Text":"alternative","Confidence":63.79915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.30108}],"Text":"ee","Confidence":53.10753}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57415}],"Text":"monitor","Confidence":96.937614},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56898}],"Text":"1080","Confidence":96.91049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574326}],"Text":"the","Confidence":96.87209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5677}],"Text":"bottom","Confidence":96.83543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56919}],"Text":"menu","Confidence":96.78612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.529106}],"Text":"left","Confidence":96.703},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55925}],"Text":"1920","Confidence":96.56982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55455}],"Text":"position","Confidence":96.41334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48613}],"Text":"in","Confidence":96.40289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.48264}],"Text":"options","Confidence":96.378494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49394}],"Text":"define","Confidence":96.13972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.40855}],"Text":"physical","Confidence":95.8598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.45785}],"Text":"name","Confidence":95.478264},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.4299}],"Text":"3840","Confidence":95.33654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.09354}],"Text":"right","Confidence":93.65477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.07311}],"Text":"top","Confidence":93.511765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57025}],"Text":"for","Confidence":93.18102},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.034386}],"Text":"undedactable","Confidence":90.568794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.228424}],"Text":"m_00","Confidence":87.59895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53554}],"Text":"online","Confidence":86.59967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55635}],"Text":"moniter","Confidence":67.26459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.14319}],"Text":"display","Confidence":66.002335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57058}],"Text":"alternative","Confidence":63.79915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.30108}],"Text":"ee","Confidence":53.10753}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(90%).json b/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(90%).json deleted file mode 100644 index cb2f463..0000000 --- a/Examples/testdata/results/editor_multimonitor_example_007.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.35021}],"Text":"options","Confidence":95.28593},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":96.97735}],"Text":"menu","Confidence":59.482162}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Kapur).json index b945743..62bf37c 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57279}],"Text":"steps","Confidence":96.98627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56816}],"Text":"to","Confidence":96.97404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56744}],"Text":"has","Confidence":96.97188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57187}],"Text":"for","Confidence":96.9666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567375}],"Text":"the","Confidence":96.96636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57464}],"Text":"first","Confidence":96.963165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56614}],"Text":"your","Confidence":96.962975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5728}],"Text":"basic","Confidence":96.9449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55889}],"Text":"this","Confidence":96.91222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57375}],"Text":"and","Confidence":96.89532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55734}],"Text":"you","Confidence":96.89438},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56349}],"Text":"in","Confidence":96.88005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57428}],"Text":"execution","Confidence":96.869225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57417}],"Text":"create","Confidence":96.86816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57175}],"Text":"configured","Confidence":96.841545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574}],"Text":"want","Confidence":96.81509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55034}],"Text":"do","Confidence":96.80068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56216}],"Text":"introducing","Confidence":96.78822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53904}],"Text":"of","Confidence":96.7733},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56124}],"Text":"following","Confidence":96.76032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57367}],"Text":"end","Confidence":96.75146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.533165}],"Text":"are","Confidence":96.73217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56498}],"Text":"start","Confidence":96.67452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55002}],"Text":"we","Confidence":96.62778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55645}],"Text":"engine","Confidence":96.62485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.548904}],"Text":"studio","Confidence":96.619965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.51696}],"Text":"because","Confidence":96.618706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.566124}],"Text":"points","Confidence":96.61414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56847}],"Text":"them","Confidence":96.59221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56984}],"Text":"studio","Confidence":96.57425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57323}],"Text":"properties","Confidence":96.55004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56205}],"Text":"engineering","Confidence":96.544395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57293}],"Text":"connection","Confidence":96.46231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57172}],"Text":"not","Confidence":96.448784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574005}],"Text":"work","Confidence":96.44725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56205}],"Text":"been","Confidence":96.43769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54274}],"Text":"driver","Confidence":96.39995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53586}],"Text":"service","Confidence":96.39816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5033}],"Text":"front","Confidence":96.377014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568756}],"Text":"configuring","Confidence":96.26178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572754}],"Text":"anything","Confidence":96.26041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55132}],"Text":"incorporate","Confidence":96.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56236}],"Text":"data","Confidence":96.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.573616}],"Text":"visualization","Confidence":96.0957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44086}],"Text":"welcome","Confidence":96.08598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568184}],"Text":"processes","Confidence":96.06926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.566795}],"Text":"make","Confidence":96.03415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.432144}],"Text":"how","Confidence":96.02499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57164}],"Text":"chapters","Confidence":95.92258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574036}],"Text":"project","Confidence":95.87777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.555534}],"Text":"need","Confidence":95.80632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57046}],"Text":"setting","Confidence":95.75975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.391815}],"Text":"can","Confidence":95.74271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49962}],"Text":"into","Confidence":95.27724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573845}],"Text":"frame","Confidence":95.034546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.544914}],"Text":"parameters","Confidence":94.92247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.242226}],"Text":"easy","Confidence":94.6956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56542}],"Text":"see","Confidence":94.47133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55895}],"Text":"control","Confidence":93.546394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57024}],"Text":"then","Confidence":92.93225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.8097}],"Text":"end","Confidence":91.66789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.48068}],"Text":"dialogs","Confidence":91.62897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573715}],"Text":"studio","Confidence":91.1557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5721}],"Text":"what","Confidence":88.98495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571556}],"Text":"application","Confidence":86.095726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"project","Confidence":79.836266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.948044}],"Text":"it","Confidence":78.63631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.29344}],"Text":"tool","Confidence":78.12687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.574394}],"Text":"generally","Confidence":77.08267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54861}],"Text":"comple","Confidence":75.885666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.539276}],"Text":"if","Confidence":75.77492},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.66179}],"Text":"t\u0131","Confidence":69.02445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56962}],"Text":"projects","Confidence":63.811344},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.55667}],"Text":"visualzalon","Confidence":61.569405},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.0307}],"Text":"stucto","Confidence":53.375008},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":94.14493}],"Text":"\u0027s","Confidence":53.375008}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57279}],"Text":"steps","Confidence":96.98627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56816}],"Text":"to","Confidence":96.97404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56744}],"Text":"has","Confidence":96.97188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57187}],"Text":"for","Confidence":96.9666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567375}],"Text":"the","Confidence":96.96636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57464}],"Text":"first","Confidence":96.963165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56614}],"Text":"your","Confidence":96.962975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5728}],"Text":"basic","Confidence":96.9449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55889}],"Text":"this","Confidence":96.91222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57375}],"Text":"and","Confidence":96.89532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55734}],"Text":"you","Confidence":96.89438},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56349}],"Text":"in","Confidence":96.88005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57428}],"Text":"execution","Confidence":96.869225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57417}],"Text":"create","Confidence":96.86816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57175}],"Text":"configured","Confidence":96.841545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574}],"Text":"want","Confidence":96.81509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55034}],"Text":"do","Confidence":96.80068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56216}],"Text":"introducing","Confidence":96.78822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53904}],"Text":"of","Confidence":96.7733},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56124}],"Text":"following","Confidence":96.76032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57367}],"Text":"end","Confidence":96.75146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.533165}],"Text":"are","Confidence":96.73217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56498}],"Text":"start","Confidence":96.67452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55002}],"Text":"we","Confidence":96.62778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55645}],"Text":"engine","Confidence":96.62485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.548904}],"Text":"studio","Confidence":96.619965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.51696}],"Text":"because","Confidence":96.618706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.566124}],"Text":"points","Confidence":96.61414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56847}],"Text":"them","Confidence":96.59221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56984}],"Text":"studio","Confidence":96.57425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57323}],"Text":"properties","Confidence":96.55004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56205}],"Text":"engineering","Confidence":96.544395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57293}],"Text":"connection","Confidence":96.46231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57172}],"Text":"not","Confidence":96.448784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574005}],"Text":"work","Confidence":96.44725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56205}],"Text":"been","Confidence":96.43769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54274}],"Text":"driver","Confidence":96.39995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53586}],"Text":"service","Confidence":96.39816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5033}],"Text":"front","Confidence":96.377014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568756}],"Text":"configuring","Confidence":96.26178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572754}],"Text":"anything","Confidence":96.26041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55132}],"Text":"incorporate","Confidence":96.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56236}],"Text":"data","Confidence":96.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.573616}],"Text":"visualization","Confidence":96.0957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44086}],"Text":"welcome","Confidence":96.08598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568184}],"Text":"processes","Confidence":96.06926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.566795}],"Text":"make","Confidence":96.03415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.432144}],"Text":"how","Confidence":96.02499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57164}],"Text":"chapters","Confidence":95.92258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574036}],"Text":"project","Confidence":95.87777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.555534}],"Text":"need","Confidence":95.80632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57046}],"Text":"setting","Confidence":95.75975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.391815}],"Text":"can","Confidence":95.74271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49962}],"Text":"into","Confidence":95.27724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573845}],"Text":"frame","Confidence":95.034546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.544914}],"Text":"parameters","Confidence":94.92247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.242226}],"Text":"easy","Confidence":94.6956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56542}],"Text":"see","Confidence":94.47133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55895}],"Text":"control","Confidence":93.546394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57024}],"Text":"then","Confidence":92.93225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.8097}],"Text":"end","Confidence":91.66789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.48068}],"Text":"dialogs","Confidence":91.62897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573715}],"Text":"studio","Confidence":91.1557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5721}],"Text":"what","Confidence":88.98495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571556}],"Text":"application","Confidence":86.095726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"project","Confidence":79.836266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.948044}],"Text":"it","Confidence":78.63631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.29344}],"Text":"tool","Confidence":78.12687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.574394}],"Text":"generally","Confidence":77.08267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54861}],"Text":"comple","Confidence":75.885666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.539276}],"Text":"if","Confidence":75.77492},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.66179}],"Text":"t\u0131","Confidence":69.02445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56962}],"Text":"projects","Confidence":63.811344},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.55667}],"Text":"visualzalon","Confidence":61.569405},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.0307}],"Text":"stucto","Confidence":53.375008},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":94.14493}],"Text":"\u0027s","Confidence":53.375008}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(OTSU).json index f04cbeb..bb11c4a 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573326}],"Text":"we","Confidence":97.007225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57486}],"Text":"and","Confidence":97.000565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57414}],"Text":"service","Confidence":96.99979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.572815}],"Text":"need","Confidence":96.997635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57411}],"Text":"not","Confidence":96.99698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57323}],"Text":"do","Confidence":96.98574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57326}],"Text":"you","Confidence":96.967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56946}],"Text":"your","Confidence":96.9615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57147}],"Text":"create","Confidence":96.953636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56945}],"Text":"the","Confidence":96.95032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574844}],"Text":"points","Confidence":96.93107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57439}],"Text":"for","Confidence":96.9144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57256}],"Text":"to","Confidence":96.90624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57436}],"Text":"engine","Confidence":96.90444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57445}],"Text":"basic","Confidence":96.87742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56796}],"Text":"first","Confidence":96.872894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56517}],"Text":"in","Confidence":96.86615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.569275}],"Text":"into","Confidence":96.863914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55909}],"Text":"can","Confidence":96.853966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574066}],"Text":"steps","Confidence":96.83787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57413}],"Text":"project","Confidence":96.82333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56205}],"Text":"see","Confidence":96.761826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57299}],"Text":"parameters","Confidence":96.73635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53261}],"Text":"front","Confidence":96.72827},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57445}],"Text":"of","Confidence":96.67685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5705}],"Text":"processes","Confidence":96.67685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.567535}],"Text":"engineering","Confidence":96.66826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57438}],"Text":"are","Confidence":96.66228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5646}],"Text":"execution","Confidence":96.64745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5576}],"Text":"because","Confidence":96.594246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56991}],"Text":"them","Confidence":96.59172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55597}],"Text":"dialogs","Confidence":96.56525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567505}],"Text":"anything","Confidence":96.563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.53542}],"Text":"has","Confidence":96.53965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5725}],"Text":"studio","Confidence":96.439095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57292}],"Text":"frame","Confidence":96.4044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.48447}],"Text":"if","Confidence":96.391266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56781}],"Text":"visualization","Confidence":96.34692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573296}],"Text":"connection","Confidence":96.26623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55098}],"Text":"control","Confidence":96.228134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.5694}],"Text":"how","Confidence":96.20749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57133}],"Text":"want","Confidence":96.17497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57324}],"Text":"incorporate","Confidence":96.15845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50149}],"Text":"data","Confidence":96.15845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56679}],"Text":"then","Confidence":96.14318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.557465}],"Text":"been","Confidence":96.1035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57443}],"Text":"screen","Confidence":96.09095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57146}],"Text":"function","Confidence":95.97086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.42295}],"Text":"this","Confidence":95.96068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57093}],"Text":"configured","Confidence":95.93664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56113}],"Text":"it","Confidence":95.88068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5392}],"Text":"end","Confidence":95.86488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.39503}],"Text":"introducing","Confidence":95.765175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57338}],"Text":"end","Confidence":95.72995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.48978}],"Text":"work","Confidence":95.69772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57248}],"Text":"following","Confidence":95.571144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573265}],"Text":"make","Confidence":95.50706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56736}],"Text":"application","Confidence":95.412704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56826}],"Text":"easy","Confidence":95.09749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54672}],"Text":"start","Confidence":95.07753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57125}],"Text":"chapters","Confidence":94.98434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5541}],"Text":"variable","Confidence":92.45616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.46972}],"Text":"visualization","Confidence":92.01695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570946}],"Text":"driver","Confidence":91.452995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5634}],"Text":"setting","Confidence":90.3718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5354}],"Text":"tool","Confidence":90.344894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57334}],"Text":"studio","Confidence":90.21736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5685}],"Text":"what","Confidence":89.416176},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04149}],"Text":"propertes","Confidence":87.7341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574715}],"Text":"projects","Confidence":87.2429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.995445}],"Text":"lo","Confidence":85.96811},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.01752}],"Text":"configunng","Confidence":85.13166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5698}],"Text":"project","Confidence":85.10245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.64155}],"Text":"is","Confidence":83.490814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.45935}],"Text":"configuring","Confidence":82.21544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.564926}],"Text":"projects","Confidence":80.99978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.574196}],"Text":"generally","Confidence":79.35719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46705}],"Text":"compile","Confidence":75.20065}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573326}],"Text":"we","Confidence":97.007225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57486}],"Text":"and","Confidence":97.000565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57414}],"Text":"service","Confidence":96.99979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.572815}],"Text":"need","Confidence":96.997635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57411}],"Text":"not","Confidence":96.99698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57323}],"Text":"do","Confidence":96.98574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57326}],"Text":"you","Confidence":96.967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56946}],"Text":"your","Confidence":96.9615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57147}],"Text":"create","Confidence":96.953636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56945}],"Text":"the","Confidence":96.95032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574844}],"Text":"points","Confidence":96.93107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57439}],"Text":"for","Confidence":96.9144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57256}],"Text":"to","Confidence":96.90624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57436}],"Text":"engine","Confidence":96.90444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57445}],"Text":"basic","Confidence":96.87742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56796}],"Text":"first","Confidence":96.872894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56517}],"Text":"in","Confidence":96.86615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.569275}],"Text":"into","Confidence":96.863914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55909}],"Text":"can","Confidence":96.853966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574066}],"Text":"steps","Confidence":96.83787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57413}],"Text":"project","Confidence":96.82333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56205}],"Text":"see","Confidence":96.761826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57299}],"Text":"parameters","Confidence":96.73635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53261}],"Text":"front","Confidence":96.72827},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57445}],"Text":"of","Confidence":96.67685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5705}],"Text":"processes","Confidence":96.67685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.567535}],"Text":"engineering","Confidence":96.66826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57438}],"Text":"are","Confidence":96.66228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5646}],"Text":"execution","Confidence":96.64745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5576}],"Text":"because","Confidence":96.594246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56991}],"Text":"them","Confidence":96.59172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55597}],"Text":"dialogs","Confidence":96.56525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567505}],"Text":"anything","Confidence":96.563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.53542}],"Text":"has","Confidence":96.53965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5725}],"Text":"studio","Confidence":96.439095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57292}],"Text":"frame","Confidence":96.4044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.48447}],"Text":"if","Confidence":96.391266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56781}],"Text":"visualization","Confidence":96.34692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573296}],"Text":"connection","Confidence":96.26623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55098}],"Text":"control","Confidence":96.228134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.5694}],"Text":"how","Confidence":96.20749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57133}],"Text":"want","Confidence":96.17497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57324}],"Text":"incorporate","Confidence":96.15845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50149}],"Text":"data","Confidence":96.15845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56679}],"Text":"then","Confidence":96.14318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.557465}],"Text":"been","Confidence":96.1035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57443}],"Text":"screen","Confidence":96.09095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57146}],"Text":"function","Confidence":95.97086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.42295}],"Text":"this","Confidence":95.96068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57093}],"Text":"configured","Confidence":95.93664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56113}],"Text":"it","Confidence":95.88068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5392}],"Text":"end","Confidence":95.86488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.39503}],"Text":"introducing","Confidence":95.765175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57338}],"Text":"end","Confidence":95.72995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.48978}],"Text":"work","Confidence":95.69772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57248}],"Text":"following","Confidence":95.571144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573265}],"Text":"make","Confidence":95.50706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56736}],"Text":"application","Confidence":95.412704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56826}],"Text":"easy","Confidence":95.09749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54672}],"Text":"start","Confidence":95.07753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57125}],"Text":"chapters","Confidence":94.98434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5541}],"Text":"variable","Confidence":92.45616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.46972}],"Text":"visualization","Confidence":92.01695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570946}],"Text":"driver","Confidence":91.452995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5634}],"Text":"setting","Confidence":90.3718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5354}],"Text":"tool","Confidence":90.344894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57334}],"Text":"studio","Confidence":90.21736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5685}],"Text":"what","Confidence":89.416176},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04149}],"Text":"propertes","Confidence":87.7341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574715}],"Text":"projects","Confidence":87.2429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.995445}],"Text":"lo","Confidence":85.96811},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.01752}],"Text":"configunng","Confidence":85.13166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5698}],"Text":"project","Confidence":85.10245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.64155}],"Text":"is","Confidence":83.490814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.45935}],"Text":"configuring","Confidence":82.21544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.564926}],"Text":"projects","Confidence":80.99978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.574196}],"Text":"generally","Confidence":79.35719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46705}],"Text":"compile","Confidence":75.20065}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Triangle).json index 31f14ad..df8fa9d 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57421}],"Text":"first","Confidence":96.98252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57414}],"Text":"studio","Confidence":96.87862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54977}],"Text":"steps","Confidence":96.84836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5617}],"Text":"and","Confidence":96.68596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57322}],"Text":"the","Confidence":96.47071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.562744}],"Text":"to","Confidence":96.18273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.361115}],"Text":"we","Confidence":95.52779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5735}],"Text":"engineering","Confidence":95.12061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.523}],"Text":"for","Confidence":93.80142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.07989}],"Text":"your","Confidence":92.8803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.48942}],"Text":"welcome","Confidence":87.821785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53094}],"Text":"what","Confidence":84.76972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.14368}],"Text":"in","Confidence":80.00572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.22161}],"Text":"easy","Confidence":75.312195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.58816}],"Text":"fiat","Confidence":71.383896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.34053}],"Text":"work","Confidence":67.53473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.703995}],"Text":"want","Confidence":61.260536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.09342}],"Text":"ender","Confidence":58.309517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.11357}],"Text":"studio","Confidence":57.588676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.31847}],"Text":"tent","Confidence":56.998215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.126205}],"Text":"he","Confidence":56.610245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.48488}],"Text":"male","Confidence":54.7846},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.99158}],"Text":"enginecsing","Confidence":53.39008}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57421}],"Text":"first","Confidence":96.98252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57414}],"Text":"studio","Confidence":96.87862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54977}],"Text":"steps","Confidence":96.84836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5617}],"Text":"and","Confidence":96.68596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57322}],"Text":"the","Confidence":96.47071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.562744}],"Text":"to","Confidence":96.18273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.361115}],"Text":"we","Confidence":95.52779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5735}],"Text":"engineering","Confidence":95.12061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.523}],"Text":"for","Confidence":93.80142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.07989}],"Text":"your","Confidence":92.8803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.48942}],"Text":"welcome","Confidence":87.821785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53094}],"Text":"what","Confidence":84.76972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.14368}],"Text":"in","Confidence":80.00572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.22161}],"Text":"easy","Confidence":75.312195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.58816}],"Text":"fiat","Confidence":71.383896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.34053}],"Text":"work","Confidence":67.53473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.703995}],"Text":"want","Confidence":61.260536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.09342}],"Text":"ender","Confidence":58.309517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.11357}],"Text":"studio","Confidence":57.588676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.31847}],"Text":"tent","Confidence":56.998215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.126205}],"Text":"he","Confidence":56.610245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.48488}],"Text":"male","Confidence":54.7846},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.99158}],"Text":"enginecsing","Confidence":53.39008}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index ccb2215..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":94.398315}],"Text":"ong","Confidence":60.788235},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.78274}],"Text":"civat","Confidence":50.15397}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 40b783f..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.21237}],"Text":"aa","Confidence":52.153137}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(04_04).json index d14b6ae..a965927 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.06795}],"Text":"gata","Confidence":85.46508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.984184}],"Text":"incorporate","Confidence":81.50892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.15349}],"Text":"basicsteps","Confidence":78.56891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.92517}],"Text":"end","Confidence":78.476204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51529}],"Text":"project","Confidence":76.640945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.83282}],"Text":"the","Confidence":70.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.2035}],"Text":"for","Confidence":66.51915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.43583}],"Text":"you","Confidence":62.74589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.06411}],"Text":"to","Confidence":62.74589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.54558}],"Text":"of","Confidence":61.08594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":94.01531}],"Text":"row","Confidence":58.107193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.951775}],"Text":"of","Confidence":56.768402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.87101}],"Text":"el","Confidence":55.970196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.56152}],"Text":"ig","Confidence":54.56524},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.032265}],"Text":"mtrodvcng","Confidence":54.00066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.520905}],"Text":"engineering","Confidence":52.886078},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":93.221756}],"Text":"miatyou","Confidence":52.552277},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":92.896675}],"Text":"conhguring","Confidence":50.276703}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.06795}],"Text":"gata","Confidence":85.46508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.984184}],"Text":"incorporate","Confidence":81.50892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.15349}],"Text":"basicsteps","Confidence":78.56891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.92517}],"Text":"end","Confidence":78.476204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51529}],"Text":"project","Confidence":76.640945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.83282}],"Text":"the","Confidence":70.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.2035}],"Text":"for","Confidence":66.51915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.43583}],"Text":"you","Confidence":62.74589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.06411}],"Text":"to","Confidence":62.74589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.54558}],"Text":"of","Confidence":61.08594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":94.01531}],"Text":"row","Confidence":58.107193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.951775}],"Text":"of","Confidence":56.768402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.87101}],"Text":"el","Confidence":55.970196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.56152}],"Text":"ig","Confidence":54.56524},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.032265}],"Text":"mtrodvcng","Confidence":54.00066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.520905}],"Text":"engineering","Confidence":52.886078},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":93.221756}],"Text":"miatyou","Confidence":52.552277},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":92.896675}],"Text":"conhguring","Confidence":50.276703}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index b6cc3bf..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56394}],"Text":"your","Confidence":96.6728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.548195}],"Text":"what","Confidence":96.61026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55742}],"Text":"you","Confidence":96.49197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.571205}],"Text":"need","Confidence":95.90516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.377205}],"Text":"basic","Confidence":95.64041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.394424}],"Text":"work","Confidence":95.20131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.289825}],"Text":"engineering","Confidence":95.02878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56561}],"Text":"are","Confidence":95.011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572624}],"Text":"points","Confidence":94.86933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.29825}],"Text":"into","Confidence":94.86933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.557205}],"Text":"the","Confidence":94.81382},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57139}],"Text":"parameters","Confidence":94.65738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57312}],"Text":"to","Confidence":93.40902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.99955}],"Text":"steps","Confidence":92.99685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.539665}],"Text":"projects","Confidence":92.95356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57203}],"Text":"and","Confidence":92.89595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.561264}],"Text":"make","Confidence":92.29491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57371}],"Text":"application","Confidence":91.939896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.83502}],"Text":"can","Confidence":91.84516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.41226}],"Text":"this","Confidence":91.35221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.32561}],"Text":"front","Confidence":91.07481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57158}],"Text":"properties","Confidence":91.03602},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01525}],"Text":"proj\u00E9ct","Confidence":90.23572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53698}],"Text":"project","Confidence":89.28586},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.86042}],"Text":"incorporate","Confidence":88.57514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.38813}],"Text":"setting","Confidence":88.26325},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.00396}],"Text":"fonyour","Confidence":88.12191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.29967}],"Text":"control","Confidence":88.09767},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.09988}],"Text":"gonnection","Confidence":86.69912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.450134}],"Text":"for","Confidence":86.032364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.20621}],"Text":"generally","Confidence":85.33798},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56706}],"Text":"execution","Confidence":85.30122},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.38225}],"Text":"create","Confidence":84.92445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.83999}],"Text":"service","Confidence":84.87993},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"j","Confidence":97.82289}],"Text":"jto","Confidence":84.76021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51357}],"Text":"them","Confidence":84.470184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.784035}],"Text":"following","Confidence":83.79528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.6107}],"Text":"in","Confidence":83.27494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.54713}],"Text":"configuring","Confidence":82.829865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.570854}],"Text":"has","Confidence":82.429276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.343994}],"Text":"end","Confidence":81.40794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.88055}],"Text":"is","Confidence":79.833496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.494225}],"Text":"of","Confidence":76.99758},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.15356}],"Text":"ngineering","Confidence":76.13513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.7697}],"Text":"ine","Confidence":74.87598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.38126}],"Text":"studio","Confidence":74.66885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57082}],"Text":"then","Confidence":71.35761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5397}],"Text":"see","Confidence":71.35761},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.296486}],"Text":"endiwe","Confidence":71.00575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.66979}],"Text":"data","Confidence":69.68855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57345}],"Text":"studia","Confidence":69.32914},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.01032}],"Text":"the","Confidence":67.35991},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":95.13359}],"Text":"because","Confidence":65.93513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51275}],"Text":"processes","Confidence":65.28369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.34261}],"Text":"tor","Confidence":59.59584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.555786}],"Text":"studio","Confidence":59.178596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.31141}],"Text":"dialogs","Confidence":59.001957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":98.82208}],"Text":"we","Confidence":58.591442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.6968}],"Text":"want","Confidence":58.591442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.16369}],"Text":"coe","Confidence":57.819942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":94.93109}],"Text":"corp","Confidence":57.53355},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02716}],"Text":"projectsy","Confidence":57.43248},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":97.12573}],"Text":"visualization","Confidence":57.306503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.03453}],"Text":"because","Confidence":56.28859},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.688}],"Text":"introducing","Confidence":56.2121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.84578}],"Text":"io","Confidence":55.570618},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.0383}],"Text":"create","Confidence":55.249897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.864876}],"Text":"ie","Confidence":54.062496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":92.99824}],"Text":"ne","Confidence":50.98768}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(08_08).json index f6ba429..cb9cd21 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57404}],"Text":"to","Confidence":96.97046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57311}],"Text":"the","Confidence":96.97046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57234}],"Text":"basic","Confidence":96.94432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5737}],"Text":"steps","Confidence":96.94432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57455}],"Text":"are","Confidence":96.902115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57332}],"Text":"you","Confidence":96.82264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55221}],"Text":"work","Confidence":96.81623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57303}],"Text":"what","Confidence":96.53097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.504005}],"Text":"service","Confidence":96.52806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56364}],"Text":"engineering","Confidence":96.50101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574066}],"Text":"points","Confidence":96.45343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.42465}],"Text":"in","Confidence":95.97255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.4121}],"Text":"can","Confidence":95.884705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57133}],"Text":"your","Confidence":95.32079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.32248}],"Text":"introducing","Confidence":95.25738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.31913}],"Text":"into","Confidence":95.233925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.30338}],"Text":"need","Confidence":95.123665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53587}],"Text":"make","Confidence":94.6529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57435}],"Text":"for","Confidence":94.644035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57187}],"Text":"project","Confidence":94.6409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.38859}],"Text":"following","Confidence":92.47417},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.98795}],"Text":"gonnection","Confidence":91.805824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57124}],"Text":"this","Confidence":90.600044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.29616}],"Text":"iro","Confidence":88.07312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.24671}],"Text":"we","Confidence":87.727},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.22171}],"Text":"greate","Confidence":87.377495},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.16784}],"Text":"ofyour","Confidence":87.1749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.15664}],"Text":"configuring","Confidence":87.09645},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92583}],"Text":"end","Confidence":86.21803},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.88561}],"Text":"exezution","Confidence":83.9073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.29756}],"Text":"want","Confidence":82.58606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.31093}],"Text":"how","Confidence":81.43125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.60611}],"Text":"create","Confidence":76.24278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.56634}],"Text":"we","Confidence":75.964386},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.45136}],"Text":"firstisteps","Confidence":75.15953},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.31496}],"Text":"first\u0027steps","Confidence":74.20471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.28365}],"Text":"studio","Confidence":73.446106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.82357}],"Text":"incorporate","Confidence":72.39699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.80774}],"Text":"data","Confidence":72.39699},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02476}],"Text":"projedis","Confidence":68.39265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02159}],"Text":"visualization","Confidence":67.413574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03666}],"Text":"chapters","Confidence":65.9671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.32929}],"Text":"col","Confidence":63.292267},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.039314}],"Text":"studio","Confidence":59.788498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":94.21221}],"Text":"fend","Confidence":59.485474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":97.63278}],"Text":"we","Confidence":53.65459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.32021}],"Text":"tend","Confidence":53.241493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.31444}],"Text":"for","Confidence":51.95923}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57404}],"Text":"to","Confidence":96.97046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57311}],"Text":"the","Confidence":96.97046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57234}],"Text":"basic","Confidence":96.94432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5737}],"Text":"steps","Confidence":96.94432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57455}],"Text":"are","Confidence":96.902115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57332}],"Text":"you","Confidence":96.82264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55221}],"Text":"work","Confidence":96.81623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57303}],"Text":"what","Confidence":96.53097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.504005}],"Text":"service","Confidence":96.52806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56364}],"Text":"engineering","Confidence":96.50101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574066}],"Text":"points","Confidence":96.45343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.42465}],"Text":"in","Confidence":95.97255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.4121}],"Text":"can","Confidence":95.884705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57133}],"Text":"your","Confidence":95.32079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.32248}],"Text":"introducing","Confidence":95.25738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.31913}],"Text":"into","Confidence":95.233925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.30338}],"Text":"need","Confidence":95.123665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53587}],"Text":"make","Confidence":94.6529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57435}],"Text":"for","Confidence":94.644035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57187}],"Text":"project","Confidence":94.6409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.38859}],"Text":"following","Confidence":92.47417},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.98795}],"Text":"gonnection","Confidence":91.805824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57124}],"Text":"this","Confidence":90.600044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.29616}],"Text":"iro","Confidence":88.07312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.24671}],"Text":"we","Confidence":87.727},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.22171}],"Text":"greate","Confidence":87.377495},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.16784}],"Text":"ofyour","Confidence":87.1749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.15664}],"Text":"configuring","Confidence":87.09645},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92583}],"Text":"end","Confidence":86.21803},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.88561}],"Text":"exezution","Confidence":83.9073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.29756}],"Text":"want","Confidence":82.58606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.31093}],"Text":"how","Confidence":81.43125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.60611}],"Text":"create","Confidence":76.24278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.56634}],"Text":"we","Confidence":75.964386},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.45136}],"Text":"firstisteps","Confidence":75.15953},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.31496}],"Text":"first\u0027steps","Confidence":74.20471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.28365}],"Text":"studio","Confidence":73.446106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.82357}],"Text":"incorporate","Confidence":72.39699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.80774}],"Text":"data","Confidence":72.39699},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02476}],"Text":"projedis","Confidence":68.39265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02159}],"Text":"visualization","Confidence":67.413574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03666}],"Text":"chapters","Confidence":65.9671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.32929}],"Text":"col","Confidence":63.292267},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.039314}],"Text":"studio","Confidence":59.788498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":94.21221}],"Text":"fend","Confidence":59.485474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":97.63278}],"Text":"we","Confidence":53.65459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.32021}],"Text":"tend","Confidence":53.241493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.31444}],"Text":"for","Confidence":51.95923}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index d9741cd..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57075}],"Text":"your","Confidence":96.99214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57426}],"Text":"to","Confidence":96.97763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":99.56745}],"Text":"you","Confidence":96.943985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.570755}],"Text":"has","Confidence":96.92465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56167}],"Text":"the","Confidence":96.923744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56705}],"Text":"studio","Confidence":96.92265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5637}],"Text":"create","Confidence":96.90264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55402}],"Text":"do","Confidence":96.87816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56799}],"Text":"how","Confidence":96.83574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56929}],"Text":"see","Confidence":96.827194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574135}],"Text":"engineering","Confidence":96.822556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54489}],"Text":"and","Confidence":96.81424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57421}],"Text":"steps","Confidence":96.814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57365}],"Text":"basic","Confidence":96.814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572876}],"Text":"been","Confidence":96.81154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.542145}],"Text":"can","Confidence":96.79499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57074}],"Text":"service","Confidence":96.76519},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56499}],"Text":"configured","Confidence":96.666725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.534615}],"Text":"into","Confidence":96.630745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57081}],"Text":"need","Confidence":96.52712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56823}],"Text":"then","Confidence":96.500465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55774}],"Text":"parameters","Confidence":96.48822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.53208}],"Text":"execution","Confidence":96.40658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573494}],"Text":"points","Confidence":96.35731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.478455}],"Text":"we","Confidence":96.3492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54439}],"Text":"for","Confidence":96.311356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56945}],"Text":"start","Confidence":96.211006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56536}],"Text":"generally","Confidence":96.21029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57406}],"Text":"we","Confidence":96.14366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55458}],"Text":"configuring","Confidence":96.07576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.46806}],"Text":"of","Confidence":96.059654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.42868}],"Text":"want","Confidence":96.00075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.422195}],"Text":"it","Confidence":95.95538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57387}],"Text":"work","Confidence":95.8362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55857}],"Text":"because","Confidence":95.73728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57365}],"Text":"properties","Confidence":95.60206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57197}],"Text":"processes","Confidence":95.51608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.350365}],"Text":"in","Confidence":95.452545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57442}],"Text":"project","Confidence":95.43887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.34549}],"Text":"easy","Confidence":95.41842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57339}],"Text":"make","Confidence":95.11529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.32944}],"Text":"first","Confidence":94.738434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574165}],"Text":"projects","Confidence":94.60726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.22586}],"Text":"what","Confidence":94.19605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568214}],"Text":"tool","Confidence":93.973434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.12605}],"Text":"incorporate","Confidence":93.882385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.10676}],"Text":"studio","Confidence":93.747314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57175}],"Text":"are","Confidence":93.16191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.02076}],"Text":"end","Confidence":93.14532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56289}],"Text":"pro","Confidence":93.01627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.98637}],"Text":"if","Confidence":92.90459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57292}],"Text":"this","Confidence":92.15187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.1532}],"Text":"introducing","Confidence":91.96412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.481865}],"Text":"data","Confidence":91.72023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.77588}],"Text":"front","Confidence":91.431145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.74518}],"Text":"ihe","Confidence":91.21627},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.91157}],"Text":"visualization","Confidence":90.68373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.47204}],"Text":"not","Confidence":90.44896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.36632}],"Text":"dialogs","Confidence":88.56421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.40742}],"Text":"setting","Confidence":85.745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.14909}],"Text":"following","Confidence":83.29207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.543175}],"Text":"project","Confidence":82.39945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.341866}],"Text":"studia","Confidence":81.988556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5739}],"Text":"contro","Confidence":80.53762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.00246}],"Text":"service","Confidence":79.01722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.562744}],"Text":"engine","Confidence":78.75293},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":96.87877}],"Text":"visualization","Confidence":78.15139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.569115}],"Text":"studio","Confidence":77.568855},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.810265}],"Text":"thisend","Confidence":77.32344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5745}],"Text":"function","Confidence":77.067215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.68931}],"Text":"create","Confidence":76.825165},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.015045}],"Text":"variable","Confidence":75.941765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.36184}],"Text":"anything","Confidence":74.53288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":96.26813}],"Text":"he","Confidence":73.87691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.64111}],"Text":"comple","Confidence":70.60785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":95.51294}],"Text":"er","Confidence":68.590576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56875}],"Text":"frame","Confidence":67.7246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.69628}],"Text":"ig","Confidence":62.873955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":94.274124}],"Text":"me","Confidence":59.918854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57072}],"Text":"appli","Confidence":59.393353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.800224}],"Text":"es","Confidence":59.261826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55194}],"Text":"next","Confidence":58.740517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.02382}],"Text":"is","Confidence":58.16671},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.86567}],"Text":"create","Confidence":56.178757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55379}],"Text":"them","Confidence":55.451355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.40543}],"Text":"end","Confidence":51.313583},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.58001}],"Text":"first","Confidence":51.293736}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(12_12).json index 11a61ca..9c5f50a 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57395}],"Text":"to","Confidence":96.97726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57058}],"Text":"the","Confidence":96.977135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.574554}],"Text":"your","Confidence":96.96021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57447}],"Text":"need","Confidence":96.94858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.561874}],"Text":"do","Confidence":96.933105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57333}],"Text":"we","Confidence":96.93082},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57456}],"Text":"has","Confidence":96.84028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57328}],"Text":"you","Confidence":96.83808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55382}],"Text":"because","Confidence":96.79465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54105}],"Text":"and","Confidence":96.78737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5741}],"Text":"generally","Confidence":96.7811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57447}],"Text":"properties","Confidence":96.76469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57377}],"Text":"steps","Confidence":96.75995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57431}],"Text":"basic","Confidence":96.75995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55577}],"Text":"how","Confidence":96.75621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57475}],"Text":"project","Confidence":96.735466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55131}],"Text":"front","Confidence":96.72844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52381}],"Text":"of","Confidence":96.66667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.573425}],"Text":"not","Confidence":96.66292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545006}],"Text":"engineering","Confidence":96.64204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.51502}],"Text":"end","Confidence":96.60518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52523}],"Text":"in","Confidence":96.56221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57471}],"Text":"then","Confidence":96.543304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55642}],"Text":"been","Confidence":96.42944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57142}],"Text":"processes","Confidence":96.34781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55058}],"Text":"work","Confidence":96.31035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56456}],"Text":"create","Confidence":96.278984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.46709}],"Text":"are","Confidence":96.26961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.48951}],"Text":"studio","Confidence":96.265335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46356}],"Text":"configured","Confidence":96.24495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573586}],"Text":"parameters","Confidence":96.24419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53711}],"Text":"make","Confidence":96.23723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57131}],"Text":"this","Confidence":96.18983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45043}],"Text":"incorporate","Confidence":96.15304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.43993}],"Text":"welcome","Confidence":96.07954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54514}],"Text":"stud","Confidence":96.046814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568214}],"Text":"data","Confidence":95.98819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57481}],"Text":"points","Confidence":95.98819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.567795}],"Text":"engine","Confidence":95.83121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5734}],"Text":"want","Confidence":95.81743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56883}],"Text":"configuring","Confidence":95.681305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573845}],"Text":"service","Confidence":95.501465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57055}],"Text":"setting","Confidence":95.45511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57296}],"Text":"tool","Confidence":95.40304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.3342}],"Text":"for","Confidence":95.3394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572136}],"Text":"start","Confidence":95.07236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57415}],"Text":"see","Confidence":94.80667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.561584}],"Text":"control","Confidence":94.77693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"anything","Confidence":94.520775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.046364}],"Text":"if","Confidence":93.324524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57362}],"Text":"projects","Confidence":93.10802},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56764}],"Text":"studio","Confidence":93.061554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.922775}],"Text":"first","Confidence":92.459404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.849846}],"Text":"introducing","Confidence":91.94893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57486}],"Text":"can","Confidence":90.63319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.52278}],"Text":"we","Confidence":89.659485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.509346}],"Text":"execution","Confidence":89.56541},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.98294}],"Text":"visualization","Confidence":88.81125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.533104}],"Text":"end","Confidence":88.78957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.34696}],"Text":"into","Confidence":87.37453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.460106}],"Text":"visualization","Confidence":87.236984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54162}],"Text":"first","Confidence":86.706406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.07738}],"Text":"tt","Confidence":86.54166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"k","Confidence":98.40266}],"Text":"ke","Confidence":86.40726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.05923}],"Text":"it","Confidence":86.40726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.558395}],"Text":"easy","Confidence":83.47364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.501236}],"Text":"project","Confidence":83.11244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":96.672554}],"Text":"create","Confidence":76.707855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.68535}],"Text":"nto","Confidence":71.064865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.675125}],"Text":"configuring","Confidence":69.72589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.40588}],"Text":"ata","Confidence":69.620415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574066}],"Text":"function","Confidence":68.17203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.46588}],"Text":"following","Confidence":66.94574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.471306}],"Text":"dtalogs","Confidence":61.299126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.76188}],"Text":"pont","Confidence":60.262276},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.02545}],"Text":"them","Confidence":58.05375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54962}],"Text":"appl","Confidence":56.549107},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":93.56421}],"Text":"00","Confidence":54.949436},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.59775}],"Text":"to","Confidence":53.390903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550415}],"Text":"chapters","Confidence":52.078995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57286}],"Text":"driver","Confidence":50.135273}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57395}],"Text":"to","Confidence":96.97726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57058}],"Text":"the","Confidence":96.977135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.574554}],"Text":"your","Confidence":96.96021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57447}],"Text":"need","Confidence":96.94858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.561874}],"Text":"do","Confidence":96.933105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57333}],"Text":"we","Confidence":96.93082},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57456}],"Text":"has","Confidence":96.84028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57328}],"Text":"you","Confidence":96.83808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55382}],"Text":"because","Confidence":96.79465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54105}],"Text":"and","Confidence":96.78737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5741}],"Text":"generally","Confidence":96.7811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57447}],"Text":"properties","Confidence":96.76469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57377}],"Text":"steps","Confidence":96.75995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57431}],"Text":"basic","Confidence":96.75995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55577}],"Text":"how","Confidence":96.75621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57475}],"Text":"project","Confidence":96.735466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55131}],"Text":"front","Confidence":96.72844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52381}],"Text":"of","Confidence":96.66667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.573425}],"Text":"not","Confidence":96.66292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.545006}],"Text":"engineering","Confidence":96.64204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.51502}],"Text":"end","Confidence":96.60518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52523}],"Text":"in","Confidence":96.56221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57471}],"Text":"then","Confidence":96.543304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55642}],"Text":"been","Confidence":96.42944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57142}],"Text":"processes","Confidence":96.34781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55058}],"Text":"work","Confidence":96.31035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56456}],"Text":"create","Confidence":96.278984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.46709}],"Text":"are","Confidence":96.26961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.48951}],"Text":"studio","Confidence":96.265335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46356}],"Text":"configured","Confidence":96.24495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573586}],"Text":"parameters","Confidence":96.24419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53711}],"Text":"make","Confidence":96.23723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57131}],"Text":"this","Confidence":96.18983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45043}],"Text":"incorporate","Confidence":96.15304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.43993}],"Text":"welcome","Confidence":96.07954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54514}],"Text":"stud","Confidence":96.046814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568214}],"Text":"data","Confidence":95.98819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57481}],"Text":"points","Confidence":95.98819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.567795}],"Text":"engine","Confidence":95.83121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5734}],"Text":"want","Confidence":95.81743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56883}],"Text":"configuring","Confidence":95.681305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573845}],"Text":"service","Confidence":95.501465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57055}],"Text":"setting","Confidence":95.45511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57296}],"Text":"tool","Confidence":95.40304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.3342}],"Text":"for","Confidence":95.3394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572136}],"Text":"start","Confidence":95.07236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57415}],"Text":"see","Confidence":94.80667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.561584}],"Text":"control","Confidence":94.77693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"anything","Confidence":94.520775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.046364}],"Text":"if","Confidence":93.324524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57362}],"Text":"projects","Confidence":93.10802},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56764}],"Text":"studio","Confidence":93.061554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.922775}],"Text":"first","Confidence":92.459404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.849846}],"Text":"introducing","Confidence":91.94893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57486}],"Text":"can","Confidence":90.63319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.52278}],"Text":"we","Confidence":89.659485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.509346}],"Text":"execution","Confidence":89.56541},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.98294}],"Text":"visualization","Confidence":88.81125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.533104}],"Text":"end","Confidence":88.78957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.34696}],"Text":"into","Confidence":87.37453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.460106}],"Text":"visualization","Confidence":87.236984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54162}],"Text":"first","Confidence":86.706406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.07738}],"Text":"tt","Confidence":86.54166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"k","Confidence":98.40266}],"Text":"ke","Confidence":86.40726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.05923}],"Text":"it","Confidence":86.40726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.558395}],"Text":"easy","Confidence":83.47364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.501236}],"Text":"project","Confidence":83.11244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":96.672554}],"Text":"create","Confidence":76.707855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.68535}],"Text":"nto","Confidence":71.064865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.675125}],"Text":"configuring","Confidence":69.72589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.40588}],"Text":"ata","Confidence":69.620415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574066}],"Text":"function","Confidence":68.17203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.46588}],"Text":"following","Confidence":66.94574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.471306}],"Text":"dtalogs","Confidence":61.299126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.76188}],"Text":"pont","Confidence":60.262276},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.02545}],"Text":"them","Confidence":58.05375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54962}],"Text":"appl","Confidence":56.549107},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":93.56421}],"Text":"00","Confidence":54.949436},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.59775}],"Text":"to","Confidence":53.390903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550415}],"Text":"chapters","Confidence":52.078995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57286}],"Text":"driver","Confidence":50.135273}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index f9181f1..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57224}],"Text":"and","Confidence":97.001854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57386}],"Text":"to","Confidence":96.99452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57384}],"Text":"need","Confidence":96.99307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57447}],"Text":"your","Confidence":96.97639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57137}],"Text":"parameters","Confidence":96.96059},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56815}],"Text":"the","Confidence":96.95783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56188}],"Text":"you","Confidence":96.93319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574234}],"Text":"for","Confidence":96.93147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562996}],"Text":"first","Confidence":96.91731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55731}],"Text":"this","Confidence":96.90116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57423}],"Text":"properties","Confidence":96.88513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.551956}],"Text":"anything","Confidence":96.8637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57444}],"Text":"want","Confidence":96.85764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57441}],"Text":"we","Confidence":96.84806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56619}],"Text":"how","Confidence":96.83825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5461}],"Text":"engineering","Confidence":96.8227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57072}],"Text":"create","Confidence":96.81477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54371}],"Text":"in","Confidence":96.80595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.541725}],"Text":"do","Confidence":96.7921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57332}],"Text":"because","Confidence":96.77371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53493}],"Text":"processes","Confidence":96.74447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53399}],"Text":"data","Confidence":96.737946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56658}],"Text":"not","Confidence":96.72238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53078}],"Text":"project","Confidence":96.711266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57226}],"Text":"work","Confidence":96.65511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.511475}],"Text":"end","Confidence":96.5803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56057}],"Text":"been","Confidence":96.57251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57262}],"Text":"basic","Confidence":96.55437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5442}],"Text":"steps","Confidence":96.55245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":99.50241}],"Text":"create","Confidence":96.51688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55064}],"Text":"configuring","Confidence":96.43816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.48665}],"Text":"can","Confidence":96.40653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.558586}],"Text":"studio","Confidence":96.15881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57198}],"Text":"projects","Confidence":96.12547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.44166}],"Text":"execution","Confidence":96.091606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.574455}],"Text":"generally","Confidence":96.04354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.573685}],"Text":"has","Confidence":95.97958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.341225}],"Text":"first","Confidence":95.38855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57233}],"Text":"make","Confidence":95.34704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.333626}],"Text":"configured","Confidence":95.335396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.321724}],"Text":"of","Confidence":95.252075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.273384}],"Text":"introducing","Confidence":94.91371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57346}],"Text":"tool","Confidence":94.85554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.522545}],"Text":"into","Confidence":94.83327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.570656}],"Text":"setting","Confidence":94.348076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.17492}],"Text":"see","Confidence":94.22444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56991}],"Text":"points","Confidence":94.165146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56213}],"Text":"what","Confidence":93.78515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56855}],"Text":"are","Confidence":93.47453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57413}],"Text":"stud","Confidence":93.06576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.568245}],"Text":"service","Confidence":91.85867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.63485}],"Text":"visualization","Confidence":90.44397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.61812}],"Text":"incorporate","Confidence":90.32685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.04155}],"Text":"if","Confidence":86.29087},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.562485}],"Text":"contro","Confidence":84.73422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.494865}],"Text":"following","Confidence":84.11941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.6876}],"Text":"end","Confidence":83.813194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56616}],"Text":"projects","Confidence":80.112976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.026855}],"Text":"engine","Confidence":79.156624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.496315}],"Text":"chapters","Confidence":74.57454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.571686}],"Text":"easy","Confidence":74.43498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54395}],"Text":"function","Confidence":73.54392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.0955}],"Text":"visualization","Confidence":73.438934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.94799}],"Text":"te","Confidence":73.27911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":95.91871}],"Text":"welcome","Confidence":71.43097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.570595}],"Text":"easy","Confidence":69.89868},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51316}],"Text":"screen","Confidence":68.471405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.21355}],"Text":"ine","Confidence":66.49481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.00174}],"Text":"river","Confidence":65.423836},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"k","Confidence":97.88276}],"Text":"ks","Confidence":64.96376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.819954}],"Text":"band","Confidence":63.739693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57444}],"Text":"studio","Confidence":62.751602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":94.5413}],"Text":"font","Confidence":61.789074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56564}],"Text":"project","Confidence":57.29439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.32512}],"Text":"them","Confidence":55.398705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":93.08844}],"Text":"welcome","Confidence":51.619076}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(16_16).json index a5aea8b..f73c9be 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57276}],"Text":"and","Confidence":96.99833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56829}],"Text":"end","Confidence":96.97804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.568756}],"Text":"work","Confidence":96.97737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572266}],"Text":"steps","Confidence":96.9769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57446}],"Text":"your","Confidence":96.97595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56752}],"Text":"we","Confidence":96.972626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57102}],"Text":"the","Confidence":96.95413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57422}],"Text":"properties","Confidence":96.94061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569595}],"Text":"to","Confidence":96.92056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.559296}],"Text":"you","Confidence":96.915054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56203}],"Text":"setting","Confidence":96.89714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57362}],"Text":"what","Confidence":96.885796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":99.5609}],"Text":"create","Confidence":96.876144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56284}],"Text":"make","Confidence":96.863914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55129}],"Text":"this","Confidence":96.85906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57376}],"Text":"for","Confidence":96.82351},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54193}],"Text":"then","Confidence":96.793495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57339}],"Text":"start","Confidence":96.775986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.538666}],"Text":"data","Confidence":96.77068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53821}],"Text":"of","Confidence":96.76748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5375}],"Text":"anything","Confidence":96.76247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57001}],"Text":"see","Confidence":96.73102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57124}],"Text":"been","Confidence":96.710846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568726}],"Text":"create","Confidence":96.70488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"parameters","Confidence":96.70098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573044}],"Text":"basic","Confidence":96.661934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5714}],"Text":"do","Confidence":96.66081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51758}],"Text":"introducing","Confidence":96.62306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.51218}],"Text":"need","Confidence":96.56442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.509125}],"Text":"engineering","Confidence":96.55603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57308}],"Text":"because","Confidence":96.55398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55632}],"Text":"project","Confidence":96.54987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550766}],"Text":"chapters","Confidence":96.50046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5725}],"Text":"connection","Confidence":96.45259},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.534256}],"Text":"can","Confidence":96.309265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550766}],"Text":"configured","Confidence":96.2136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56363}],"Text":"how","Confidence":96.17649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54332}],"Text":"engine","Confidence":96.11286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.43251}],"Text":"in","Confidence":96.02756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574295}],"Text":"points","Confidence":95.99173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.42038}],"Text":"front","Confidence":95.94264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.42455}],"Text":"into","Confidence":95.746796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.540764}],"Text":"project","Confidence":95.73407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57266}],"Text":"has","Confidence":95.73407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5734}],"Text":"driver","Confidence":95.476295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.545555}],"Text":"configuring","Confidence":95.40359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56923}],"Text":"service","Confidence":95.30547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.32396}],"Text":"want","Confidence":95.2677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45865}],"Text":"them","Confidence":95.26746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571175}],"Text":"studi","Confidence":94.612015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566025}],"Text":"tool","Confidence":93.87306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.067406}],"Text":"is","Confidence":93.47186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57292}],"Text":"studio","Confidence":93.25974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573814}],"Text":"projects","Confidence":93.13808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.00648}],"Text":"first","Confidence":93.04532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56841}],"Text":"are","Confidence":92.71585},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.90138}],"Text":"visualization","Confidence":91.259315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56038}],"Text":"studio","Confidence":91.09917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.60509}],"Text":"if","Confidence":90.23563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.82747}],"Text":"le","Confidence":89.46369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.47109}],"Text":"create","Confidence":89.297646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.43831}],"Text":"easy","Confidence":86.52458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.01886}],"Text":"end","Confidence":85.25008},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03678}],"Text":"anc","Confidence":82.99534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.40238}],"Text":"inthe","Confidence":79.620094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.08192}],"Text":"id","Confidence":79.5734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.916565}],"Text":"dialogs","Confidence":78.41595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.89641}],"Text":"execution","Confidence":78.27486},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.68047}],"Text":"visualization","Confidence":76.76333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.43228}],"Text":"fist","Confidence":76.32381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.36827}],"Text":"it","Confidence":74.577896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57275}],"Text":"application","Confidence":73.45985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.20859}],"Text":"te","Confidence":72.52159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57354}],"Text":"projects","Confidence":72.150986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":98.86855}],"Text":"yu","Confidence":71.83193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.138435}],"Text":"we","Confidence":71.31143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.542404}],"Text":"following","Confidence":69.180176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.28838}],"Text":"incorporate","Confidence":63.953102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56081}],"Text":"projets","Confidence":62.009457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":94.140076}],"Text":"welcome","Confidence":58.980545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55114}],"Text":"function","Confidence":58.323532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.6048}],"Text":"ae","Confidence":56.874714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.30265}],"Text":"oo","Confidence":55.958424},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.56934}],"Text":"10","Confidence":54.985397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.22084}],"Text":"unat","Confidence":52.54589}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57276}],"Text":"and","Confidence":96.99833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56829}],"Text":"end","Confidence":96.97804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.568756}],"Text":"work","Confidence":96.97737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572266}],"Text":"steps","Confidence":96.9769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57446}],"Text":"your","Confidence":96.97595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56752}],"Text":"we","Confidence":96.972626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57102}],"Text":"the","Confidence":96.95413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57422}],"Text":"properties","Confidence":96.94061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569595}],"Text":"to","Confidence":96.92056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.559296}],"Text":"you","Confidence":96.915054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56203}],"Text":"setting","Confidence":96.89714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57362}],"Text":"what","Confidence":96.885796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":99.5609}],"Text":"create","Confidence":96.876144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56284}],"Text":"make","Confidence":96.863914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55129}],"Text":"this","Confidence":96.85906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57376}],"Text":"for","Confidence":96.82351},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54193}],"Text":"then","Confidence":96.793495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57339}],"Text":"start","Confidence":96.775986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.538666}],"Text":"data","Confidence":96.77068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53821}],"Text":"of","Confidence":96.76748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5375}],"Text":"anything","Confidence":96.76247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57001}],"Text":"see","Confidence":96.73102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57124}],"Text":"been","Confidence":96.710846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568726}],"Text":"create","Confidence":96.70488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"parameters","Confidence":96.70098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573044}],"Text":"basic","Confidence":96.661934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5714}],"Text":"do","Confidence":96.66081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51758}],"Text":"introducing","Confidence":96.62306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.51218}],"Text":"need","Confidence":96.56442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.509125}],"Text":"engineering","Confidence":96.55603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57308}],"Text":"because","Confidence":96.55398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55632}],"Text":"project","Confidence":96.54987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550766}],"Text":"chapters","Confidence":96.50046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5725}],"Text":"connection","Confidence":96.45259},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.534256}],"Text":"can","Confidence":96.309265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.550766}],"Text":"configured","Confidence":96.2136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56363}],"Text":"how","Confidence":96.17649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54332}],"Text":"engine","Confidence":96.11286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.43251}],"Text":"in","Confidence":96.02756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574295}],"Text":"points","Confidence":95.99173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.42038}],"Text":"front","Confidence":95.94264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.42455}],"Text":"into","Confidence":95.746796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.540764}],"Text":"project","Confidence":95.73407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57266}],"Text":"has","Confidence":95.73407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5734}],"Text":"driver","Confidence":95.476295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.545555}],"Text":"configuring","Confidence":95.40359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56923}],"Text":"service","Confidence":95.30547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.32396}],"Text":"want","Confidence":95.2677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45865}],"Text":"them","Confidence":95.26746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571175}],"Text":"studi","Confidence":94.612015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566025}],"Text":"tool","Confidence":93.87306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.067406}],"Text":"is","Confidence":93.47186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57292}],"Text":"studio","Confidence":93.25974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573814}],"Text":"projects","Confidence":93.13808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.00648}],"Text":"first","Confidence":93.04532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56841}],"Text":"are","Confidence":92.71585},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.90138}],"Text":"visualization","Confidence":91.259315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56038}],"Text":"studio","Confidence":91.09917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.60509}],"Text":"if","Confidence":90.23563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.82747}],"Text":"le","Confidence":89.46369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.47109}],"Text":"create","Confidence":89.297646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.43831}],"Text":"easy","Confidence":86.52458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.01886}],"Text":"end","Confidence":85.25008},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03678}],"Text":"anc","Confidence":82.99534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.40238}],"Text":"inthe","Confidence":79.620094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.08192}],"Text":"id","Confidence":79.5734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.916565}],"Text":"dialogs","Confidence":78.41595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.89641}],"Text":"execution","Confidence":78.27486},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.68047}],"Text":"visualization","Confidence":76.76333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.43228}],"Text":"fist","Confidence":76.32381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.36827}],"Text":"it","Confidence":74.577896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57275}],"Text":"application","Confidence":73.45985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.20859}],"Text":"te","Confidence":72.52159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57354}],"Text":"projects","Confidence":72.150986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":98.86855}],"Text":"yu","Confidence":71.83193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.138435}],"Text":"we","Confidence":71.31143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.542404}],"Text":"following","Confidence":69.180176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.28838}],"Text":"incorporate","Confidence":63.953102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56081}],"Text":"projets","Confidence":62.009457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":94.140076}],"Text":"welcome","Confidence":58.980545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55114}],"Text":"function","Confidence":58.323532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.6048}],"Text":"ae","Confidence":56.874714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.30265}],"Text":"oo","Confidence":55.958424},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.56934}],"Text":"10","Confidence":54.985397},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.22084}],"Text":"unat","Confidence":52.54589}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 32e7a68..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57312}],"Text":"the","Confidence":97.011856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57232}],"Text":"for","Confidence":97.0012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56956}],"Text":"how","Confidence":96.98584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57467}],"Text":"and","Confidence":96.982475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57354}],"Text":"has","Confidence":96.97196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57083}],"Text":"properties","Confidence":96.96449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57279}],"Text":"you","Confidence":96.93374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57329}],"Text":"need","Confidence":96.93163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57067}],"Text":"to","Confidence":96.92523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57404}],"Text":"engineering","Confidence":96.901115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57462}],"Text":"parameters","Confidence":96.89149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55556}],"Text":"your","Confidence":96.88888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57399}],"Text":"anything","Confidence":96.8104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5706}],"Text":"start","Confidence":96.8066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54345}],"Text":"steps","Confidence":96.80414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.542816}],"Text":"in","Confidence":96.79969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573166}],"Text":"make","Confidence":96.72985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57389}],"Text":"not","Confidence":96.719986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5736}],"Text":"project","Confidence":96.68381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57448}],"Text":"points","Confidence":96.680855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52096}],"Text":"create","Confidence":96.64669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.540535}],"Text":"work","Confidence":96.64511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56056}],"Text":"what","Confidence":96.63803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56982}],"Text":"service","Confidence":96.637146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.553406}],"Text":"projects","Confidence":96.56943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54258}],"Text":"into","Confidence":96.55626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5032}],"Text":"of","Confidence":96.522385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56993}],"Text":"because","Confidence":96.47542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.51445}],"Text":"want","Confidence":96.469894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53809}],"Text":"studio","Confidence":96.45678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56536}],"Text":"data","Confidence":96.42691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54941}],"Text":"incorporate","Confidence":96.41328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56989}],"Text":"then","Confidence":96.36705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572464}],"Text":"see","Confidence":96.36705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.469376}],"Text":"do","Confidence":96.28562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.520744}],"Text":"been","Confidence":95.57389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54249}],"Text":"configured","Confidence":95.43929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56267}],"Text":"studio","Confidence":95.43471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56868}],"Text":"project","Confidence":95.40855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57004}],"Text":"projects","Confidence":95.27538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57446}],"Text":"processes","Confidence":95.212234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.41988}],"Text":"can","Confidence":94.88269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5706}],"Text":"them","Confidence":94.75952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5742}],"Text":"engine","Confidence":94.7352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.2117}],"Text":"front","Confidence":94.48189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57304}],"Text":"setting","Confidence":94.43066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54612}],"Text":"configuring","Confidence":93.71933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57431}],"Text":"studio","Confidence":93.55101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.06378}],"Text":"is","Confidence":93.44648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46346}],"Text":"chapters","Confidence":93.002914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55948}],"Text":"tool","Confidence":92.52002},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\\","Confidence":98.86693}],"Text":"visualization","Confidence":92.068474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.75697}],"Text":"le","Confidence":91.29879},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56999}],"Text":"engi","Confidence":89.2994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.52188}],"Text":"following","Confidence":88.01219},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57336}],"Text":"generally","Confidence":85.491104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57266}],"Text":"application","Confidence":85.43032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"{","Confidence":97.85689}],"Text":"welcome","Confidence":84.99819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.82997}],"Text":"first","Confidence":84.80979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.62117}],"Text":"we","Confidence":82.3539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.413216}],"Text":"end","Confidence":81.89249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.311775}],"Text":"visualization","Confidence":81.182434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57087}],"Text":"contro","Confidence":80.99925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.34314}],"Text":"if","Confidence":73.9517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.222786}],"Text":"frst","Confidence":72.9452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.83552}],"Text":"er","Confidence":71.72089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.46913}],"Text":"screen","Confidence":68.26069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56609}],"Text":"easy","Confidence":62.686718},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.516075}],"Text":"ineering","Confidence":61.612526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.52134}],"Text":"dialogs","Confidence":61.59775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.48561}],"Text":"execution","Confidence":61.399265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.51606}],"Text":"visualization","Confidence":61.031082},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.328094}],"Text":"we","Confidence":60.29666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54009}],"Text":"driver","Confidence":52.0892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572914}],"Text":"variable","Confidence":51.861076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":92.88735}],"Text":"ft","Confidence":50.21145}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(20_20).json index 2b65b39..d61aa98 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572556}],"Text":"we","Confidence":97.00601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57435}],"Text":"and","Confidence":96.99365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57368}],"Text":"end","Confidence":96.987686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56816}],"Text":"the","Confidence":96.977104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57295}],"Text":"been","Confidence":96.95912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57316}],"Text":"you","Confidence":96.95892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.572334}],"Text":"your","Confidence":96.94951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55699}],"Text":"to","Confidence":96.89896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57441}],"Text":"service","Confidence":96.89809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57251}],"Text":"do","Confidence":96.89085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5698}],"Text":"need","Confidence":96.86911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572845}],"Text":"create","Confidence":96.8442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57264}],"Text":"want","Confidence":96.84142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566376}],"Text":"for","Confidence":96.82421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.546074}],"Text":"work","Confidence":96.82252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54761}],"Text":"project","Confidence":96.813774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54049}],"Text":"steps","Confidence":96.78341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57392}],"Text":"anything","Confidence":96.753716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56028}],"Text":"parameters","Confidence":96.739944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56928}],"Text":"this","Confidence":96.69766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57383}],"Text":"what","Confidence":96.69459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53354}],"Text":"execution","Confidence":96.672165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57266}],"Text":"next","Confidence":96.66575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5672}],"Text":"in","Confidence":96.66096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55876}],"Text":"properties","Confidence":96.65845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.52173}],"Text":"engineering","Confidence":96.652084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57386}],"Text":"not","Confidence":96.623055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.505486}],"Text":"first","Confidence":96.53839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57461}],"Text":"has","Confidence":96.43927},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55012}],"Text":"of","Confidence":96.42961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.530685}],"Text":"then","Confidence":96.38499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55659}],"Text":"chapters","Confidence":96.37696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572586}],"Text":"processes","Confidence":96.29004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.46342}],"Text":"because","Confidence":96.24394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.45828}],"Text":"into","Confidence":96.20796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57073}],"Text":"basic","Confidence":96.1571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.44734}],"Text":"make","Confidence":96.13139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.44032}],"Text":"see","Confidence":96.082245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57374}],"Text":"are","Confidence":95.87033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5738}],"Text":"setting","Confidence":95.84679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"studi","Confidence":95.786736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5414}],"Text":"incorporate","Confidence":95.69554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.375595}],"Text":"how","Confidence":95.62915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54663}],"Text":"studio","Confidence":95.37657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.32467}],"Text":"configured","Confidence":95.27268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46937}],"Text":"them","Confidence":94.724075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57194}],"Text":"engine","Confidence":94.22648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56927}],"Text":"variable","Confidence":93.896835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.12031}],"Text":"is","Confidence":93.84215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.326836}],"Text":"introducing","Confidence":93.344604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5461}],"Text":"can","Confidence":92.95042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55924}],"Text":"data","Confidence":92.48165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572685}],"Text":"projects","Confidence":92.26518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56753}],"Text":"driver","Confidence":92.14771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54408}],"Text":"studio","Confidence":91.8951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.57552}],"Text":"end","Confidence":90.02867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.54762}],"Text":"configuring","Confidence":89.83334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.483604}],"Text":"welcome","Confidence":89.385216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.394585}],"Text":"visualization","Confidence":88.76207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.483}],"Text":"easy","Confidence":88.665535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57372}],"Text":"project","Confidence":88.224174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.557884}],"Text":"control","Confidence":87.82068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.54318}],"Text":"back","Confidence":87.6557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56191}],"Text":"application","Confidence":86.05788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.7964}],"Text":"if","Confidence":84.57483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.792145}],"Text":"fo","Confidence":84.545006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57108}],"Text":"points","Confidence":83.70647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53951}],"Text":"front","Confidence":83.48717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.49978}],"Text":"following","Confidence":81.6367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.541916}],"Text":"fist","Confidence":81.417595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565384}],"Text":"stat","Confidence":79.57614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56904}],"Text":"tool","Confidence":78.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.61688}],"Text":"create","Confidence":76.31817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.31894}],"Text":"inthe","Confidence":75.93269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.558556}],"Text":"visualization","Confidence":75.07709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.15687}],"Text":"compte","Confidence":71.20896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56596}],"Text":"slat","Confidence":66.70326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.213646}],"Text":"create","Confidence":66.49553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56466}],"Text":"screen","Confidence":65.83189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.99847}],"Text":"visualization","Confidence":64.07405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.41691}],"Text":"create","Confidence":60.918358},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.076065}],"Text":"visualization","Confidence":58.532444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.567085}],"Text":"variable","Confidence":58.281208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.92133}],"Text":"io","Confidence":57.442642},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03808}],"Text":"conflguring","Confidence":52.93885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57364}],"Text":"generally","Confidence":50.124}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572556}],"Text":"we","Confidence":97.00601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57435}],"Text":"and","Confidence":96.99365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57368}],"Text":"end","Confidence":96.987686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56816}],"Text":"the","Confidence":96.977104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57295}],"Text":"been","Confidence":96.95912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.57316}],"Text":"you","Confidence":96.95892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.572334}],"Text":"your","Confidence":96.94951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55699}],"Text":"to","Confidence":96.89896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57441}],"Text":"service","Confidence":96.89809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57251}],"Text":"do","Confidence":96.89085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5698}],"Text":"need","Confidence":96.86911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572845}],"Text":"create","Confidence":96.8442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57264}],"Text":"want","Confidence":96.84142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566376}],"Text":"for","Confidence":96.82421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.546074}],"Text":"work","Confidence":96.82252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54761}],"Text":"project","Confidence":96.813774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54049}],"Text":"steps","Confidence":96.78341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57392}],"Text":"anything","Confidence":96.753716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56028}],"Text":"parameters","Confidence":96.739944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56928}],"Text":"this","Confidence":96.69766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57383}],"Text":"what","Confidence":96.69459},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53354}],"Text":"execution","Confidence":96.672165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57266}],"Text":"next","Confidence":96.66575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5672}],"Text":"in","Confidence":96.66096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55876}],"Text":"properties","Confidence":96.65845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.52173}],"Text":"engineering","Confidence":96.652084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57386}],"Text":"not","Confidence":96.623055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.505486}],"Text":"first","Confidence":96.53839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57461}],"Text":"has","Confidence":96.43927},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55012}],"Text":"of","Confidence":96.42961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.530685}],"Text":"then","Confidence":96.38499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55659}],"Text":"chapters","Confidence":96.37696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572586}],"Text":"processes","Confidence":96.29004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.46342}],"Text":"because","Confidence":96.24394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.45828}],"Text":"into","Confidence":96.20796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57073}],"Text":"basic","Confidence":96.1571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.44734}],"Text":"make","Confidence":96.13139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.44032}],"Text":"see","Confidence":96.082245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57374}],"Text":"are","Confidence":95.87033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5738}],"Text":"setting","Confidence":95.84679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"studi","Confidence":95.786736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5414}],"Text":"incorporate","Confidence":95.69554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.375595}],"Text":"how","Confidence":95.62915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54663}],"Text":"studio","Confidence":95.37657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.32467}],"Text":"configured","Confidence":95.27268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46937}],"Text":"them","Confidence":94.724075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57194}],"Text":"engine","Confidence":94.22648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56927}],"Text":"variable","Confidence":93.896835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.12031}],"Text":"is","Confidence":93.84215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.326836}],"Text":"introducing","Confidence":93.344604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5461}],"Text":"can","Confidence":92.95042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55924}],"Text":"data","Confidence":92.48165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572685}],"Text":"projects","Confidence":92.26518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56753}],"Text":"driver","Confidence":92.14771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54408}],"Text":"studio","Confidence":91.8951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.57552}],"Text":"end","Confidence":90.02867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.54762}],"Text":"configuring","Confidence":89.83334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.483604}],"Text":"welcome","Confidence":89.385216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.394585}],"Text":"visualization","Confidence":88.76207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.483}],"Text":"easy","Confidence":88.665535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57372}],"Text":"project","Confidence":88.224174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.557884}],"Text":"control","Confidence":87.82068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.54318}],"Text":"back","Confidence":87.6557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56191}],"Text":"application","Confidence":86.05788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.7964}],"Text":"if","Confidence":84.57483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.792145}],"Text":"fo","Confidence":84.545006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57108}],"Text":"points","Confidence":83.70647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53951}],"Text":"front","Confidence":83.48717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.49978}],"Text":"following","Confidence":81.6367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.541916}],"Text":"fist","Confidence":81.417595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565384}],"Text":"stat","Confidence":79.57614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56904}],"Text":"tool","Confidence":78.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.61688}],"Text":"create","Confidence":76.31817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.31894}],"Text":"inthe","Confidence":75.93269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.558556}],"Text":"visualization","Confidence":75.07709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.15687}],"Text":"compte","Confidence":71.20896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56596}],"Text":"slat","Confidence":66.70326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.213646}],"Text":"create","Confidence":66.49553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56466}],"Text":"screen","Confidence":65.83189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.99847}],"Text":"visualization","Confidence":64.07405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.41691}],"Text":"create","Confidence":60.918358},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.076065}],"Text":"visualization","Confidence":58.532444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.567085}],"Text":"variable","Confidence":58.281208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.92133}],"Text":"io","Confidence":57.442642},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03808}],"Text":"conflguring","Confidence":52.93885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57364}],"Text":"generally","Confidence":50.124}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 4f2ed0c..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56989}],"Text":"you","Confidence":96.98366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56894}],"Text":"we","Confidence":96.98256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5734}],"Text":"for","Confidence":96.9825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57074}],"Text":"has","Confidence":96.979004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567795}],"Text":"the","Confidence":96.97222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57149}],"Text":"of","Confidence":96.960594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57392}],"Text":"and","Confidence":96.95437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5731}],"Text":"create","Confidence":96.94208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57228}],"Text":"do","Confidence":96.935905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5746}],"Text":"properties","Confidence":96.883255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55587}],"Text":"data","Confidence":96.85573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56605}],"Text":"work","Confidence":96.846985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.543236}],"Text":"how","Confidence":96.80267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54681}],"Text":"studio","Confidence":96.7977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.560394}],"Text":"following","Confidence":96.78995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.54116}],"Text":"welcome","Confidence":96.78812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.53608}],"Text":"to","Confidence":96.75257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.544685}],"Text":"into","Confidence":96.747604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573685}],"Text":"steps","Confidence":96.58268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57131}],"Text":"basic","Confidence":96.573875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570885}],"Text":"project","Confidence":96.55119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57495}],"Text":"points","Confidence":96.53729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5029}],"Text":"in","Confidence":96.52031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56587}],"Text":"your","Confidence":96.50269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53001}],"Text":"need","Confidence":96.47989},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56685}],"Text":"what","Confidence":96.421585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57225}],"Text":"chapters","Confidence":96.32832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.545105}],"Text":"because","Confidence":96.304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573494}],"Text":"want","Confidence":96.29996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.4937}],"Text":"engineering","Confidence":96.28014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573906}],"Text":"anything","Confidence":96.1724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56064}],"Text":"make","Confidence":96.081535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56258}],"Text":"configured","Confidence":96.02444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53268}],"Text":"processes","Confidence":96.00654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.402306}],"Text":"parameters","Confidence":95.816124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57293}],"Text":"projects","Confidence":95.71864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5711}],"Text":"not","Confidence":95.48866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.32127}],"Text":"incorporate","Confidence":95.24893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.27452}],"Text":"this","Confidence":94.92162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55282}],"Text":"studio","Confidence":94.69204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.562904}],"Text":"engine","Confidence":94.26137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.2757}],"Text":"introducing","Confidence":94.23724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.131645}],"Text":"configuring","Confidence":93.92154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56949}],"Text":"easy","Confidence":93.77144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568504}],"Text":"are","Confidence":93.226845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.47646}],"Text":"been","Confidence":93.20395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57145}],"Text":"service","Confidence":93.19629},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54339}],"Text":"can","Confidence":92.96616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570854}],"Text":"project","Confidence":91.9861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.50373}],"Text":"if","Confidence":91.78904},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.80199}],"Text":"eate","Confidence":91.6139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.39697}],"Text":"see","Confidence":91.52462},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57349}],"Text":"end","Confidence":91.4805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56469}],"Text":"visualization","Confidence":91.07972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.70237}],"Text":"cr","Confidence":90.91658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.50359}],"Text":"visualization","Confidence":89.52515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57034}],"Text":"studio","Confidence":89.474464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57076}],"Text":"projects","Confidence":88.99129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574356}],"Text":"frame","Confidence":88.963974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53993}],"Text":"setting","Confidence":88.8297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.46573}],"Text":"front","Confidence":86.33836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.02468}],"Text":"ne","Confidence":86.17278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.551575}],"Text":"variable","Confidence":85.94697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.22562}],"Text":"is","Confidence":85.04786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.5882}],"Text":"visualization","Confidence":83.11743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.4872}],"Text":"end","Confidence":82.41038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.42686}],"Text":"inthe","Confidence":79.99127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.07384}],"Text":"execution","Confidence":79.51687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5526}],"Text":"tool","Confidence":78.9302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.33142}],"Text":"rand","Confidence":76.76077},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56966}],"Text":"then","Confidence":74.30611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.26264}],"Text":"dialogs","Confidence":73.6971},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56758}],"Text":"function","Confidence":72.487656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.03929}],"Text":"fo","Confidence":72.27505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54068}],"Text":"start","Confidence":70.1075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.77562}],"Text":"he","Confidence":68.75366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.23696}],"Text":"create","Confidence":66.65874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57007}],"Text":"them","Confidence":63.60759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55565}],"Text":"control","Confidence":63.151962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.216675}],"Text":"application","Confidence":63.046093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.10589}],"Text":"te","Confidence":58.741207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.572296}],"Text":"generally","Confidence":57.0212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.228874}],"Text":"fist","Confidence":54.593575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.356094}],"Text":"compile","Confidence":54.395325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55672}],"Text":"driver","Confidence":50.71212}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(24_24).json index 3c41ce0..97910f3 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57405}],"Text":"and","Confidence":96.987015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572266}],"Text":"do","Confidence":96.9781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56977}],"Text":"you","Confidence":96.977104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568794}],"Text":"the","Confidence":96.972496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56689}],"Text":"we","Confidence":96.9682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566246}],"Text":"been","Confidence":96.93807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56462}],"Text":"this","Confidence":96.93115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56174}],"Text":"need","Confidence":96.89978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57478}],"Text":"steps","Confidence":96.88076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56231}],"Text":"to","Confidence":96.87216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57062}],"Text":"processes","Confidence":96.83354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.571175}],"Text":"make","Confidence":96.81671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56528}],"Text":"work","Confidence":96.78527},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569466}],"Text":"create","Confidence":96.75624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55111}],"Text":"for","Confidence":96.66331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.52301}],"Text":"has","Confidence":96.661064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.532104}],"Text":"first","Confidence":96.659325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57363}],"Text":"project","Confidence":96.65602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.563545}],"Text":"studio","Confidence":96.60737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56425}],"Text":"of","Confidence":96.57913},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.49609}],"Text":"end","Confidence":96.47267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57212}],"Text":"parameters","Confidence":96.43732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5737}],"Text":"anything","Confidence":96.41214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57416}],"Text":"studio","Confidence":96.40172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574905}],"Text":"studio","Confidence":96.340454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4939}],"Text":"in","Confidence":96.306496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574715}],"Text":"properties","Confidence":96.304405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.47008}],"Text":"because","Confidence":96.290565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.566864}],"Text":"want","Confidence":96.26753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55485}],"Text":"basic","Confidence":96.21695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57234}],"Text":"are","Confidence":96.21375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.49877}],"Text":"welcome","Confidence":96.17545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57466}],"Text":"engineering","Confidence":95.90323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57189}],"Text":"not","Confidence":95.90207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.427956}],"Text":"configured","Confidence":95.76432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574066}],"Text":"frame","Confidence":95.739845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.440285}],"Text":"introducing","Confidence":95.46049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57104}],"Text":"them","Confidence":95.13711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56851}],"Text":"configuring","Confidence":94.650894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.508575}],"Text":"easy","Confidence":94.30587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.112335}],"Text":"what","Confidence":93.78637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.06985}],"Text":"inthe","Confidence":93.48895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53859}],"Text":"setting","Confidence":92.79116},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.0423}],"Text":"generalty","Confidence":91.97709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.270424}],"Text":"see","Confidence":91.964836},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.845146}],"Text":"eate","Confidence":91.91604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.820915}],"Text":"connection","Confidence":91.74638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.74955}],"Text":"chapters","Confidence":91.24685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56211}],"Text":"control","Confidence":91.02561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56044}],"Text":"function","Confidence":89.957954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.52401}],"Text":"execution","Confidence":89.32735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.31208}],"Text":"visualization","Confidence":88.18455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.14686}],"Text":"create","Confidence":87.028015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55691}],"Text":"projects","Confidence":85.670815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50665}],"Text":"driver","Confidence":84.480804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.47519}],"Text":"visualization","Confidence":84.26696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":98.78652}],"Text":"your","Confidence":83.29301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48598}],"Text":"then","Confidence":82.47511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54587}],"Text":"engine","Confidence":81.605705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53901}],"Text":"fo","Confidence":81.1997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.44089}],"Text":"following","Confidence":78.74048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.025635}],"Text":"visualization","Confidence":76.239525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5724}],"Text":"variable","Confidence":75.9024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.39171}],"Text":"cr","Confidence":74.74199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55644}],"Text":"toot","Confidence":70.63089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.11272}],"Text":"if","Confidence":69.23132},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.516235}],"Text":"eta","Confidence":68.41844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.327255}],"Text":"aa","Confidence":67.29081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":94.88056}],"Text":"front","Confidence":64.16391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":94.82099}],"Text":"dialogs","Confidence":62.826344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.6548}],"Text":"ast","Confidence":61.49466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.88294}],"Text":"en","Confidence":51.63637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55177}],"Text":"fst","Confidence":51.59277}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57405}],"Text":"and","Confidence":96.987015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572266}],"Text":"do","Confidence":96.9781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56977}],"Text":"you","Confidence":96.977104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568794}],"Text":"the","Confidence":96.972496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56689}],"Text":"we","Confidence":96.9682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566246}],"Text":"been","Confidence":96.93807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56462}],"Text":"this","Confidence":96.93115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56174}],"Text":"need","Confidence":96.89978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57478}],"Text":"steps","Confidence":96.88076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56231}],"Text":"to","Confidence":96.87216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57062}],"Text":"processes","Confidence":96.83354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.571175}],"Text":"make","Confidence":96.81671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56528}],"Text":"work","Confidence":96.78527},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569466}],"Text":"create","Confidence":96.75624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55111}],"Text":"for","Confidence":96.66331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.52301}],"Text":"has","Confidence":96.661064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.532104}],"Text":"first","Confidence":96.659325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57363}],"Text":"project","Confidence":96.65602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.563545}],"Text":"studio","Confidence":96.60737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56425}],"Text":"of","Confidence":96.57913},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.49609}],"Text":"end","Confidence":96.47267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57212}],"Text":"parameters","Confidence":96.43732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5737}],"Text":"anything","Confidence":96.41214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57416}],"Text":"studio","Confidence":96.40172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574905}],"Text":"studio","Confidence":96.340454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4939}],"Text":"in","Confidence":96.306496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574715}],"Text":"properties","Confidence":96.304405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.47008}],"Text":"because","Confidence":96.290565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.566864}],"Text":"want","Confidence":96.26753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55485}],"Text":"basic","Confidence":96.21695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57234}],"Text":"are","Confidence":96.21375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.49877}],"Text":"welcome","Confidence":96.17545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57466}],"Text":"engineering","Confidence":95.90323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57189}],"Text":"not","Confidence":95.90207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.427956}],"Text":"configured","Confidence":95.76432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574066}],"Text":"frame","Confidence":95.739845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.440285}],"Text":"introducing","Confidence":95.46049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57104}],"Text":"them","Confidence":95.13711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56851}],"Text":"configuring","Confidence":94.650894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.508575}],"Text":"easy","Confidence":94.30587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.112335}],"Text":"what","Confidence":93.78637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.06985}],"Text":"inthe","Confidence":93.48895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53859}],"Text":"setting","Confidence":92.79116},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.0423}],"Text":"generalty","Confidence":91.97709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.270424}],"Text":"see","Confidence":91.964836},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.845146}],"Text":"eate","Confidence":91.91604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.820915}],"Text":"connection","Confidence":91.74638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.74955}],"Text":"chapters","Confidence":91.24685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56211}],"Text":"control","Confidence":91.02561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56044}],"Text":"function","Confidence":89.957954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.52401}],"Text":"execution","Confidence":89.32735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.31208}],"Text":"visualization","Confidence":88.18455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.14686}],"Text":"create","Confidence":87.028015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55691}],"Text":"projects","Confidence":85.670815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50665}],"Text":"driver","Confidence":84.480804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.47519}],"Text":"visualization","Confidence":84.26696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":98.78652}],"Text":"your","Confidence":83.29301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48598}],"Text":"then","Confidence":82.47511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54587}],"Text":"engine","Confidence":81.605705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53901}],"Text":"fo","Confidence":81.1997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.44089}],"Text":"following","Confidence":78.74048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.025635}],"Text":"visualization","Confidence":76.239525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5724}],"Text":"variable","Confidence":75.9024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.39171}],"Text":"cr","Confidence":74.74199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55644}],"Text":"toot","Confidence":70.63089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.11272}],"Text":"if","Confidence":69.23132},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.516235}],"Text":"eta","Confidence":68.41844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.327255}],"Text":"aa","Confidence":67.29081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":94.88056}],"Text":"front","Confidence":64.16391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":94.82099}],"Text":"dialogs","Confidence":62.826344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.6548}],"Text":"ast","Confidence":61.49466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.88294}],"Text":"en","Confidence":51.63637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55177}],"Text":"fst","Confidence":51.59277}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(0%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(10%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(10%).json deleted file mode 100644 index e2af88a..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56912}],"Text":"and","Confidence":96.98388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.568016}],"Text":"you","Confidence":96.976135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56677}],"Text":"end","Confidence":96.96742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56251}],"Text":"to","Confidence":96.937546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56251}],"Text":"for","Confidence":96.937546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.571945}],"Text":"basic","Confidence":96.923134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57168}],"Text":"we","Confidence":96.89096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.554474}],"Text":"has","Confidence":96.88134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57077}],"Text":"need","Confidence":96.8524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.569214}],"Text":"what","Confidence":96.82871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57044}],"Text":"the","Confidence":96.814575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57461}],"Text":"first","Confidence":96.73796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573784}],"Text":"engine","Confidence":96.652954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55685}],"Text":"your","Confidence":96.63039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.535164}],"Text":"projects","Confidence":96.60747},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.514854}],"Text":"project","Confidence":96.60396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54791}],"Text":"engineering","Confidence":96.57851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55244}],"Text":"front","Confidence":96.545906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573654}],"Text":"steps","Confidence":96.54315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55568}],"Text":"in","Confidence":96.53752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573524}],"Text":"make","Confidence":96.511696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57247}],"Text":"want","Confidence":96.49187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.570305}],"Text":"studio","Confidence":96.49141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.469666}],"Text":"of","Confidence":96.28766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.46217}],"Text":"welcome","Confidence":96.2352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57048}],"Text":"create","Confidence":96.062164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53843}],"Text":"work","Confidence":96.01779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.408775}],"Text":"data","Confidence":95.86143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.36702}],"Text":"can","Confidence":95.56912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.542206}],"Text":"how","Confidence":95.33296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.410126}],"Text":"incorporate","Confidence":94.93679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.456535}],"Text":"project","Confidence":94.670235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56571}],"Text":"start","Confidence":94.579315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49163}],"Text":"introducing","Confidence":94.52398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57385}],"Text":"chapters","Confidence":94.5036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56701}],"Text":"configured","Confidence":94.37391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.0535}],"Text":"end","Confidence":93.37449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5688}],"Text":"are","Confidence":93.26583},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57176}],"Text":"then","Confidence":93.1234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.01502}],"Text":"easy","Confidence":93.10516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57476}],"Text":"points","Confidence":93.03726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5475}],"Text":"been","Confidence":92.61049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55278}],"Text":"studio","Confidence":92.498795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.92746}],"Text":"if","Confidence":92.49222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.545425}],"Text":"visualization","Confidence":92.268234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56648}],"Text":"service","Confidence":91.210075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.66873}],"Text":"tool","Confidence":90.681145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.45028}],"Text":"following","Confidence":90.38071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56824}],"Text":"application","Confidence":90.18886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.568634}],"Text":"see","Confidence":89.658585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.28784}],"Text":"configuring","Confidence":85.82005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.77043}],"Text":"is","Confidence":84.393005},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.904686}],"Text":"inko","Confidence":80.9388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.86446}],"Text":"this","Confidence":80.53032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.1139}],"Text":"processes","Confidence":51.797314}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(100%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(20%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(20%).json index d245b76..1ca41ff 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.571976}],"Text":"for","Confidence":97.00304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57184}],"Text":"we","Confidence":96.99707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574524}],"Text":"the","Confidence":96.98254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5719}],"Text":"then","Confidence":96.97883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57062}],"Text":"steps","Confidence":96.97071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56947}],"Text":"to","Confidence":96.9698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57431}],"Text":"end","Confidence":96.96751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57436}],"Text":"start","Confidence":96.95719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564156}],"Text":"and","Confidence":96.94909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.563484}],"Text":"in","Confidence":96.92876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574196}],"Text":"project","Confidence":96.90092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57466}],"Text":"first","Confidence":96.90021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56479}],"Text":"your","Confidence":96.890724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57051}],"Text":"been","Confidence":96.88795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.572495}],"Text":"you","Confidence":96.88623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57338}],"Text":"service","Confidence":96.80811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5653}],"Text":"create","Confidence":96.80573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.557495}],"Text":"how","Confidence":96.77453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53748}],"Text":"front","Confidence":96.762405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.562355}],"Text":"chapters","Confidence":96.75903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56931}],"Text":"has","Confidence":96.72942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574455}],"Text":"execution","Confidence":96.698265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57352}],"Text":"configured","Confidence":96.69489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.52216}],"Text":"welcome","Confidence":96.65516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57361}],"Text":"make","Confidence":96.65052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52826}],"Text":"need","Confidence":96.6482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572624}],"Text":"studio","Confidence":96.64513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.571785}],"Text":"what","Confidence":96.62435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57452}],"Text":"engineering","Confidence":96.575516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572014}],"Text":"work","Confidence":96.491905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574265}],"Text":"basic","Confidence":96.4472},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56303}],"Text":"visualization","Confidence":96.39277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.476364}],"Text":"studio","Confidence":96.33455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.561066}],"Text":"connection","Confidence":96.31892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52665}],"Text":"data","Confidence":96.17032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574524}],"Text":"projects","Confidence":96.144165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41681}],"Text":"of","Confidence":95.91765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56106}],"Text":"frame","Confidence":95.81161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.39258}],"Text":"can","Confidence":95.748055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56005}],"Text":"following","Confidence":95.46105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56213}],"Text":"into","Confidence":95.28302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57288}],"Text":"project","Confidence":94.98474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57424}],"Text":"want","Confidence":94.84524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49246}],"Text":"this","Confidence":94.62285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573204}],"Text":"studio","Confidence":94.510086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57425}],"Text":"see","Confidence":94.47795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.571175}],"Text":"points","Confidence":94.334274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.44953}],"Text":"is","Confidence":93.80207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57284}],"Text":"are","Confidence":93.30141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56723}],"Text":"engine","Confidence":93.21189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.4838}],"Text":"easy","Confidence":93.020935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.99556}],"Text":"if","Confidence":92.9689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574585}],"Text":"driver","Confidence":92.27351},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.89511}],"Text":"it","Confidence":91.71271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.523544}],"Text":"incorporate","Confidence":90.50374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.372986}],"Text":"visualization","Confidence":90.14673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.31134}],"Text":"end","Confidence":88.17938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50263}],"Text":"tool","Confidence":87.87319},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.81599}],"Text":"iniroducing","Confidence":84.67224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.522194}],"Text":"application","Confidence":84.55704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.611694}],"Text":"configuring","Confidence":76.28188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.02361}],"Text":"compile","Confidence":59.33963}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.571976}],"Text":"for","Confidence":97.00304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57184}],"Text":"we","Confidence":96.99707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574524}],"Text":"the","Confidence":96.98254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5719}],"Text":"then","Confidence":96.97883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57062}],"Text":"steps","Confidence":96.97071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56947}],"Text":"to","Confidence":96.9698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57431}],"Text":"end","Confidence":96.96751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57436}],"Text":"start","Confidence":96.95719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564156}],"Text":"and","Confidence":96.94909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.563484}],"Text":"in","Confidence":96.92876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574196}],"Text":"project","Confidence":96.90092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57466}],"Text":"first","Confidence":96.90021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56479}],"Text":"your","Confidence":96.890724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57051}],"Text":"been","Confidence":96.88795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.572495}],"Text":"you","Confidence":96.88623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57338}],"Text":"service","Confidence":96.80811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5653}],"Text":"create","Confidence":96.80573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.557495}],"Text":"how","Confidence":96.77453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53748}],"Text":"front","Confidence":96.762405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.562355}],"Text":"chapters","Confidence":96.75903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56931}],"Text":"has","Confidence":96.72942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574455}],"Text":"execution","Confidence":96.698265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57352}],"Text":"configured","Confidence":96.69489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.52216}],"Text":"welcome","Confidence":96.65516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57361}],"Text":"make","Confidence":96.65052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52826}],"Text":"need","Confidence":96.6482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572624}],"Text":"studio","Confidence":96.64513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.571785}],"Text":"what","Confidence":96.62435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57452}],"Text":"engineering","Confidence":96.575516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572014}],"Text":"work","Confidence":96.491905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574265}],"Text":"basic","Confidence":96.4472},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56303}],"Text":"visualization","Confidence":96.39277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.476364}],"Text":"studio","Confidence":96.33455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.561066}],"Text":"connection","Confidence":96.31892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52665}],"Text":"data","Confidence":96.17032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574524}],"Text":"projects","Confidence":96.144165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41681}],"Text":"of","Confidence":95.91765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56106}],"Text":"frame","Confidence":95.81161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.39258}],"Text":"can","Confidence":95.748055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56005}],"Text":"following","Confidence":95.46105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56213}],"Text":"into","Confidence":95.28302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57288}],"Text":"project","Confidence":94.98474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57424}],"Text":"want","Confidence":94.84524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49246}],"Text":"this","Confidence":94.62285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573204}],"Text":"studio","Confidence":94.510086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57425}],"Text":"see","Confidence":94.47795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.571175}],"Text":"points","Confidence":94.334274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.44953}],"Text":"is","Confidence":93.80207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57284}],"Text":"are","Confidence":93.30141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56723}],"Text":"engine","Confidence":93.21189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.4838}],"Text":"easy","Confidence":93.020935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.99556}],"Text":"if","Confidence":92.9689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574585}],"Text":"driver","Confidence":92.27351},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.89511}],"Text":"it","Confidence":91.71271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.523544}],"Text":"incorporate","Confidence":90.50374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.372986}],"Text":"visualization","Confidence":90.14673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.31134}],"Text":"end","Confidence":88.17938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50263}],"Text":"tool","Confidence":87.87319},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.81599}],"Text":"iniroducing","Confidence":84.67224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.522194}],"Text":"application","Confidence":84.55704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.611694}],"Text":"configuring","Confidence":76.28188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.02361}],"Text":"compile","Confidence":59.33963}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(40%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(40%).json index 70ed4a3..e62e451 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57257}],"Text":"we","Confidence":97.00732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57448}],"Text":"and","Confidence":96.99713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56946}],"Text":"you","Confidence":96.9862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57008}],"Text":"for","Confidence":96.974464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574036}],"Text":"service","Confidence":96.97141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57188}],"Text":"the","Confidence":96.956184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5657}],"Text":"your","Confidence":96.95059},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57486}],"Text":"points","Confidence":96.9484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573425}],"Text":"make","Confidence":96.93375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57398}],"Text":"engine","Confidence":96.918076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57221}],"Text":"into","Confidence":96.91611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55938}],"Text":"in","Confidence":96.91564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57413}],"Text":"steps","Confidence":96.887314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57407}],"Text":"basic","Confidence":96.8807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5649}],"Text":"do","Confidence":96.868706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57454}],"Text":"not","Confidence":96.868706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56373}],"Text":"see","Confidence":96.86611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5702}],"Text":"create","Confidence":96.864456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55179}],"Text":"can","Confidence":96.86253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57001}],"Text":"to","Confidence":96.85083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57084}],"Text":"work","Confidence":96.83556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.554306}],"Text":"has","Confidence":96.809906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57407}],"Text":"project","Confidence":96.801476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57431}],"Text":"want","Confidence":96.70345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57432}],"Text":"are","Confidence":96.68703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.52417}],"Text":"front","Confidence":96.66918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.557495}],"Text":"been","Confidence":96.65945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57372}],"Text":"need","Confidence":96.64848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.524}],"Text":"execution","Confidence":96.59807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5748}],"Text":"parameters","Confidence":96.577805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53317}],"Text":"it","Confidence":96.52666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574745}],"Text":"screen","Confidence":96.52065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50009}],"Text":"this","Confidence":96.50063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.531425}],"Text":"visualization","Confidence":96.462204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57482}],"Text":"first","Confidence":96.40495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57273}],"Text":"connection","Confidence":96.40088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.560585}],"Text":"engineering","Confidence":96.38296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.49627}],"Text":"studio","Confidence":96.32738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.570206}],"Text":"incorporate","Confidence":96.3025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.562485}],"Text":"easy","Confidence":96.25698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57146}],"Text":"anything","Confidence":96.24286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55515}],"Text":"project","Confidence":96.23118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54812}],"Text":"then","Confidence":96.17914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56686}],"Text":"frame","Confidence":96.1689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56804}],"Text":"because","Confidence":96.107704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569305}],"Text":"processes","Confidence":96.096855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.42761}],"Text":"if","Confidence":95.9933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566734}],"Text":"them","Confidence":95.975876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57273}],"Text":"function","Confidence":95.95689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.41977}],"Text":"data","Confidence":95.93837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.566315}],"Text":"how","Confidence":95.8502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57297}],"Text":"following","Confidence":95.71177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55953}],"Text":"of","Confidence":95.70328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.54752}],"Text":"end","Confidence":95.70328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.38536}],"Text":"introducing","Confidence":95.6975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57086}],"Text":"control","Confidence":95.5691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.27995}],"Text":"start","Confidence":94.95969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54214}],"Text":"application","Confidence":94.84683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.25665}],"Text":"dialogs","Confidence":94.79658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54879}],"Text":"setting","Confidence":94.6113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57103}],"Text":"chapters","Confidence":94.420166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5732}],"Text":"end","Confidence":94.18134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57344}],"Text":"projects","Confidence":93.902596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.0431}],"Text":"whal","Confidence":92.50514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56153}],"Text":"visualization","Confidence":92.26752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57461}],"Text":"studio","Confidence":91.73646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.558975}],"Text":"what","Confidence":90.478966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.558655}],"Text":"is","Confidence":89.91056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.3001}],"Text":"configuring","Confidence":88.10069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5729}],"Text":"variable","Confidence":87.94023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.490906}],"Text":"driver","Confidence":87.608505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5414}],"Text":"tool","Confidence":86.40079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57119}],"Text":"configured","Confidence":79.79753},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04306}],"Text":"properbes","Confidence":77.19818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.569016}],"Text":"generally","Confidence":73.74512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.435196}],"Text":"compile","Confidence":73.33142}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57257}],"Text":"we","Confidence":97.00732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57448}],"Text":"and","Confidence":96.99713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56946}],"Text":"you","Confidence":96.9862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57008}],"Text":"for","Confidence":96.974464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574036}],"Text":"service","Confidence":96.97141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57188}],"Text":"the","Confidence":96.956184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5657}],"Text":"your","Confidence":96.95059},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57486}],"Text":"points","Confidence":96.9484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573425}],"Text":"make","Confidence":96.93375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57398}],"Text":"engine","Confidence":96.918076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57221}],"Text":"into","Confidence":96.91611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55938}],"Text":"in","Confidence":96.91564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57413}],"Text":"steps","Confidence":96.887314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57407}],"Text":"basic","Confidence":96.8807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5649}],"Text":"do","Confidence":96.868706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57454}],"Text":"not","Confidence":96.868706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56373}],"Text":"see","Confidence":96.86611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5702}],"Text":"create","Confidence":96.864456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55179}],"Text":"can","Confidence":96.86253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57001}],"Text":"to","Confidence":96.85083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57084}],"Text":"work","Confidence":96.83556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.554306}],"Text":"has","Confidence":96.809906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57407}],"Text":"project","Confidence":96.801476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57431}],"Text":"want","Confidence":96.70345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57432}],"Text":"are","Confidence":96.68703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.52417}],"Text":"front","Confidence":96.66918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.557495}],"Text":"been","Confidence":96.65945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57372}],"Text":"need","Confidence":96.64848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.524}],"Text":"execution","Confidence":96.59807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5748}],"Text":"parameters","Confidence":96.577805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53317}],"Text":"it","Confidence":96.52666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574745}],"Text":"screen","Confidence":96.52065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50009}],"Text":"this","Confidence":96.50063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.531425}],"Text":"visualization","Confidence":96.462204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57482}],"Text":"first","Confidence":96.40495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57273}],"Text":"connection","Confidence":96.40088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.560585}],"Text":"engineering","Confidence":96.38296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.49627}],"Text":"studio","Confidence":96.32738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.570206}],"Text":"incorporate","Confidence":96.3025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.562485}],"Text":"easy","Confidence":96.25698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57146}],"Text":"anything","Confidence":96.24286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55515}],"Text":"project","Confidence":96.23118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54812}],"Text":"then","Confidence":96.17914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56686}],"Text":"frame","Confidence":96.1689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56804}],"Text":"because","Confidence":96.107704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569305}],"Text":"processes","Confidence":96.096855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.42761}],"Text":"if","Confidence":95.9933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566734}],"Text":"them","Confidence":95.975876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57273}],"Text":"function","Confidence":95.95689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.41977}],"Text":"data","Confidence":95.93837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.566315}],"Text":"how","Confidence":95.8502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57297}],"Text":"following","Confidence":95.71177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55953}],"Text":"of","Confidence":95.70328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.54752}],"Text":"end","Confidence":95.70328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.38536}],"Text":"introducing","Confidence":95.6975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57086}],"Text":"control","Confidence":95.5691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.27995}],"Text":"start","Confidence":94.95969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54214}],"Text":"application","Confidence":94.84683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.25665}],"Text":"dialogs","Confidence":94.79658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54879}],"Text":"setting","Confidence":94.6113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57103}],"Text":"chapters","Confidence":94.420166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5732}],"Text":"end","Confidence":94.18134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57344}],"Text":"projects","Confidence":93.902596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.0431}],"Text":"whal","Confidence":92.50514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56153}],"Text":"visualization","Confidence":92.26752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57461}],"Text":"studio","Confidence":91.73646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.558975}],"Text":"what","Confidence":90.478966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.558655}],"Text":"is","Confidence":89.91056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.3001}],"Text":"configuring","Confidence":88.10069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5729}],"Text":"variable","Confidence":87.94023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.490906}],"Text":"driver","Confidence":87.608505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5414}],"Text":"tool","Confidence":86.40079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57119}],"Text":"configured","Confidence":79.79753},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04306}],"Text":"properbes","Confidence":77.19818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.569016}],"Text":"generally","Confidence":73.74512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.435196}],"Text":"compile","Confidence":73.33142}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(50%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(50%).json index db347b5..24d1e1c 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57471}],"Text":"first","Confidence":97.00301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56992}],"Text":"you","Confidence":96.98945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57427}],"Text":"and","Confidence":96.97055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566826}],"Text":"been","Confidence":96.961365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57385}],"Text":"studio","Confidence":96.95402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56368}],"Text":"need","Confidence":96.945755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570656}],"Text":"for","Confidence":96.9445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57464}],"Text":"projects","Confidence":96.93035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57009}],"Text":"we","Confidence":96.92048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57338}],"Text":"are","Confidence":96.91848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556915}],"Text":"the","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.561714}],"Text":"has","Confidence":96.891396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.564316}],"Text":"your","Confidence":96.874664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57135}],"Text":"parameters","Confidence":96.86295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.565056}],"Text":"work","Confidence":96.85125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5703}],"Text":"in","Confidence":96.80566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56946}],"Text":"to","Confidence":96.79877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572525}],"Text":"steps","Confidence":96.78184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55546}],"Text":"project","Confidence":96.76115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57146}],"Text":"create","Confidence":96.74861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"points","Confidence":96.710075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.564705}],"Text":"because","Confidence":96.704384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56953}],"Text":"not","Confidence":96.703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53109}],"Text":"do","Confidence":96.69041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53021}],"Text":"what","Confidence":96.67571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52872}],"Text":"this","Confidence":96.65924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56829}],"Text":"application","Confidence":96.55496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57435}],"Text":"engineering","Confidence":96.54147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56547}],"Text":"then","Confidence":96.518555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.545235}],"Text":"see","Confidence":96.50562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57147}],"Text":"connection","Confidence":96.50069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56918}],"Text":"service","Confidence":96.46642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57241}],"Text":"make","Confidence":96.44996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.469055}],"Text":"visualization","Confidence":96.2834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47167}],"Text":"how","Confidence":96.23602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57257}],"Text":"setting","Confidence":96.2242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56639}],"Text":"execution","Confidence":96.20693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574615}],"Text":"variable","Confidence":96.17304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54374}],"Text":"chapters","Confidence":96.1284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57468}],"Text":"frame","Confidence":96.09039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.43558}],"Text":"want","Confidence":96.04906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574425}],"Text":"screen","Confidence":95.87782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57311}],"Text":"data","Confidence":95.695114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56981}],"Text":"them","Confidence":95.58757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.34243}],"Text":"front","Confidence":95.397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.568634}],"Text":"start","Confidence":95.39416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55465}],"Text":"of","Confidence":95.25518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56262}],"Text":"into","Confidence":95.230835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56142}],"Text":"can","Confidence":95.16582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.566696}],"Text":"configured","Confidence":95.14878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57463}],"Text":"engine","Confidence":95.13716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.29938}],"Text":"end","Confidence":95.09565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.47969}],"Text":"incorporate","Confidence":94.76324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.25031}],"Text":"introducing","Confidence":94.752174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.45737}],"Text":"configuring","Confidence":94.35081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.52039}],"Text":"project","Confidence":94.277054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5728}],"Text":"generally","Confidence":94.25569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56754}],"Text":"control","Confidence":94.20548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56911}],"Text":"following","Confidence":93.61851},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.037445}],"Text":"engineenng","Confidence":92.95654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574295}],"Text":"function","Confidence":92.46389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54147}],"Text":"it","Confidence":92.421875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56922}],"Text":"end","Confidence":92.09043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57211}],"Text":"easy","Confidence":92.04991},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.03965}],"Text":"bastc","Confidence":91.892715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.96377}],"Text":"compile","Confidence":91.61533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53562}],"Text":"tool","Confidence":90.2374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53871}],"Text":"driver","Confidence":89.22253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56284}],"Text":"processes","Confidence":87.05321},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.96292}],"Text":"configunng","Confidence":86.77495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57102}],"Text":"anything","Confidence":86.64348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.82563}],"Text":"lo","Confidence":84.77939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.53163}],"Text":"dialogs","Confidence":75.72142},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04092}],"Text":"properbes","Confidence":63.984695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.53742}],"Text":"ts","Confidence":61.761932}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57471}],"Text":"first","Confidence":97.00301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56992}],"Text":"you","Confidence":96.98945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57427}],"Text":"and","Confidence":96.97055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566826}],"Text":"been","Confidence":96.961365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57385}],"Text":"studio","Confidence":96.95402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56368}],"Text":"need","Confidence":96.945755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570656}],"Text":"for","Confidence":96.9445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57464}],"Text":"projects","Confidence":96.93035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57009}],"Text":"we","Confidence":96.92048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57338}],"Text":"are","Confidence":96.91848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556915}],"Text":"the","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.561714}],"Text":"has","Confidence":96.891396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.564316}],"Text":"your","Confidence":96.874664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57135}],"Text":"parameters","Confidence":96.86295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.565056}],"Text":"work","Confidence":96.85125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5703}],"Text":"in","Confidence":96.80566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56946}],"Text":"to","Confidence":96.79877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572525}],"Text":"steps","Confidence":96.78184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55546}],"Text":"project","Confidence":96.76115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57146}],"Text":"create","Confidence":96.74861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"points","Confidence":96.710075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.564705}],"Text":"because","Confidence":96.704384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56953}],"Text":"not","Confidence":96.703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53109}],"Text":"do","Confidence":96.69041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53021}],"Text":"what","Confidence":96.67571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52872}],"Text":"this","Confidence":96.65924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56829}],"Text":"application","Confidence":96.55496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57435}],"Text":"engineering","Confidence":96.54147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56547}],"Text":"then","Confidence":96.518555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.545235}],"Text":"see","Confidence":96.50562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57147}],"Text":"connection","Confidence":96.50069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56918}],"Text":"service","Confidence":96.46642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57241}],"Text":"make","Confidence":96.44996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.469055}],"Text":"visualization","Confidence":96.2834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.47167}],"Text":"how","Confidence":96.23602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57257}],"Text":"setting","Confidence":96.2242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56639}],"Text":"execution","Confidence":96.20693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574615}],"Text":"variable","Confidence":96.17304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54374}],"Text":"chapters","Confidence":96.1284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57468}],"Text":"frame","Confidence":96.09039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.43558}],"Text":"want","Confidence":96.04906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574425}],"Text":"screen","Confidence":95.87782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57311}],"Text":"data","Confidence":95.695114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56981}],"Text":"them","Confidence":95.58757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.34243}],"Text":"front","Confidence":95.397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.568634}],"Text":"start","Confidence":95.39416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55465}],"Text":"of","Confidence":95.25518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56262}],"Text":"into","Confidence":95.230835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56142}],"Text":"can","Confidence":95.16582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.566696}],"Text":"configured","Confidence":95.14878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57463}],"Text":"engine","Confidence":95.13716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.29938}],"Text":"end","Confidence":95.09565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.47969}],"Text":"incorporate","Confidence":94.76324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.25031}],"Text":"introducing","Confidence":94.752174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.45737}],"Text":"configuring","Confidence":94.35081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.52039}],"Text":"project","Confidence":94.277054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5728}],"Text":"generally","Confidence":94.25569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56754}],"Text":"control","Confidence":94.20548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56911}],"Text":"following","Confidence":93.61851},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.037445}],"Text":"engineenng","Confidence":92.95654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574295}],"Text":"function","Confidence":92.46389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54147}],"Text":"it","Confidence":92.421875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56922}],"Text":"end","Confidence":92.09043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57211}],"Text":"easy","Confidence":92.04991},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.03965}],"Text":"bastc","Confidence":91.892715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.96377}],"Text":"compile","Confidence":91.61533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53562}],"Text":"tool","Confidence":90.2374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53871}],"Text":"driver","Confidence":89.22253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56284}],"Text":"processes","Confidence":87.05321},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.96292}],"Text":"configunng","Confidence":86.77495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57102}],"Text":"anything","Confidence":86.64348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.82563}],"Text":"lo","Confidence":84.77939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.53163}],"Text":"dialogs","Confidence":75.72142},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04092}],"Text":"properbes","Confidence":63.984695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.53742}],"Text":"ts","Confidence":61.761932}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(70%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(70%).json index 64b1423..097208b 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57476}],"Text":"first","Confidence":97.00447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.557236}],"Text":"and","Confidence":96.84352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570465}],"Text":"create","Confidence":96.81606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57418}],"Text":"steps","Confidence":96.728294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.564316}],"Text":"next","Confidence":96.64969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.557236}],"Text":"data","Confidence":96.63466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52048}],"Text":"connection","Confidence":96.47739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.565674}],"Text":"for","Confidence":96.429016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.4907}],"Text":"execution","Confidence":96.28316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.435425}],"Text":"frame","Confidence":96.04799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56815}],"Text":"function","Confidence":96.03513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57293}],"Text":"visualization","Confidence":96.016754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5456}],"Text":"we","Confidence":95.84602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.546326}],"Text":"engine","Confidence":95.78438},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.38402}],"Text":"you","Confidence":95.688126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.503105}],"Text":"what","Confidence":95.626114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.50362}],"Text":"screen","Confidence":95.53621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56336}],"Text":"back","Confidence":95.47051},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57102}],"Text":"are","Confidence":95.40021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.517525}],"Text":"need","Confidence":95.34891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50334}],"Text":"studio","Confidence":95.29193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50334}],"Text":"the","Confidence":94.99897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53993}],"Text":"see","Confidence":94.99897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.340546}],"Text":"inte","Confidence":94.80775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.36227}],"Text":"to","Confidence":94.03095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51085}],"Text":"do","Confidence":94.02964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.13653}],"Text":"then","Confidence":93.9557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.36712}],"Text":"work","Confidence":93.90077},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.02753}],"Text":"introducing","Confidence":93.19269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56507}],"Text":"your","Confidence":93.07657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.40471}],"Text":"driver","Confidence":93.04756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.352356}],"Text":"ihe","Confidence":92.99031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5325}],"Text":"of","Confidence":92.94547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57241}],"Text":"variable","Confidence":92.82666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48077}],"Text":"in","Confidence":92.195496},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.98701}],"Text":"follawing","Confidence":91.51309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.407555}],"Text":"anything","Confidence":91.48577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.498886}],"Text":"tool","Confidence":91.43753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.91329}],"Text":"tor","Confidence":91.28822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54967}],"Text":"generally","Confidence":88.886795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.38525}],"Text":"easy","Confidence":88.69673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.31227}],"Text":"can","Confidence":88.185905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.26157}],"Text":"deen","Confidence":87.831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57035}],"Text":"processes","Confidence":87.72065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.544754}],"Text":"it","Confidence":87.51507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":98.20956}],"Text":"has","Confidence":87.46688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.18885}],"Text":"service","Confidence":86.501335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.68988}],"Text":"dialogs","Confidence":86.02577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.38672}],"Text":"application","Confidence":84.83423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.99112}],"Text":"engineering","Confidence":83.788864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.58146}],"Text":"vou","Confidence":83.07021},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0131","Confidence":97.60943}],"Text":"\u0131l","Confidence":82.27774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":97.43159}],"Text":"basic","Confidence":82.02109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.73296}],"Text":"how","Confidence":81.32711},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.330444}],"Text":"incorperate","Confidence":81.3131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.35529}],"Text":"points","Confidence":79.1578},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.94427}],"Text":"confguung","Confidence":77.68369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.516556}],"Text":"ts","Confidence":75.61592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.329926}],"Text":"yout","Confidence":73.82828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.778336}],"Text":"tc","Confidence":72.640366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.552956}],"Text":"control","Confidence":71.72562},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.94701}],"Text":"cont-qured","Confidence":71.66001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53254}],"Text":"start","Confidence":70.95837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51599}],"Text":"project","Confidence":70.67467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56381}],"Text":"setting","Confidence":70.599365},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.33425}],"Text":"visualizalion","Confidence":70.54554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565636}],"Text":"selling","Confidence":70.23682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.685715}],"Text":"co","Confidence":69.8},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.48764}],"Text":"front","Confidence":69.4344},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":96.67363}],"Text":"lnginccring","Confidence":69.342896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.40557}],"Text":"youl","Confidence":69.17117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.40727}],"Text":"end","Confidence":67.675156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.500824}],"Text":"ent","Confidence":66.73535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.517494}],"Text":"star","Confidence":66.46611},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00802}],"Text":"proyects","Confidence":66.2034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.463234}],"Text":"nerd","Confidence":65.38071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.37895}],"Text":"hew","Confidence":63.98892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.978165}],"Text":"chapters","Confidence":63.658424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.54222}],"Text":"because","Confidence":62.585392},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.99841}],"Text":"proyents","Confidence":61.293144},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.90501}],"Text":"coniple","Confidence":55.894722},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.126366}],"Text":"insine_","Confidence":52.593468},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.80815}],"Text":"properics","Confidence":50.90166}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57476}],"Text":"first","Confidence":97.00447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.557236}],"Text":"and","Confidence":96.84352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570465}],"Text":"create","Confidence":96.81606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57418}],"Text":"steps","Confidence":96.728294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.564316}],"Text":"next","Confidence":96.64969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.557236}],"Text":"data","Confidence":96.63466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52048}],"Text":"connection","Confidence":96.47739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.565674}],"Text":"for","Confidence":96.429016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.4907}],"Text":"execution","Confidence":96.28316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.435425}],"Text":"frame","Confidence":96.04799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56815}],"Text":"function","Confidence":96.03513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57293}],"Text":"visualization","Confidence":96.016754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5456}],"Text":"we","Confidence":95.84602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.546326}],"Text":"engine","Confidence":95.78438},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.38402}],"Text":"you","Confidence":95.688126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.503105}],"Text":"what","Confidence":95.626114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.50362}],"Text":"screen","Confidence":95.53621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.56336}],"Text":"back","Confidence":95.47051},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57102}],"Text":"are","Confidence":95.40021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.517525}],"Text":"need","Confidence":95.34891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50334}],"Text":"studio","Confidence":95.29193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50334}],"Text":"the","Confidence":94.99897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53993}],"Text":"see","Confidence":94.99897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.340546}],"Text":"inte","Confidence":94.80775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.36227}],"Text":"to","Confidence":94.03095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51085}],"Text":"do","Confidence":94.02964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.13653}],"Text":"then","Confidence":93.9557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.36712}],"Text":"work","Confidence":93.90077},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.02753}],"Text":"introducing","Confidence":93.19269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56507}],"Text":"your","Confidence":93.07657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.40471}],"Text":"driver","Confidence":93.04756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.352356}],"Text":"ihe","Confidence":92.99031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5325}],"Text":"of","Confidence":92.94547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57241}],"Text":"variable","Confidence":92.82666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48077}],"Text":"in","Confidence":92.195496},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.98701}],"Text":"follawing","Confidence":91.51309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.407555}],"Text":"anything","Confidence":91.48577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.498886}],"Text":"tool","Confidence":91.43753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.91329}],"Text":"tor","Confidence":91.28822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54967}],"Text":"generally","Confidence":88.886795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.38525}],"Text":"easy","Confidence":88.69673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.31227}],"Text":"can","Confidence":88.185905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.26157}],"Text":"deen","Confidence":87.831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57035}],"Text":"processes","Confidence":87.72065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.544754}],"Text":"it","Confidence":87.51507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":98.20956}],"Text":"has","Confidence":87.46688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.18885}],"Text":"service","Confidence":86.501335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.68988}],"Text":"dialogs","Confidence":86.02577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.38672}],"Text":"application","Confidence":84.83423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.99112}],"Text":"engineering","Confidence":83.788864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.58146}],"Text":"vou","Confidence":83.07021},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0131","Confidence":97.60943}],"Text":"\u0131l","Confidence":82.27774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":97.43159}],"Text":"basic","Confidence":82.02109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.73296}],"Text":"how","Confidence":81.32711},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.330444}],"Text":"incorperate","Confidence":81.3131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.35529}],"Text":"points","Confidence":79.1578},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.94427}],"Text":"confguung","Confidence":77.68369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.516556}],"Text":"ts","Confidence":75.61592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.329926}],"Text":"yout","Confidence":73.82828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.778336}],"Text":"tc","Confidence":72.640366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.552956}],"Text":"control","Confidence":71.72562},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.94701}],"Text":"cont-qured","Confidence":71.66001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53254}],"Text":"start","Confidence":70.95837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51599}],"Text":"project","Confidence":70.67467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56381}],"Text":"setting","Confidence":70.599365},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.33425}],"Text":"visualizalion","Confidence":70.54554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565636}],"Text":"selling","Confidence":70.23682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.685715}],"Text":"co","Confidence":69.8},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.48764}],"Text":"front","Confidence":69.4344},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":96.67363}],"Text":"lnginccring","Confidence":69.342896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.40557}],"Text":"youl","Confidence":69.17117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":97.40727}],"Text":"end","Confidence":67.675156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.500824}],"Text":"ent","Confidence":66.73535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.517494}],"Text":"star","Confidence":66.46611},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00802}],"Text":"proyects","Confidence":66.2034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.463234}],"Text":"nerd","Confidence":65.38071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.37895}],"Text":"hew","Confidence":63.98892},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.978165}],"Text":"chapters","Confidence":63.658424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.54222}],"Text":"because","Confidence":62.585392},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.99841}],"Text":"proyents","Confidence":61.293144},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.90501}],"Text":"coniple","Confidence":55.894722},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.126366}],"Text":"insine_","Confidence":52.593468},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.80815}],"Text":"properics","Confidence":50.90166}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(80%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(80%).json index 22d2188..cfa685c 100644 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55251}],"Text":"create","Confidence":96.8676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57348}],"Text":"first","Confidence":96.71941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54668}],"Text":"steps","Confidence":96.69294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51717}],"Text":"execution","Confidence":96.53829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.54346}],"Text":"back","Confidence":96.264786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.43014}],"Text":"connection","Confidence":96.01099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.561134}],"Text":"next","Confidence":95.938225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57418}],"Text":"frame","Confidence":95.895004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57361}],"Text":"variable","Confidence":95.81235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57431}],"Text":"visualization","Confidence":95.6735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57436}],"Text":"screen","Confidence":94.97488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.52624}],"Text":"function","Confidence":93.85658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572876}],"Text":"driver","Confidence":90.15069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.49704}],"Text":"me","Confidence":86.09918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39957}],"Text":"and","Confidence":83.19815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.315865}],"Text":"pr","Confidence":78.27795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.01341}],"Text":"th","Confidence":72.09387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.60544}],"Text":"the","Confidence":69.23807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.643425}],"Text":"ca","Confidence":62.195946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.400055}],"Text":"visual","Confidence":60.800407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.808426}],"Text":"what","Confidence":58.244522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":95.64535}],"Text":"ck","Confidence":56.511463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.33336}],"Text":"wall","Confidence":55.79944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.98678}],"Text":"te","Confidence":55.79944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.97601}],"Text":"ct","Confidence":54.517017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.391884}],"Text":"wie","Confidence":53.743187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.69505}],"Text":"ihe","Confidence":53.423977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":93.57499}],"Text":"zur","Confidence":53.32518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.13278}],"Text":"tal","Confidence":51.929497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.15905}],"Text":"apple","Confidence":51.476974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.933136}],"Text":"ate","Confidence":51.346046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.50247}],"Text":"studs","Confidence":50.714302}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55251}],"Text":"create","Confidence":96.8676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57348}],"Text":"first","Confidence":96.71941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54668}],"Text":"steps","Confidence":96.69294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51717}],"Text":"execution","Confidence":96.53829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.54346}],"Text":"back","Confidence":96.264786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.43014}],"Text":"connection","Confidence":96.01099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.561134}],"Text":"next","Confidence":95.938225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57418}],"Text":"frame","Confidence":95.895004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57361}],"Text":"variable","Confidence":95.81235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57431}],"Text":"visualization","Confidence":95.6735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57436}],"Text":"screen","Confidence":94.97488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.52624}],"Text":"function","Confidence":93.85658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572876}],"Text":"driver","Confidence":90.15069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.49704}],"Text":"me","Confidence":86.09918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39957}],"Text":"and","Confidence":83.19815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.315865}],"Text":"pr","Confidence":78.27795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.01341}],"Text":"th","Confidence":72.09387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.60544}],"Text":"the","Confidence":69.23807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.643425}],"Text":"ca","Confidence":62.195946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.400055}],"Text":"visual","Confidence":60.800407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.808426}],"Text":"what","Confidence":58.244522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":95.64535}],"Text":"ck","Confidence":56.511463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.33336}],"Text":"wall","Confidence":55.79944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.98678}],"Text":"te","Confidence":55.79944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.97601}],"Text":"ct","Confidence":54.517017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.391884}],"Text":"wie","Confidence":53.743187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.69505}],"Text":"ihe","Confidence":53.423977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":93.57499}],"Text":"zur","Confidence":53.32518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.13278}],"Text":"tal","Confidence":51.929497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.15905}],"Text":"apple","Confidence":51.476974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.933136}],"Text":"ate","Confidence":51.346046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.50247}],"Text":"studs","Confidence":50.714302}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(90%).json b/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(90%).json deleted file mode 100644 index 920a0a4..0000000 --- a/Examples/testdata/results/editor_startpage_project-exist_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57442}],"Text":"create","Confidence":96.878174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.528145}],"Text":"back","Confidence":96.697014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.52786}],"Text":"screen","Confidence":96.69502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56997}],"Text":"next","Confidence":96.63742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.51623}],"Text":"first","Confidence":96.613594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54355}],"Text":"steps","Confidence":96.45741},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56084}],"Text":"connection","Confidence":96.023865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.49972}],"Text":"execution","Confidence":95.91454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57402}],"Text":"variable","Confidence":95.791595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57256}],"Text":"function","Confidence":95.77191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.4516}],"Text":"frame","Confidence":95.52817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52759}],"Text":"driver","Confidence":94.96644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.034805}],"Text":"visualization","Confidence":92.41713}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Kapur).json index 081bbd7..99c8b34 100644 --- a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57238}],"Text":"to","Confidence":96.9477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56114}],"Text":"and","Confidence":96.928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56944}],"Text":"property","Confidence":96.91156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570915}],"Text":"depended","Confidence":96.77543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56095}],"Text":"each","Confidence":96.63117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55426}],"Text":"energy","Confidence":96.494255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.566895}],"Text":"you","Confidence":96.36158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574295}],"Text":"the","Confidence":96.36063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558624}],"Text":"property","Confidence":96.28456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5683}],"Text":"for","Confidence":96.18822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.45014}],"Text":"what","Confidence":96.15098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.441574}],"Text":"load","Confidence":96.09104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.476074}],"Text":"report","Confidence":95.854706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.39998}],"Text":"standard","Confidence":95.528854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573524}],"Text":"provided","Confidence":94.47146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55381}],"Text":"from","Confidence":94.35352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.456154}],"Text":"also","Confidence":94.17474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55951}],"Text":"is","Confidence":93.92718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56362}],"Text":"value","Confidence":93.91},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.20936}],"Text":"link","Confidence":93.70633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55268}],"Text":"topology","Confidence":93.650085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.234024}],"Text":"shows","Confidence":93.569046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57236}],"Text":"ce","Confidence":93.45237},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.03708}],"Text":"zenon","Confidence":92.994644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.31686}],"Text":"information","Confidence":92.769745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54149}],"Text":"name","Confidence":92.65633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.210266}],"Text":"select","Confidence":92.45824},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.94351}],"Text":"vba","Confidence":92.12926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.46939}],"Text":"brief","Confidence":92.10569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.33186}],"Text":"protect","Confidence":91.587524},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.040016}],"Text":"heip","Confidence":91.28522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.564}],"Text":"for","Confidence":91.26196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.874756}],"Text":"help","Confidence":91.096725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53753}],"Text":"needed","Confidence":89.280914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.00327}],"Text":"online","Confidence":89.034615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.27824}],"Text":"repl","Confidence":88.53286},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.97795}],"Text":"hetwark","Confidence":85.84564},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.92286}],"Text":"weicome","Confidence":85.460014},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.84727}],"Text":"tme","Confidence":84.81785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.546844}],"Text":"language","Confidence":82.943954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.42354}],"Text":"on","Confidence":81.96479},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.317696}],"Text":"grotal","Confidence":81.22387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.28535}],"Text":"ihe","Confidence":80.99745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55195}],"Text":"other","Confidence":80.635284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5223}],"Text":"its","Confidence":78.06464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.15177}],"Text":"displayed","Confidence":75.953674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.502716}],"Text":"screens","Confidence":75.86783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.54173}],"Text":"the","Confidence":75.79213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.25108}],"Text":"edit","Confidence":74.85735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.33974}],"Text":"fie","Confidence":74.471146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.432274}],"Text":"fe","Confidence":73.97278},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.86454}],"Text":"prosect","Confidence":72.308624},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":95.92335}],"Text":"00k","Confidence":71.46341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.72619}],"Text":"ew","Confidence":70.68139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.2881}],"Text":"fle","Confidence":68.95516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":96.66726}],"Text":"ree","Confidence":66.97732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.54921}],"Text":"stat","Confidence":66.25554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.61082}],"Text":"en","Confidence":65.75572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.226746}],"Text":"displayed","Confidence":61.64422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.64569}],"Text":"edition","Confidence":61.561737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.36076}],"Text":"br","Confidence":60.525364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.45848}],"Text":"ic","Confidence":60.232765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.17225}],"Text":"etc","Confidence":59.205723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"properties","Confidence":58.422432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.28348}],"Text":"widows","Confidence":57.8355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.813736}],"Text":"options","Confidence":57.347664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.38464}],"Text":"windows","Confidence":56.629555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":95.57312}],"Text":"mon","Confidence":55.7641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":95.19172}],"Text":"ez","Confidence":52.86992},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00484}],"Text":"proy","Confidence":52.540672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.82758}],"Text":"oo","Confidence":52.335773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":97.307526}],"Text":"bat","Confidence":52.102222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53734}],"Text":"filtered","Confidence":51.426826},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.36503}],"Text":"functons","Confidence":51.046814}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57238}],"Text":"to","Confidence":96.9477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56114}],"Text":"and","Confidence":96.928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56944}],"Text":"property","Confidence":96.91156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570915}],"Text":"depended","Confidence":96.77543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56095}],"Text":"each","Confidence":96.63117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55426}],"Text":"energy","Confidence":96.494255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.566895}],"Text":"you","Confidence":96.36158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574295}],"Text":"the","Confidence":96.36063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558624}],"Text":"property","Confidence":96.28456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5683}],"Text":"for","Confidence":96.18822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.45014}],"Text":"what","Confidence":96.15098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.441574}],"Text":"load","Confidence":96.09104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.476074}],"Text":"report","Confidence":95.854706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.39998}],"Text":"standard","Confidence":95.528854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573524}],"Text":"provided","Confidence":94.47146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55381}],"Text":"from","Confidence":94.35352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.456154}],"Text":"also","Confidence":94.17474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55951}],"Text":"is","Confidence":93.92718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56362}],"Text":"value","Confidence":93.91},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.20936}],"Text":"link","Confidence":93.70633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55268}],"Text":"topology","Confidence":93.650085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.234024}],"Text":"shows","Confidence":93.569046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57236}],"Text":"ce","Confidence":93.45237},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.03708}],"Text":"zenon","Confidence":92.994644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.31686}],"Text":"information","Confidence":92.769745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54149}],"Text":"name","Confidence":92.65633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.210266}],"Text":"select","Confidence":92.45824},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.94351}],"Text":"vba","Confidence":92.12926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.46939}],"Text":"brief","Confidence":92.10569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.33186}],"Text":"protect","Confidence":91.587524},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.040016}],"Text":"heip","Confidence":91.28522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.564}],"Text":"for","Confidence":91.26196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.874756}],"Text":"help","Confidence":91.096725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53753}],"Text":"needed","Confidence":89.280914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.00327}],"Text":"online","Confidence":89.034615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.27824}],"Text":"repl","Confidence":88.53286},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.97795}],"Text":"hetwark","Confidence":85.84564},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.92286}],"Text":"weicome","Confidence":85.460014},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.84727}],"Text":"tme","Confidence":84.81785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.546844}],"Text":"language","Confidence":82.943954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.42354}],"Text":"on","Confidence":81.96479},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.317696}],"Text":"grotal","Confidence":81.22387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.28535}],"Text":"ihe","Confidence":80.99745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55195}],"Text":"other","Confidence":80.635284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5223}],"Text":"its","Confidence":78.06464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.15177}],"Text":"displayed","Confidence":75.953674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.502716}],"Text":"screens","Confidence":75.86783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.54173}],"Text":"the","Confidence":75.79213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.25108}],"Text":"edit","Confidence":74.85735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.33974}],"Text":"fie","Confidence":74.471146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.432274}],"Text":"fe","Confidence":73.97278},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.86454}],"Text":"prosect","Confidence":72.308624},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":95.92335}],"Text":"00k","Confidence":71.46341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.72619}],"Text":"ew","Confidence":70.68139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.2881}],"Text":"fle","Confidence":68.95516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":96.66726}],"Text":"ree","Confidence":66.97732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.54921}],"Text":"stat","Confidence":66.25554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.61082}],"Text":"en","Confidence":65.75572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.226746}],"Text":"displayed","Confidence":61.64422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.64569}],"Text":"edition","Confidence":61.561737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.36076}],"Text":"br","Confidence":60.525364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.45848}],"Text":"ic","Confidence":60.232765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.17225}],"Text":"etc","Confidence":59.205723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"properties","Confidence":58.422432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.28348}],"Text":"widows","Confidence":57.8355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.813736}],"Text":"options","Confidence":57.347664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.38464}],"Text":"windows","Confidence":56.629555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":95.57312}],"Text":"mon","Confidence":55.7641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":95.19172}],"Text":"ez","Confidence":52.86992},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00484}],"Text":"proy","Confidence":52.540672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.82758}],"Text":"oo","Confidence":52.335773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":97.307526}],"Text":"bat","Confidence":52.102222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53734}],"Text":"filtered","Confidence":51.426826},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.36503}],"Text":"functons","Confidence":51.046814}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(OTSU).json index 9df0f59..bd64373 100644 --- a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.562996}],"Text":"property","Confidence":95.854485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.3558}],"Text":"help","Confidence":95.490585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51161}],"Text":"project","Confidence":92.986824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":97.96801}],"Text":"window","Confidence":78.460045},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":95.09849}],"Text":"\u0027doku","Confidence":65.68939},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.041725}],"Text":"marsger","Confidence":54.617744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":93.700745}],"Text":"lead","Confidence":54.234394}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.562996}],"Text":"property","Confidence":95.854485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.3558}],"Text":"help","Confidence":95.490585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51161}],"Text":"project","Confidence":92.986824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":97.96801}],"Text":"window","Confidence":78.460045},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":95.09849}],"Text":"\u0027doku","Confidence":65.68939},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.041725}],"Text":"marsger","Confidence":54.617744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":93.700745}],"Text":"lead","Confidence":54.234394}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Triangle).json index 28d8ab3..b66d417 100644 --- a/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/editor_windows_position_006.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.83732}],"Text":"load","Confidence":91.86125},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.0342}],"Text":"praject","Confidence":91.83131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.550896}],"Text":"total","Confidence":79.52797},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":97.350815}],"Text":"\u0027report\u0027","Confidence":76.83994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.583824}],"Text":"ook","Confidence":74.32342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.36321}],"Text":"project","Confidence":66.66633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":94.26269}],"Text":"nm","Confidence":59.83881}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.83732}],"Text":"load","Confidence":91.86125},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.0342}],"Text":"praject","Confidence":91.83131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.550896}],"Text":"total","Confidence":79.52797},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":97.350815}],"Text":"\u0027report\u0027","Confidence":76.83994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.583824}],"Text":"ook","Confidence":74.32342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.36321}],"Text":"project","Confidence":66.66633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":94.26269}],"Text":"nm","Confidence":59.83881}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index b438c21..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.542564}],"Text":"lid","Confidence":74.291565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.86872}],"Text":"ee","Confidence":57.081062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":95.24853}],"Text":"report","Confidence":55.918877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.882484}],"Text":"au","Confidence":55.37499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.4795}],"Text":"properties","Confidence":51.255325}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(04_04).json index 95822f1..510f960 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":95.678856}],"Text":"maneger","Confidence":69.75198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.72308}],"Text":"project","Confidence":62.71897}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":95.678856}],"Text":"maneger","Confidence":69.75198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.72308}],"Text":"project","Confidence":62.71897}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index b22fe8b..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.12044}],"Text":"energy","Confidence":75.9787},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.15346}],"Text":"referenc","Confidence":74.21384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.23529}],"Text":"edition","Confidence":57.70175},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":95.09132}],"Text":"263","Confidence":55.51691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":93.13815}],"Text":"vw","Confidence":51.96707}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(08_08).json index 57e9fe5..fbe67e2 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.571724}],"Text":"ee","Confidence":76.002045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"k","Confidence":97.933014}],"Text":"ka","Confidence":69.97458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.97527}],"Text":"project","Confidence":64.42708},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00757}],"Text":"manege","Confidence":60.60206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.98458}],"Text":"au","Confidence":58.714622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.26905}],"Text":"ii","Confidence":52.034954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.2902}],"Text":"manage","Confidence":51.56093}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.571724}],"Text":"ee","Confidence":76.002045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"k","Confidence":97.933014}],"Text":"ka","Confidence":69.97458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.97527}],"Text":"project","Confidence":64.42708},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00757}],"Text":"manege","Confidence":60.60206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.98458}],"Text":"au","Confidence":58.714622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.26905}],"Text":"ii","Confidence":52.034954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.2902}],"Text":"manage","Confidence":51.56093}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 48c498d..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.48531}],"Text":"project","Confidence":89.39722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.45062}],"Text":"energy","Confidence":86.71764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.23163}],"Text":"load","Confidence":82.85408},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.77169}],"Text":"proj\u00E9ct","Confidence":82.4885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55094}],"Text":"tree","Confidence":82.39513},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.04323}],"Text":"maniger","Confidence":76.251175},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.99555}],"Text":"nipinio","Confidence":65.23563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.732544}],"Text":"lak","Confidence":64.621155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":94.26545}],"Text":"he","Confidence":59.85813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.11526}],"Text":"dienen","Confidence":58.80681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54912}],"Text":"sexe","Confidence":58.462845},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.084145}],"Text":"omd","Confidence":54.374977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.832466}],"Text":"li","Confidence":52.550667}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(12_12).json index a314b80..689fedc 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.30376}],"Text":"project","Confidence":95.12632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.99219}],"Text":"output","Confidence":92.94531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.015274}],"Text":"va","Confidence":89.64835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.530556}],"Text":"cross","Confidence":86.66333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.002655}],"Text":"help","Confidence":84.502335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57239}],"Text":"manager","Confidence":82.923805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.991585}],"Text":"property","Confidence":75.66298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56559}],"Text":"tree","Confidence":74.22506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.211006}],"Text":"bet","Confidence":73.47705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":93.697815}],"Text":"rmx","Confidence":55.884712}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.30376}],"Text":"project","Confidence":95.12632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.99219}],"Text":"output","Confidence":92.94531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.015274}],"Text":"va","Confidence":89.64835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.530556}],"Text":"cross","Confidence":86.66333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.002655}],"Text":"help","Confidence":84.502335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57239}],"Text":"manager","Confidence":82.923805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.991585}],"Text":"property","Confidence":75.66298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56559}],"Text":"tree","Confidence":74.22506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.211006}],"Text":"bet","Confidence":73.47705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":93.697815}],"Text":"rmx","Confidence":55.884712}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index a789fec..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.899956}],"Text":"ind","Confidence":62.028236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.73939}],"Text":"svx","Confidence":61.494793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":94.07738}],"Text":"gino","Confidence":50.77345}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(16_16).json index f3d10a2..6857866 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.550735}],"Text":"doku","Confidence":95.00123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.674675}],"Text":"cy","Confidence":69.7227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47143}],"Text":"cros","Confidence":56.0719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":93.699165}],"Text":"vy","Confidence":55.894142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":93.64605}],"Text":"re","Confidence":55.14748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.80191}],"Text":"wls","Confidence":54.410324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":93.30929}],"Text":"nn","Confidence":53.16501},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"8","Confidence":94.02748}],"Text":"8x","Confidence":52.041317}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.550735}],"Text":"doku","Confidence":95.00123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.674675}],"Text":"cy","Confidence":69.7227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47143}],"Text":"cros","Confidence":56.0719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":93.699165}],"Text":"vy","Confidence":55.894142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":93.64605}],"Text":"re","Confidence":55.14748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.80191}],"Text":"wls","Confidence":54.410324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":93.30929}],"Text":"nn","Confidence":53.16501},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"8","Confidence":94.02748}],"Text":"8x","Confidence":52.041317}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 52edecc..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55582}],"Text":"you","Confidence":96.69004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57334}],"Text":"the","Confidence":96.60273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57044}],"Text":"property","Confidence":96.07375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.42008}],"Text":"shows","Confidence":95.9406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.38632}],"Text":"for","Confidence":95.70428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.525}],"Text":"for","Confidence":95.30555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53767}],"Text":"value","Confidence":94.98108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.44027}],"Text":"on","Confidence":93.071465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.14973}],"Text":"standard","Confidence":92.81202},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.888054}],"Text":"and","Confidence":92.2164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.61595}],"Text":"name","Confidence":90.311646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.599014}],"Text":"from","Confidence":90.193115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.27702}],"Text":"oad","Confidence":87.93916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.26367}],"Text":"what","Confidence":87.84571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.535995}],"Text":"tothe","Confidence":83.33646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.38535}],"Text":"ia","Confidence":81.805725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53224}],"Text":"project","Confidence":81.64433},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.17645}],"Text":"doku","Confidence":81.37608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.21084}],"Text":"ite","Confidence":78.30931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56087}],"Text":"also","Confidence":78.23171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574615}],"Text":"property","Confidence":76.51358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.521774}],"Text":"depended","Confidence":76.497734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":96.68951}],"Text":"report","Confidence":76.480515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.77894}],"Text":"to","Confidence":75.41462},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.47922}],"Text":"each","Confidence":75.41462},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.440735}],"Text":"needed","Confidence":72.919945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.37207}],"Text":"bet","Confidence":72.86542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.54832}],"Text":"help","Confidence":68.31217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.305275}],"Text":"isthe","Confidence":66.82699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.64958}],"Text":"is","Confidence":65.427444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":94.92002}],"Text":"nk","Confidence":64.440155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.58559}],"Text":"tc","Confidence":63.054424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55726}],"Text":"what","Confidence":57.88994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.32723}],"Text":"online","Confidence":52.159798},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":93.09528}],"Text":"othor","Confidence":51.666965},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.90999}],"Text":"vba","Confidence":51.548645}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(20_20).json index e7c624a..8388b9e 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55598}],"Text":"you","Confidence":96.79225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57316}],"Text":"the","Confidence":95.87983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56629}],"Text":"and","Confidence":95.87983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.42072}],"Text":"name","Confidence":95.18739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5554}],"Text":"property","Confidence":95.037895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.27564}],"Text":"value","Confidence":94.7226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.555405}],"Text":"each","Confidence":93.67894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.030914}],"Text":"is","Confidence":91.517654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.380135}],"Text":"help","Confidence":88.727806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.08327}],"Text":"what","Confidence":86.58286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5522}],"Text":"project","Confidence":84.91246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.77527}],"Text":"what","Confidence":84.4269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.41324}],"Text":"to","Confidence":81.892685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.279274}],"Text":"fr","Confidence":81.813675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.37301}],"Text":"te","Confidence":81.61107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.29248}],"Text":"standard","Confidence":81.04735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.210884}],"Text":"load","Confidence":80.47617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55282}],"Text":"tothe","Confidence":79.596825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.32654}],"Text":"ia","Confidence":79.070175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.86006}],"Text":"fr","Confidence":78.033295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54498}],"Text":"needed","Confidence":76.77571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.89024}],"Text":"ate","Confidence":75.793274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":97.99397}],"Text":"hep","Confidence":75.526794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.006355}],"Text":"veavsta","Confidence":74.167564},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.02575}],"Text":"thows","Confidence":74.13157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":95.6843}],"Text":"report","Confidence":69.790115},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":96.36834}],"Text":"\u0027doku\u0027","Confidence":69.08014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.41252}],"Text":"thor","Confidence":67.88762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.99026}],"Text":"ase","Confidence":64.36022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.82787}],"Text":"ie","Confidence":61.73857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.740036}],"Text":"on","Confidence":61.72882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.50893}],"Text":"ts","Confidence":61.56246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":95.076126}],"Text":"properties","Confidence":59.64206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.53266}],"Text":"doku\u0027","Confidence":54.728622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.72583}],"Text":"one","Confidence":53.838543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.63543}],"Text":"information","Confidence":52.001938}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.55598}],"Text":"you","Confidence":96.79225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57316}],"Text":"the","Confidence":95.87983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56629}],"Text":"and","Confidence":95.87983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.42072}],"Text":"name","Confidence":95.18739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5554}],"Text":"property","Confidence":95.037895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.27564}],"Text":"value","Confidence":94.7226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.555405}],"Text":"each","Confidence":93.67894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.030914}],"Text":"is","Confidence":91.517654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.380135}],"Text":"help","Confidence":88.727806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.08327}],"Text":"what","Confidence":86.58286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5522}],"Text":"project","Confidence":84.91246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.77527}],"Text":"what","Confidence":84.4269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.41324}],"Text":"to","Confidence":81.892685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.279274}],"Text":"fr","Confidence":81.813675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.37301}],"Text":"te","Confidence":81.61107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.29248}],"Text":"standard","Confidence":81.04735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.210884}],"Text":"load","Confidence":80.47617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55282}],"Text":"tothe","Confidence":79.596825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.32654}],"Text":"ia","Confidence":79.070175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.86006}],"Text":"fr","Confidence":78.033295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54498}],"Text":"needed","Confidence":76.77571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.89024}],"Text":"ate","Confidence":75.793274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":97.99397}],"Text":"hep","Confidence":75.526794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.006355}],"Text":"veavsta","Confidence":74.167564},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.02575}],"Text":"thows","Confidence":74.13157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":95.6843}],"Text":"report","Confidence":69.790115},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":96.36834}],"Text":"\u0027doku\u0027","Confidence":69.08014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.41252}],"Text":"thor","Confidence":67.88762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.99026}],"Text":"ase","Confidence":64.36022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.82787}],"Text":"ie","Confidence":61.73857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.740036}],"Text":"on","Confidence":61.72882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.50893}],"Text":"ts","Confidence":61.56246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":95.076126}],"Text":"properties","Confidence":59.64206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.53266}],"Text":"doku\u0027","Confidence":54.728622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.72583}],"Text":"one","Confidence":53.838543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.63543}],"Text":"information","Confidence":52.001938}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index d41d659..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.364136}],"Text":"peor","Confidence":73.47022},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.07949}],"Text":"pue","Confidence":71.36261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":95.317184}],"Text":"er","Confidence":64.7578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.325195}],"Text":"ung","Confidence":64.50906},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.6494}],"Text":"01","Confidence":62.766647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.369095}],"Text":"aveda","Confidence":60.3672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":97.53202}],"Text":"pr","Confidence":59.54916},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.15772}],"Text":"18","Confidence":58.04649},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.8414}],"Text":"04","Confidence":57.97647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":94.03874}],"Text":"go","Confidence":57.48104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":95.82983}],"Text":"en","Confidence":55.53509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.1151}],"Text":"au","Confidence":55.14325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":93.32498}],"Text":"hot","Confidence":53.274895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.18383}],"Text":"my","Confidence":52.28679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":92.9012}],"Text":"ug","Confidence":50.308403}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(24_24).json index e2970e9..97f453c 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.928215}],"Text":"10300","Confidence":76.29855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55023}],"Text":"pur","Confidence":61.983295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.407}],"Text":"ou","Confidence":60.84899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.32353}],"Text":"pp","Confidence":60.26471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.241264}],"Text":"re","Confidence":59.68883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.340836}],"Text":"doy","Confidence":55.326767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.18764}],"Text":"yous","Confidence":54.369072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"j","Confidence":95.86999}],"Text":"jon","Confidence":53.950653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.82881}],"Text":"dia","Confidence":53.14115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.07993}],"Text":"so","Confidence":52.7744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":95.78249}],"Text":"ua","Confidence":51.07311}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.928215}],"Text":"10300","Confidence":76.29855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55023}],"Text":"pur","Confidence":61.983295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.407}],"Text":"ou","Confidence":60.84899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.32353}],"Text":"pp","Confidence":60.26471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.241264}],"Text":"re","Confidence":59.68883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.340836}],"Text":"doy","Confidence":55.326767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.18764}],"Text":"yous","Confidence":54.369072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"j","Confidence":95.86999}],"Text":"jon","Confidence":53.950653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.82881}],"Text":"dia","Confidence":53.14115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.07993}],"Text":"so","Confidence":52.7744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":95.78249}],"Text":"ua","Confidence":51.07311}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(0%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(0%).json deleted file mode 100644 index 4af0309..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57263}],"Text":"help","Confidence":96.8847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49077}],"Text":"to","Confidence":96.4354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5722}],"Text":"property","Confidence":96.40521},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.46041}],"Text":"fe","Confidence":95.37292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.20217}],"Text":"be","Confidence":94.41522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.17474}],"Text":"on","Confidence":94.22322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.571655}],"Text":"the","Confidence":93.71098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.38359}],"Text":"ne","Confidence":93.12697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.34166}],"Text":"energy","Confidence":93.09638},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":98.95065}],"Text":"zenon","Confidence":92.65456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.537415}],"Text":"report","Confidence":89.46451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.52281}],"Text":"welcome","Confidence":87.15903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.35424}],"Text":"what","Confidence":86.153244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.557884}],"Text":"value","Confidence":84.84575},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.64152}],"Text":"reacy","Confidence":82.78849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.36274}],"Text":"ane","Confidence":80.21206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.04324}],"Text":"editien","Confidence":75.566},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.51299}],"Text":"aded","Confidence":75.28723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.38067}],"Text":"anc","Confidence":72.211624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":97.17125}],"Text":"he","Confidence":71.818054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.181564}],"Text":"screens","Confidence":68.68117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.38163}],"Text":"ate","Confidence":67.06772},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.57393}],"Text":"al\u0131rk","Confidence":66.537674},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.287445}],"Text":"vercow","Confidence":65.70853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.091}],"Text":"ie","Confidence":65.70343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.987404}],"Text":"sach","Confidence":65.32971},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.585976}],"Text":"sian","Confidence":63.596252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.07514}],"Text":"propery","Confidence":60.9907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.25784}],"Text":"som","Confidence":59.80491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.29026}],"Text":"san","Confidence":59.660194},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.735886}],"Text":"arl\u0131ne","Confidence":57.49464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.85813}],"Text":"tes","Confidence":57.006912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.571335}],"Text":"optica","Confidence":54.999367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.515015}],"Text":"proj","Confidence":53.54044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.3234}],"Text":"ihe","Confidence":51.884575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":94.77656}],"Text":"fa","Confidence":51.26717},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.94424}],"Text":"onef","Confidence":51.098408}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(10%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(10%).json deleted file mode 100644 index 32fe60c..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.564064}],"Text":"what","Confidence":96.78057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57153}],"Text":"property","Confidence":96.75361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.542694}],"Text":"on","Confidence":96.75147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.528275}],"Text":"each","Confidence":96.69423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.568184}],"Text":"you","Confidence":96.66035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.559784}],"Text":"the","Confidence":96.62662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53856}],"Text":"shows","Confidence":96.59657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54174}],"Text":"to","Confidence":96.501526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.53051}],"Text":"welcome","Confidence":96.483284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569885}],"Text":"and","Confidence":96.19348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.554825}],"Text":"needed","Confidence":96.07252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5706}],"Text":"from","Confidence":96.02742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.478676}],"Text":"for","Confidence":95.55675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.3567}],"Text":"name","Confidence":95.49688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.355125}],"Text":"help","Confidence":95.29277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.539536}],"Text":"report","Confidence":95.25667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.553474}],"Text":"value","Confidence":95.21346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56762}],"Text":"ce","Confidence":94.53941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51649}],"Text":"select","Confidence":93.82118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.09089}],"Text":"standard","Confidence":93.636246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5709}],"Text":"energy","Confidence":93.56622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55644}],"Text":"brief","Confidence":93.27784},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.02593}],"Text":"heip","Confidence":92.65017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54638}],"Text":"tree","Confidence":92.07929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.37838}],"Text":"edit","Confidence":92.01264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.82122}],"Text":"ihe","Confidence":91.74854},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":98.990524}],"Text":"zenon","Confidence":91.74257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.37829}],"Text":"screens","Confidence":90.67525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.02839}],"Text":"options","Confidence":90.67525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5554}],"Text":"also","Confidence":90.33053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.119354}],"Text":"filtered","Confidence":90.08036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.56122}],"Text":"for","Confidence":89.92851},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.22013}],"Text":"19","Confidence":88.850426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4015}],"Text":"its","Confidence":88.850426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.35028}],"Text":"other","Confidence":88.45195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.28217}],"Text":"fo","Confidence":87.97521},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.84564}],"Text":"onling","Confidence":87.9673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.20323}],"Text":"link","Confidence":80.64494},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.05722}],"Text":"repc","Confidence":80.29687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.34054}],"Text":"stan","Confidence":73.18337},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.46732}],"Text":"edition","Confidence":72.60159},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.96947}],"Text":"werdow","Confidence":68.723206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.51419}],"Text":"project","Confidence":67.889275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54057}],"Text":"ready","Confidence":67.44667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.48801}],"Text":"bel","Confidence":66.44325},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.0656}],"Text":"15","Confidence":65.459206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.55218}],"Text":"promded","Confidence":64.92072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.00628}],"Text":"ate","Confidence":61.591415},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.42472}],"Text":"1s","Confidence":57.445053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55637}],"Text":"pro","Confidence":56.65678},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.593796}],"Text":"voavsta","Confidence":56.105865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.34522}],"Text":"fee","Confidence":54.754433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.52567}],"Text":"window","Confidence":54.679703},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"_","Confidence":93.29645}],"Text":"_y","Confidence":53.075123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":94.92673}],"Text":"ads","Confidence":52.29049}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(100%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(20%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(20%).json index 3a01f8f..7d98751 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5642}],"Text":"you","Confidence":96.942894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57212}],"Text":"on","Confidence":96.92974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56277}],"Text":"depended","Confidence":96.91106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57373}],"Text":"what","Confidence":96.83765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55651}],"Text":"the","Confidence":96.78866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.563225}],"Text":"and","Confidence":96.78866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53775}],"Text":"is","Confidence":96.76425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.529976}],"Text":"shows","Confidence":96.69721},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5468}],"Text":"to","Confidence":96.68689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50877}],"Text":"each","Confidence":96.561424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5518}],"Text":"for","Confidence":96.496056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5568}],"Text":"properties","Confidence":96.25369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56984}],"Text":"brief","Confidence":96.10843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57449}],"Text":"property","Confidence":96.08298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.43717}],"Text":"standard","Confidence":96.06023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.42825}],"Text":"edition","Confidence":95.99775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56924}],"Text":"provided","Confidence":95.8928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.511215}],"Text":"online","Confidence":95.575806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54874}],"Text":"from","Confidence":95.532074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.408485}],"Text":"welcome","Confidence":95.501205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.495766}],"Text":"select","Confidence":95.46306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.47376}],"Text":"help","Confidence":95.37805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56981}],"Text":"property","Confidence":95.14395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.26472}],"Text":"other","Confidence":94.85304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.469604}],"Text":"information","Confidence":94.791695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56406}],"Text":"energy","Confidence":94.10433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.41296}],"Text":"link","Confidence":93.82231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54735}],"Text":"name","Confidence":93.31937},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.00012}],"Text":"heip","Confidence":92.62544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.94456}],"Text":"ia","Confidence":92.611916},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.04291}],"Text":"zenon","Confidence":92.60378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.88911}],"Text":"for","Confidence":92.223755},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.012985}],"Text":"proparty","Confidence":91.616745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.29419}],"Text":"also","Confidence":91.29798},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.44404}],"Text":"edit","Confidence":89.378235},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.98555}],"Text":"neaded","Confidence":89.17235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.51008}],"Text":"fae","Confidence":86.641205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.56675}],"Text":"options","Confidence":86.312836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.49262}],"Text":"language","Confidence":83.52869},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.849495}],"Text":"fittered","Confidence":83.337036},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.03733}],"Text":"vba","Confidence":83.239365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.417816}],"Text":"ready","Confidence":82.7707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.250595}],"Text":"repl","Confidence":79.94922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.16346}],"Text":"project","Confidence":77.785484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.32203}],"Text":"tree","Confidence":77.785484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.20314}],"Text":"ts","Confidence":73.422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.1127}],"Text":"fie","Confidence":71.16397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.95349}],"Text":"re","Confidence":67.3905},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.28086}],"Text":"wrdows","Confidence":65.48695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.20017}],"Text":"window","Confidence":64.31907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54882}],"Text":"ce","Confidence":61.480244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.48477}],"Text":"vw","Confidence":61.39342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.379}],"Text":"etc","Confidence":60.652985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.544044}],"Text":"pry","Confidence":60.285606},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.13527}],"Text":"biw","Confidence":58.94688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.79182}],"Text":"displayed","Confidence":57.88128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.67346}],"Text":"pe","Confidence":55.714256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":97.45272}],"Text":"qs","Confidence":54.56263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574005}],"Text":"value","Confidence":54.068916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.537544}],"Text":"sr","Confidence":51.013714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.062935}],"Text":"oo","Confidence":50.866966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.671585}],"Text":"cers","Confidence":50.81619}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5642}],"Text":"you","Confidence":96.942894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57212}],"Text":"on","Confidence":96.92974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56277}],"Text":"depended","Confidence":96.91106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57373}],"Text":"what","Confidence":96.83765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55651}],"Text":"the","Confidence":96.78866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.563225}],"Text":"and","Confidence":96.78866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53775}],"Text":"is","Confidence":96.76425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.529976}],"Text":"shows","Confidence":96.69721},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5468}],"Text":"to","Confidence":96.68689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50877}],"Text":"each","Confidence":96.561424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5518}],"Text":"for","Confidence":96.496056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5568}],"Text":"properties","Confidence":96.25369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56984}],"Text":"brief","Confidence":96.10843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57449}],"Text":"property","Confidence":96.08298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.43717}],"Text":"standard","Confidence":96.06023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.42825}],"Text":"edition","Confidence":95.99775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56924}],"Text":"provided","Confidence":95.8928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.511215}],"Text":"online","Confidence":95.575806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54874}],"Text":"from","Confidence":95.532074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.408485}],"Text":"welcome","Confidence":95.501205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.495766}],"Text":"select","Confidence":95.46306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.47376}],"Text":"help","Confidence":95.37805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56981}],"Text":"property","Confidence":95.14395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.26472}],"Text":"other","Confidence":94.85304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.469604}],"Text":"information","Confidence":94.791695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56406}],"Text":"energy","Confidence":94.10433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.41296}],"Text":"link","Confidence":93.82231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54735}],"Text":"name","Confidence":93.31937},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.00012}],"Text":"heip","Confidence":92.62544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.94456}],"Text":"ia","Confidence":92.611916},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.04291}],"Text":"zenon","Confidence":92.60378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.88911}],"Text":"for","Confidence":92.223755},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.012985}],"Text":"proparty","Confidence":91.616745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.29419}],"Text":"also","Confidence":91.29798},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.44404}],"Text":"edit","Confidence":89.378235},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.98555}],"Text":"neaded","Confidence":89.17235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.51008}],"Text":"fae","Confidence":86.641205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.56675}],"Text":"options","Confidence":86.312836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.49262}],"Text":"language","Confidence":83.52869},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.849495}],"Text":"fittered","Confidence":83.337036},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.03733}],"Text":"vba","Confidence":83.239365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.417816}],"Text":"ready","Confidence":82.7707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.250595}],"Text":"repl","Confidence":79.94922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.16346}],"Text":"project","Confidence":77.785484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.32203}],"Text":"tree","Confidence":77.785484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.20314}],"Text":"ts","Confidence":73.422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.1127}],"Text":"fie","Confidence":71.16397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.95349}],"Text":"re","Confidence":67.3905},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.28086}],"Text":"wrdows","Confidence":65.48695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.20017}],"Text":"window","Confidence":64.31907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54882}],"Text":"ce","Confidence":61.480244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.48477}],"Text":"vw","Confidence":61.39342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.379}],"Text":"etc","Confidence":60.652985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.544044}],"Text":"pry","Confidence":60.285606},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.13527}],"Text":"biw","Confidence":58.94688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.79182}],"Text":"displayed","Confidence":57.88128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.67346}],"Text":"pe","Confidence":55.714256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":97.45272}],"Text":"qs","Confidence":54.56263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574005}],"Text":"value","Confidence":54.068916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.537544}],"Text":"sr","Confidence":51.013714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.062935}],"Text":"oo","Confidence":50.866966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.671585}],"Text":"cers","Confidence":50.81619}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(40%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(40%).json index 5cb33e1..6351f79 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57163}],"Text":"what","Confidence":96.92162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57192}],"Text":"to","Confidence":96.899994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.565605}],"Text":"you","Confidence":96.874214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.552704}],"Text":"each","Confidence":96.86893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56933}],"Text":"the","Confidence":96.86571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55928}],"Text":"other","Confidence":96.83362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.560165}],"Text":"property","Confidence":96.7661},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44907}],"Text":"welcome","Confidence":96.073265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55303}],"Text":"for","Confidence":95.97117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.49434}],"Text":"depended","Confidence":95.96582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5514}],"Text":"is","Confidence":95.96022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57396}],"Text":"property","Confidence":95.923416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45817}],"Text":"information","Confidence":95.82364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57155}],"Text":"properties","Confidence":95.5095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.420296}],"Text":"on","Confidence":95.394066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.20748}],"Text":"shows","Confidence":94.45238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.569115}],"Text":"needed","Confidence":94.328476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.174324}],"Text":"from","Confidence":94.220276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.512825}],"Text":"load","Confidence":92.98353},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.039185}],"Text":"zenon","Confidence":92.69564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55166}],"Text":"help","Confidence":92.530975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56516}],"Text":"standard","Confidence":92.393745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.51395}],"Text":"brief","Confidence":92.353485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.02183}],"Text":"heip","Confidence":91.94355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55928}],"Text":"tree","Confidence":91.76432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.74732}],"Text":"the","Confidence":91.23124},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02952}],"Text":"praject","Confidence":89.842384},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.91194}],"Text":"neme","Confidence":88.501755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56102}],"Text":"select","Confidence":87.31492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.35707}],"Text":"project","Confidence":82.89572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.47691}],"Text":"language","Confidence":81.51013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.0273}],"Text":"network","Confidence":79.283455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.63012}],"Text":"ts","Confidence":76.41084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34788}],"Text":"screens","Confidence":75.49257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":96.48345}],"Text":"za","Confidence":75.384186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.87348}],"Text":"fr","Confidence":74.62295},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":96.32457}],"Text":"\u0027report\u0027","Confidence":74.27199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.496796}],"Text":"value","Confidence":73.73186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.4479}],"Text":"repl","Confidence":73.21179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.549095}],"Text":"anc","Confidence":71.12097},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.829575}],"Text":"furcbons","Confidence":70.90924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.79483}],"Text":"time","Confidence":68.50052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.99819}],"Text":"bon","Confidence":67.53276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.91889}],"Text":"total","Confidence":65.803825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.98814}],"Text":"window","Confidence":64.683075},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.02785}],"Text":"tapatogy","Confidence":64.43158},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.85512}],"Text":"provect","Confidence":63.804592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.70744}],"Text":"windows","Confidence":62.974846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":94.68534}],"Text":"ook","Confidence":62.797398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.526855}],"Text":"ete","Confidence":61.688007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.94933}],"Text":"filtered","Confidence":61.224155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.98699}],"Text":"name","Confidence":61.10807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":94.210434}],"Text":"ar","Confidence":59.47302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.10245}],"Text":"ogg","Confidence":58.34381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.030075}],"Text":"bd","Confidence":58.094845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4418}],"Text":"ce","Confidence":57.907204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.41732}],"Text":"cot","Confidence":55.13683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.71122}],"Text":"file","Confidence":54.348305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":93.39326}],"Text":"baa","Confidence":53.752815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.38663}],"Text":"mon","Confidence":53.706417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.72845}],"Text":"se","Confidence":52.941822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.899254}],"Text":"sw","Confidence":51.82386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.62227}],"Text":"edit","Confidence":51.782097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.121124}],"Text":"ito","Confidence":51.217556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.80173}],"Text":"fie","Confidence":50.28116}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57163}],"Text":"what","Confidence":96.92162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57192}],"Text":"to","Confidence":96.899994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.565605}],"Text":"you","Confidence":96.874214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.552704}],"Text":"each","Confidence":96.86893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56933}],"Text":"the","Confidence":96.86571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55928}],"Text":"other","Confidence":96.83362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.560165}],"Text":"property","Confidence":96.7661},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.44907}],"Text":"welcome","Confidence":96.073265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55303}],"Text":"for","Confidence":95.97117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.49434}],"Text":"depended","Confidence":95.96582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5514}],"Text":"is","Confidence":95.96022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57396}],"Text":"property","Confidence":95.923416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.45817}],"Text":"information","Confidence":95.82364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57155}],"Text":"properties","Confidence":95.5095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.420296}],"Text":"on","Confidence":95.394066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.20748}],"Text":"shows","Confidence":94.45238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.569115}],"Text":"needed","Confidence":94.328476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.174324}],"Text":"from","Confidence":94.220276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.512825}],"Text":"load","Confidence":92.98353},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.039185}],"Text":"zenon","Confidence":92.69564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55166}],"Text":"help","Confidence":92.530975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56516}],"Text":"standard","Confidence":92.393745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.51395}],"Text":"brief","Confidence":92.353485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.02183}],"Text":"heip","Confidence":91.94355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55928}],"Text":"tree","Confidence":91.76432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.74732}],"Text":"the","Confidence":91.23124},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02952}],"Text":"praject","Confidence":89.842384},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.91194}],"Text":"neme","Confidence":88.501755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56102}],"Text":"select","Confidence":87.31492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.35707}],"Text":"project","Confidence":82.89572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.47691}],"Text":"language","Confidence":81.51013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.0273}],"Text":"network","Confidence":79.283455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.63012}],"Text":"ts","Confidence":76.41084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34788}],"Text":"screens","Confidence":75.49257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":96.48345}],"Text":"za","Confidence":75.384186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.87348}],"Text":"fr","Confidence":74.62295},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":96.32457}],"Text":"\u0027report\u0027","Confidence":74.27199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.496796}],"Text":"value","Confidence":73.73186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.4479}],"Text":"repl","Confidence":73.21179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.549095}],"Text":"anc","Confidence":71.12097},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.829575}],"Text":"furcbons","Confidence":70.90924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.79483}],"Text":"time","Confidence":68.50052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.99819}],"Text":"bon","Confidence":67.53276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.91889}],"Text":"total","Confidence":65.803825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.98814}],"Text":"window","Confidence":64.683075},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.02785}],"Text":"tapatogy","Confidence":64.43158},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":97.85512}],"Text":"provect","Confidence":63.804592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.70744}],"Text":"windows","Confidence":62.974846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":94.68534}],"Text":"ook","Confidence":62.797398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.526855}],"Text":"ete","Confidence":61.688007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.94933}],"Text":"filtered","Confidence":61.224155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.98699}],"Text":"name","Confidence":61.10807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":94.210434}],"Text":"ar","Confidence":59.47302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.10245}],"Text":"ogg","Confidence":58.34381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.030075}],"Text":"bd","Confidence":58.094845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4418}],"Text":"ce","Confidence":57.907204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.41732}],"Text":"cot","Confidence":55.13683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.71122}],"Text":"file","Confidence":54.348305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":93.39326}],"Text":"baa","Confidence":53.752815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.38663}],"Text":"mon","Confidence":53.706417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.72845}],"Text":"se","Confidence":52.941822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.899254}],"Text":"sw","Confidence":51.82386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.62227}],"Text":"edit","Confidence":51.782097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.121124}],"Text":"ito","Confidence":51.217556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.80173}],"Text":"fie","Confidence":50.28116}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(50%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(50%).json index deacf34..b0268d9 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.0813}],"Text":"load","Confidence":93.569084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.30611}],"Text":"total","Confidence":92.34639},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.024414}],"Text":"praject","Confidence":91.89245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":96.93908}],"Text":"help","Confidence":78.57353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.123924}],"Text":"andthe","Confidence":73.20361},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":97.14084}],"Text":"\u0027report\u0027","Confidence":71.292076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.26725}],"Text":"project","Confidence":69.2831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.35014}],"Text":"select","Confidence":67.01408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.70913}],"Text":"me","Confidence":66.56899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.928}],"Text":"ase","Confidence":64.85688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.090164}],"Text":"io","Confidence":61.357475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":94.726845}],"Text":"ue","Confidence":60.477493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.89193}],"Text":"ume","Confidence":57.24353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.89112}],"Text":"fr","Confidence":57.23784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.73602}],"Text":"ook","Confidence":56.152187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.668526}],"Text":"we","Confidence":54.5331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":95.208595}],"Text":"welcome","Confidence":53.183083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.12001}],"Text":"propery","Confidence":51.840096}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.0813}],"Text":"load","Confidence":93.569084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.30611}],"Text":"total","Confidence":92.34639},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.024414}],"Text":"praject","Confidence":91.89245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":96.93908}],"Text":"help","Confidence":78.57353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.123924}],"Text":"andthe","Confidence":73.20361},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0027","Confidence":97.14084}],"Text":"\u0027report\u0027","Confidence":71.292076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.26725}],"Text":"project","Confidence":69.2831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.35014}],"Text":"select","Confidence":67.01408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.70913}],"Text":"me","Confidence":66.56899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.928}],"Text":"ase","Confidence":64.85688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.090164}],"Text":"io","Confidence":61.357475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":94.726845}],"Text":"ue","Confidence":60.477493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.89193}],"Text":"ume","Confidence":57.24353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.89112}],"Text":"fr","Confidence":57.23784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.73602}],"Text":"ook","Confidence":56.152187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.668526}],"Text":"we","Confidence":54.5331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":95.208595}],"Text":"welcome","Confidence":53.183083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.12001}],"Text":"propery","Confidence":51.840096}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(70%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(70%).json index e004a0a..e68e124 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.498024}],"Text":"project","Confidence":88.72786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.95113}],"Text":"report","Confidence":71.65794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.86891}],"Text":"nelp","Confidence":68.38151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.443245}],"Text":"load","Confidence":68.10272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.44261}],"Text":"mor","Confidence":57.707672},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.30263}],"Text":"sger","Confidence":57.707672}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.498024}],"Text":"project","Confidence":88.72786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.95113}],"Text":"report","Confidence":71.65794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.86891}],"Text":"nelp","Confidence":68.38151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.443245}],"Text":"load","Confidence":68.10272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.44261}],"Text":"mor","Confidence":57.707672},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.30263}],"Text":"sger","Confidence":57.707672}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(80%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(80%).json index 5b559fc..a0afdbe 100644 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0018} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(90%).json b/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(90%).json deleted file mode 100644 index c4cf31c..0000000 --- a/Examples/testdata/results/editor_windows_position_006.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558754}],"Text":"project","Confidence":96.01954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.59638}],"Text":"load","Confidence":88.575485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.99399}],"Text":"projece","Confidence":77.95708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.26601}],"Text":"report","Confidence":56.640266}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Kapur).json index da41207..e022cb7 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.4429}],"Text":"name","Confidence":96.05967},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55068}],"Text":"10","Confidence":95.8581},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4589}],"Text":"10","Confidence":95.56366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.266396}],"Text":"settings","Confidence":91.82626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.67293}],"Text":"trend","Confidence":90.651436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.38573}],"Text":"export","Confidence":90.28652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.150635}],"Text":"copy","Confidence":87.05442},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.329185}],"Text":"10","Confidence":82.55527},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.24664}],"Text":"we","Confidence":75.75632},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.86716}],"Text":"wu_lower_limt","Confidence":72.87926},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.10607}],"Text":"wiz_steps","Confidence":71.33416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":95.531876}],"Text":"qa","Confidence":67.21164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52989}],"Text":"to","Confidence":64.11328},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.5405}],"Text":"impon","Confidence":61.78348},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":94.54759}],"Text":"vazio","Confidence":57.743816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.76654}],"Text":"tue","Confidence":55.933414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.67537}],"Text":"ti","Confidence":55.72756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.54669}],"Text":"gm","Confidence":55.568764},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.10178}],"Text":"10","Confidence":55.307842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.74487}],"Text":"cum","Confidence":55.208893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.4438}],"Text":"fin","Confidence":53.443817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.46788}],"Text":"me","Confidence":53.205357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":92.9842}],"Text":"wee","Confidence":50.889393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.80418}],"Text":"cr","Confidence":50.70799},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.99934}],"Text":"wuz_var_10","Confidence":50.067135}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.4429}],"Text":"name","Confidence":96.05967},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55068}],"Text":"10","Confidence":95.8581},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4589}],"Text":"10","Confidence":95.56366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.266396}],"Text":"settings","Confidence":91.82626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.67293}],"Text":"trend","Confidence":90.651436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.38573}],"Text":"export","Confidence":90.28652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.150635}],"Text":"copy","Confidence":87.05442},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.329185}],"Text":"10","Confidence":82.55527},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.24664}],"Text":"we","Confidence":75.75632},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.86716}],"Text":"wu_lower_limt","Confidence":72.87926},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.10607}],"Text":"wiz_steps","Confidence":71.33416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":95.531876}],"Text":"qa","Confidence":67.21164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52989}],"Text":"to","Confidence":64.11328},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.5405}],"Text":"impon","Confidence":61.78348},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":94.54759}],"Text":"vazio","Confidence":57.743816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.76654}],"Text":"tue","Confidence":55.933414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.67537}],"Text":"ti","Confidence":55.72756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.54669}],"Text":"gm","Confidence":55.568764},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.10178}],"Text":"10","Confidence":55.307842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.74487}],"Text":"cum","Confidence":55.208893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.4438}],"Text":"fin","Confidence":53.443817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.46788}],"Text":"me","Confidence":53.205357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":92.9842}],"Text":"wee","Confidence":50.889393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.80418}],"Text":"cr","Confidence":50.70799},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.99934}],"Text":"wuz_var_10","Confidence":50.067135}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(OTSU).json index db91648..3c4e850 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43205}],"Text":"trend","Confidence":96.02437},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.2724}],"Text":"16","Confidence":73.31804},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.323715}],"Text":"10","Confidence":71.06356},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.31188}],"Text":"16","Confidence":60.337864},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.31423}],"Text":"10","Confidence":58.619385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.51672}],"Text":"wis","Confidence":53.86875}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43205}],"Text":"trend","Confidence":96.02437},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.2724}],"Text":"16","Confidence":73.31804},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.323715}],"Text":"10","Confidence":71.06356},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.31188}],"Text":"16","Confidence":60.337864},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.31423}],"Text":"10","Confidence":58.619385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.51672}],"Text":"wis","Confidence":53.86875}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Triangle).json index ab0e651..0b08d5c 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.15436}],"Text":"ged","Confidence":58.34894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.26301}],"Text":"gee","Confidence":57.31466},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":95.56853}],"Text":"17","Confidence":53.049744}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.15436}],"Text":"ged","Confidence":58.34894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.26301}],"Text":"gee","Confidence":57.31466},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":95.56853}],"Text":"17","Confidence":53.049744}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index a301c8e..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.132095}],"Text":"oe","Confidence":65.92467}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(04_04).json index d7eeb80..cec91b3 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 5c2a194..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.84944}],"Text":"em","Confidence":63.066105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.76816}],"Text":"wie","Confidence":56.6215}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(08_08).json index 4c3b333..63799c6 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.37245}],"Text":"ft","Confidence":53.607162}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.37245}],"Text":"ft","Confidence":53.607162}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 3133b7c..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.34522}],"Text":"var","Confidence":58.075523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.48756}],"Text":"fler","Confidence":53.349068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.257835}],"Text":"tert","Confidence":53.349068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.10665}],"Text":"mv","Confidence":51.74656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":92.98387}],"Text":"mm","Confidence":50.88709}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(12_12).json index 324dae4..4a40a20 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.838326}],"Text":"tt","Confidence":59.581947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.41742}],"Text":"tot","Confidence":57.812126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.615135}],"Text":"sss","Confidence":55.305946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.472244}],"Text":"fae","Confidence":50.069942}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.838326}],"Text":"tt","Confidence":59.581947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.41742}],"Text":"tot","Confidence":57.812126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.615135}],"Text":"sss","Confidence":55.305946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.472244}],"Text":"fae","Confidence":50.069942}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index d7eeb80..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(16_16).json index d7eeb80..bf61384 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index e6dab0a..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":93.602936}],"Text":"nam","Confidence":51.017017}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(20_20).json index cb6250d..2c6e420 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(24_24).json index 66cebf6..d7eeb80 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0019} \ No newline at end of file +{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(0%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(0%).json deleted file mode 100644 index ace9b6a..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.976}],"Text":"le","Confidence":81.05555},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.84987}],"Text":"44","Confidence":73.9724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":94.78783}],"Text":"we","Confidence":63.514782},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.43732}],"Text":"10","Confidence":59.11019},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":94.62028}],"Text":"22","Confidence":58.516293},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.35265}],"Text":"lee","Confidence":53.468597},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":92.9638}],"Text":"ot","Confidence":50.746605}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(10%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(10%).json deleted file mode 100644 index ac4fcf6..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.35207}],"Text":"copy","Confidence":95.27965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43923}],"Text":"tele","Confidence":91.59055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54174}],"Text":"refresh","Confidence":91.146515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53731}],"Text":"settings","Confidence":89.20703},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.89449}],"Text":"10","Confidence":85.26146},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.17977}],"Text":"19","Confidence":81.16011},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.49331}],"Text":"10","Confidence":77.76051},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":96.69568}],"Text":"43","Confidence":76.86976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.22803}],"Text":"save","Confidence":72.969574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.05151}],"Text":"cure","Confidence":72.36057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.14354}],"Text":"export","Confidence":71.20845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.35729}],"Text":"pork","Confidence":71.12891},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52601}],"Text":"10","Confidence":69.33796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.172646}],"Text":"icy","Confidence":68.395966},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.47918}],"Text":"44","Confidence":66.90524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.96587}],"Text":"zoom","Confidence":65.663864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.637764}],"Text":"ia","Confidence":65.64837},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.493416}],"Text":"curser","Confidence":63.74136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":94.309525}],"Text":"le","Confidence":60.16669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.32188}],"Text":"chipboard","Confidence":57.16783},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48643}],"Text":"10","Confidence":51.435543}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(100%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(20%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(20%).json index 6310c42..b050db9 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53632}],"Text":"name","Confidence":96.22099},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53696}],"Text":"10","Confidence":94.83899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.95472}],"Text":"zoom","Confidence":92.68304},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54868}],"Text":"10","Confidence":92.569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.752556}],"Text":"cursor","Confidence":91.26791},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48704}],"Text":"10","Confidence":91.01233},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.48376}],"Text":"cune","Confidence":89.38629},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.050156}],"Text":"10","Confidence":88.46075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.853676}],"Text":"copy","Confidence":84.49731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.51977}],"Text":"clipboard","Confidence":84.28119},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.75238}],"Text":"10","Confidence":84.266685},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"2","Confidence":97.61323}],"Text":"2oom","Confidence":83.29261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.04064}],"Text":"oo","Confidence":77.136566},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.43922}],"Text":"acine","Confidence":71.09523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.503815}],"Text":"stopcontinue","Confidence":68.13579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.04251}],"Text":"fo","Confidence":65.29756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.37872}],"Text":"save","Confidence":64.597336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.722786}],"Text":"import","Confidence":63.059494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.68498}],"Text":"to","Confidence":62.7949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56747}],"Text":"tile","Confidence":62.037853},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.04038}],"Text":"setiings","Confidence":61.646614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.43364}],"Text":"cure","Confidence":61.003803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.559235}],"Text":"export","Confidence":55.3305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5593}],"Text":"refresh","Confidence":53.26232},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.00455}],"Text":"lpper_limt","Confidence":52.988297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.27049}],"Text":"ita","Confidence":52.53694}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53632}],"Text":"name","Confidence":96.22099},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53696}],"Text":"10","Confidence":94.83899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.95472}],"Text":"zoom","Confidence":92.68304},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54868}],"Text":"10","Confidence":92.569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.752556}],"Text":"cursor","Confidence":91.26791},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48704}],"Text":"10","Confidence":91.01233},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.48376}],"Text":"cune","Confidence":89.38629},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.050156}],"Text":"10","Confidence":88.46075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.853676}],"Text":"copy","Confidence":84.49731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.51977}],"Text":"clipboard","Confidence":84.28119},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.75238}],"Text":"10","Confidence":84.266685},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"2","Confidence":97.61323}],"Text":"2oom","Confidence":83.29261},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.04064}],"Text":"oo","Confidence":77.136566},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.43922}],"Text":"acine","Confidence":71.09523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.503815}],"Text":"stopcontinue","Confidence":68.13579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.04251}],"Text":"fo","Confidence":65.29756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.37872}],"Text":"save","Confidence":64.597336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.722786}],"Text":"import","Confidence":63.059494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.68498}],"Text":"to","Confidence":62.7949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56747}],"Text":"tile","Confidence":62.037853},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.04038}],"Text":"setiings","Confidence":61.646614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.43364}],"Text":"cure","Confidence":61.003803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.559235}],"Text":"export","Confidence":55.3305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5593}],"Text":"refresh","Confidence":53.26232},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.00455}],"Text":"lpper_limt","Confidence":52.988297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.27049}],"Text":"ita","Confidence":52.53694}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(40%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(40%).json index b6bdbfa..f0d7d9f 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56249}],"Text":"trend","Confidence":96.214386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.47874}],"Text":"tale","Confidence":95.886696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.3777}],"Text":"color","Confidence":95.64393},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48884}],"Text":"10","Confidence":95.29947},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.3549}],"Text":"10","Confidence":95.19554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.502785}],"Text":"to","Confidence":94.89653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51726}],"Text":"export","Confidence":92.161545},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54871}],"Text":"10","Confidence":91.84068},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55641}],"Text":"10","Confidence":90.93876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.27935}],"Text":"copy","Confidence":89.15255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.56636}],"Text":"wiz_var_10","Confidence":86.743385},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.37192}],"Text":"12","Confidence":83.94334},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.08029}],"Text":"cune","Confidence":81.50795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.274345}],"Text":"pont","Confidence":80.09509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.28294}],"Text":"name","Confidence":76.19465},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.46529}],"Text":"wiz_upper_limt","Confidence":75.91055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.36139}],"Text":"wiz_var_12","Confidence":73.879166},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.880875}],"Text":"wu_lower_limt","Confidence":67.04608},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"y","Confidence":95.08531}],"Text":"yaxis","Confidence":65.597176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.14176}],"Text":"active","Confidence":64.64995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46397}],"Text":"clipboard","Confidence":64.39469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.47106}],"Text":"gm","Confidence":64.22555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.5229}],"Text":"ia","Confidence":62.842724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.863594}],"Text":"wi","Confidence":62.607903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.56746}],"Text":"welz","Confidence":59.311024},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.346466}],"Text":"wiz_steps","Confidence":59.021294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.252945}],"Text":"se","Confidence":59.010124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.89616}],"Text":"walz","Confidence":58.272606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.94342}],"Text":"ot","Confidence":57.78933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":93.58206}],"Text":"bd","Confidence":55.074455}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56249}],"Text":"trend","Confidence":96.214386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.47874}],"Text":"tale","Confidence":95.886696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.3777}],"Text":"color","Confidence":95.64393},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48884}],"Text":"10","Confidence":95.29947},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.3549}],"Text":"10","Confidence":95.19554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.502785}],"Text":"to","Confidence":94.89653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51726}],"Text":"export","Confidence":92.161545},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54871}],"Text":"10","Confidence":91.84068},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55641}],"Text":"10","Confidence":90.93876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.27935}],"Text":"copy","Confidence":89.15255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.56636}],"Text":"wiz_var_10","Confidence":86.743385},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.37192}],"Text":"12","Confidence":83.94334},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.08029}],"Text":"cune","Confidence":81.50795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.274345}],"Text":"pont","Confidence":80.09509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.28294}],"Text":"name","Confidence":76.19465},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.46529}],"Text":"wiz_upper_limt","Confidence":75.91055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.36139}],"Text":"wiz_var_12","Confidence":73.879166},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.880875}],"Text":"wu_lower_limt","Confidence":67.04608},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"y","Confidence":95.08531}],"Text":"yaxis","Confidence":65.597176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.14176}],"Text":"active","Confidence":64.64995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.46397}],"Text":"clipboard","Confidence":64.39469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.47106}],"Text":"gm","Confidence":64.22555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.5229}],"Text":"ia","Confidence":62.842724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.863594}],"Text":"wi","Confidence":62.607903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.56746}],"Text":"welz","Confidence":59.311024},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.346466}],"Text":"wiz_steps","Confidence":59.021294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.252945}],"Text":"se","Confidence":59.010124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.89616}],"Text":"walz","Confidence":58.272606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.94342}],"Text":"ot","Confidence":57.78933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":93.58206}],"Text":"bd","Confidence":55.074455}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(50%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(50%).json index 79c8b86..b321cf1 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54796}],"Text":"10","Confidence":96.5609},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56806}],"Text":"trend","Confidence":95.58617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.26808}],"Text":"zoom","Confidence":94.38876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.48137}],"Text":"name","Confidence":93.30822},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52652}],"Text":"10","Confidence":91.723694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.08269}],"Text":"clipboard","Confidence":87.34968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.36161}],"Text":"to","Confidence":86.712715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.83457}],"Text":"settings","Confidence":84.84198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.43669}],"Text":"copy","Confidence":84.26227},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.459946}],"Text":"18","Confidence":82.34266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.28194}],"Text":"lag","Confidence":76.104515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.55424}],"Text":"we","Confidence":75.87966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":96.46924}],"Text":"qo","Confidence":75.28464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.963455}],"Text":"reroam","Confidence":73.81767},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":96.07168}],"Text":"10","Confidence":72.501724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.44052}],"Text":"export","Confidence":70.69844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48237}],"Text":"tale","Confidence":66.91893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"j","Confidence":98.96989}],"Text":"je","Confidence":65.49765},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.25131}],"Text":"wiz_upper_limt","Confidence":62.408276},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":97.26969}],"Text":"vaz\u0131o","Confidence":56.548485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.614624}],"Text":"wu_lower_limt","Confidence":55.028553},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.16063}],"Text":"10","Confidence":54.92081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.39502}],"Text":"cursor","Confidence":53.765144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.177155}],"Text":"tt","Confidence":52.24009}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54796}],"Text":"10","Confidence":96.5609},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56806}],"Text":"trend","Confidence":95.58617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.26808}],"Text":"zoom","Confidence":94.38876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.48137}],"Text":"name","Confidence":93.30822},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52652}],"Text":"10","Confidence":91.723694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.08269}],"Text":"clipboard","Confidence":87.34968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.36161}],"Text":"to","Confidence":86.712715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.83457}],"Text":"settings","Confidence":84.84198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.43669}],"Text":"copy","Confidence":84.26227},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.459946}],"Text":"18","Confidence":82.34266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.28194}],"Text":"lag","Confidence":76.104515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.55424}],"Text":"we","Confidence":75.87966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":96.46924}],"Text":"qo","Confidence":75.28464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.963455}],"Text":"reroam","Confidence":73.81767},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":96.07168}],"Text":"10","Confidence":72.501724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.44052}],"Text":"export","Confidence":70.69844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48237}],"Text":"tale","Confidence":66.91893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"j","Confidence":98.96989}],"Text":"je","Confidence":65.49765},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.25131}],"Text":"wiz_upper_limt","Confidence":62.408276},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":97.26969}],"Text":"vaz\u0131o","Confidence":56.548485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.614624}],"Text":"wu_lower_limt","Confidence":55.028553},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.16063}],"Text":"10","Confidence":54.92081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.39502}],"Text":"cursor","Confidence":53.765144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.177155}],"Text":"tt","Confidence":52.24009}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(70%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(70%).json index deaad09..3f54d2b 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.45165}],"Text":"trend","Confidence":96.161575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51649}],"Text":"profiles","Confidence":65.88847},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.09683}],"Text":"16","Confidence":59.41917},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.2416}],"Text":"10","Confidence":57.18916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53947}],"Text":"wis","Confidence":51.60168},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.08567}],"Text":"17","Confidence":50.508495}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.45165}],"Text":"trend","Confidence":96.161575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.51649}],"Text":"profiles","Confidence":65.88847},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.09683}],"Text":"16","Confidence":59.41917},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.2416}],"Text":"10","Confidence":57.18916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53947}],"Text":"wis","Confidence":51.60168},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.08567}],"Text":"17","Confidence":50.508495}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(80%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(80%).json index 141d1a5..0e6fd50 100644 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.056145}],"Text":"text","Confidence":93.39301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.98366}],"Text":"color","Confidence":85.88563},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51812}],"Text":"18","Confidence":81.88232},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4992}],"Text":"18","Confidence":76.30672},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.40217}],"Text":"1828","Confidence":73.32105},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.0922}],"Text":"10","Confidence":72.783676},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.84548}],"Text":"10","Confidence":66.395905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.550835}],"Text":"tile","Confidence":64.45875},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48254}],"Text":"18","Confidence":60.480656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.2156}],"Text":"gee","Confidence":60.37738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.01341}],"Text":"let","Confidence":54.54662}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.056145}],"Text":"text","Confidence":93.39301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.98366}],"Text":"color","Confidence":85.88563},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51812}],"Text":"18","Confidence":81.88232},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4992}],"Text":"18","Confidence":76.30672},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.40217}],"Text":"1828","Confidence":73.32105},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.0922}],"Text":"10","Confidence":72.783676},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.84548}],"Text":"10","Confidence":66.395905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.550835}],"Text":"tile","Confidence":64.45875},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48254}],"Text":"18","Confidence":60.480656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.2156}],"Text":"gee","Confidence":60.37738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.01341}],"Text":"let","Confidence":54.54662}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(90%).json b/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(90%).json deleted file mode 100644 index ab330c8..0000000 --- a/Examples/testdata/results/etm_gantt_runtime_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.478714}],"Text":"in","Confidence":61.350998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.886734}],"Text":"gd","Confidence":56.066833},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.7661}],"Text":"1628","Confidence":52.115456}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Kapur).json index a5979bd..4faa42e 100644 --- a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5746}],"Text":"of","Confidence":97.01617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"archives","Confidence":97.00861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57087}],"Text":"the","Confidence":96.996086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56976}],"Text":"recorded","Confidence":96.98835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574135}],"Text":"be","Confidence":96.983864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57474}],"Text":"for","Confidence":96.97839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572426}],"Text":"to","Confidence":96.975494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57458}],"Text":"with","Confidence":96.96428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57484}],"Text":"press","Confidence":96.96256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57328}],"Text":"period","Confidence":96.96147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56692}],"Text":"sum","Confidence":96.93292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56191}],"Text":"archive","Confidence":96.916855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56901}],"Text":"you","Confidence":96.908936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57468}],"Text":"this","Confidence":96.90797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.574615}],"Text":"edit","Confidence":96.87979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57353}],"Text":"extended","Confidence":96.85806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57028}],"Text":"process","Confidence":96.8551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57343}],"Text":"without","Confidence":96.83195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5748}],"Text":"average","Confidence":96.81825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54476}],"Text":"assistant","Confidence":96.81335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5517}],"Text":"start","Confidence":96.806076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.542305}],"Text":"page","Confidence":96.79614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54199}],"Text":"over","Confidence":96.79392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.573586}],"Text":"used","Confidence":96.79229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574554}],"Text":"help","Confidence":96.772354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.571014}],"Text":"want","Confidence":96.731926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573906}],"Text":"serve","Confidence":96.69368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52596}],"Text":"assistant","Confidence":96.68176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56684}],"Text":"minimum","Confidence":96.648636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573265}],"Text":"values","Confidence":96.640594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.56622}],"Text":"longer","Confidence":96.60627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574814}],"Text":"an","Confidence":96.53349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52563}],"Text":"data","Confidence":96.51947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.553314}],"Text":"in","Confidence":96.434685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56856}],"Text":"value","Confidence":96.335846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57238}],"Text":"basic","Confidence":96.28213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.572784}],"Text":"engineering","Confidence":96.28213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57324}],"Text":"can","Confidence":96.17789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57434}],"Text":"recording","Confidence":96.167656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.47377}],"Text":"maximum","Confidence":96.16655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.484215}],"Text":"if","Confidence":96.141304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573395}],"Text":"create","Confidence":96.11506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.558}],"Text":"and","Confidence":95.99084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49056}],"Text":"certain","Confidence":95.87307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52945}],"Text":"value","Confidence":95.74674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57235}],"Text":"aggregated","Confidence":95.649025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57245}],"Text":"should","Confidence":95.5013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56775}],"Text":"summarized","Confidence":94.630264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5448}],"Text":"time","Confidence":93.67209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.557}],"Text":"time","Confidence":92.69936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55962}],"Text":"trend","Confidence":91.38034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.23832}],"Text":"now","Confidence":91.20131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56633}],"Text":"archive","Confidence":88.79732}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5746}],"Text":"of","Confidence":97.01617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"archives","Confidence":97.00861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57087}],"Text":"the","Confidence":96.996086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56976}],"Text":"recorded","Confidence":96.98835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574135}],"Text":"be","Confidence":96.983864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57474}],"Text":"for","Confidence":96.97839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572426}],"Text":"to","Confidence":96.975494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57458}],"Text":"with","Confidence":96.96428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57484}],"Text":"press","Confidence":96.96256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57328}],"Text":"period","Confidence":96.96147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56692}],"Text":"sum","Confidence":96.93292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56191}],"Text":"archive","Confidence":96.916855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56901}],"Text":"you","Confidence":96.908936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57468}],"Text":"this","Confidence":96.90797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.574615}],"Text":"edit","Confidence":96.87979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57353}],"Text":"extended","Confidence":96.85806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57028}],"Text":"process","Confidence":96.8551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57343}],"Text":"without","Confidence":96.83195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5748}],"Text":"average","Confidence":96.81825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54476}],"Text":"assistant","Confidence":96.81335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5517}],"Text":"start","Confidence":96.806076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.542305}],"Text":"page","Confidence":96.79614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54199}],"Text":"over","Confidence":96.79392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.573586}],"Text":"used","Confidence":96.79229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574554}],"Text":"help","Confidence":96.772354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.571014}],"Text":"want","Confidence":96.731926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573906}],"Text":"serve","Confidence":96.69368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52596}],"Text":"assistant","Confidence":96.68176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56684}],"Text":"minimum","Confidence":96.648636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573265}],"Text":"values","Confidence":96.640594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.56622}],"Text":"longer","Confidence":96.60627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574814}],"Text":"an","Confidence":96.53349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52563}],"Text":"data","Confidence":96.51947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.553314}],"Text":"in","Confidence":96.434685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56856}],"Text":"value","Confidence":96.335846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57238}],"Text":"basic","Confidence":96.28213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.572784}],"Text":"engineering","Confidence":96.28213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57324}],"Text":"can","Confidence":96.17789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57434}],"Text":"recording","Confidence":96.167656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.47377}],"Text":"maximum","Confidence":96.16655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.484215}],"Text":"if","Confidence":96.141304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573395}],"Text":"create","Confidence":96.11506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.558}],"Text":"and","Confidence":95.99084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49056}],"Text":"certain","Confidence":95.87307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52945}],"Text":"value","Confidence":95.74674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57235}],"Text":"aggregated","Confidence":95.649025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57245}],"Text":"should","Confidence":95.5013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56775}],"Text":"summarized","Confidence":94.630264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5448}],"Text":"time","Confidence":93.67209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.557}],"Text":"time","Confidence":92.69936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55962}],"Text":"trend","Confidence":91.38034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.23832}],"Text":"now","Confidence":91.20131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56633}],"Text":"archive","Confidence":88.79732}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(OTSU).json index fbaa418..58d7d74 100644 --- a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57399}],"Text":"for","Confidence":97.01599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57313}],"Text":"with","Confidence":96.99704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574814}],"Text":"press","Confidence":96.983185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56922}],"Text":"the","Confidence":96.98115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57459}],"Text":"used","Confidence":96.97121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57459}],"Text":"assistant","Confidence":96.96931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.565414}],"Text":"if","Confidence":96.957886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56837}],"Text":"over","Confidence":96.947334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.563774}],"Text":"extended","Confidence":96.946396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56268}],"Text":"page","Confidence":96.938805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.571976}],"Text":"recording","Confidence":96.93012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57488}],"Text":"this","Confidence":96.92758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57213}],"Text":"cancel","Confidence":96.92683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.568535}],"Text":"archives","Confidence":96.92106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55967}],"Text":"of","Confidence":96.9177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56095}],"Text":"help","Confidence":96.90771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5576}],"Text":"start","Confidence":96.90323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55753}],"Text":"assistant","Confidence":96.902756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56806}],"Text":"archive","Confidence":96.887665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56953}],"Text":"you","Confidence":96.88558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57213}],"Text":"value","Confidence":96.82572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.568794}],"Text":"values","Confidence":96.81154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5711}],"Text":"can","Confidence":96.80203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.54164}],"Text":"recorded","Confidence":96.79148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57385}],"Text":"want","Confidence":96.79084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57101}],"Text":"should","Confidence":96.777176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.538704}],"Text":"trend","Confidence":96.77092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54126}],"Text":"to","Confidence":96.740364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56421}],"Text":"certain","Confidence":96.73864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57362}],"Text":"be","Confidence":96.712204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574905}],"Text":"period","Confidence":96.70825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5296}],"Text":"in","Confidence":96.70722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57113}],"Text":"average","Confidence":96.69799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57472}],"Text":"process","Confidence":96.644295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57198}],"Text":"without","Confidence":96.631966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570335}],"Text":"data","Confidence":96.62872},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57449}],"Text":"summarized","Confidence":96.61328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5691}],"Text":"create","Confidence":96.60784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51292}],"Text":"serve","Confidence":96.59042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57422}],"Text":"basic","Confidence":96.42149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.48693}],"Text":"back","Confidence":96.40853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54938}],"Text":"and","Confidence":96.37445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57033}],"Text":"maximum","Confidence":96.37445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48769}],"Text":"aggregated","Confidence":96.28903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.557144}],"Text":"longer","Confidence":96.25748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57448}],"Text":"time","Confidence":96.20109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.45431}],"Text":"value","Confidence":96.18016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5744}],"Text":"edit","Confidence":95.61675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57251}],"Text":"time","Confidence":95.52562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.53725}],"Text":"engineering","Confidence":95.4331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"an","Confidence":95.165054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574875}],"Text":"archive","Confidence":95.165054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573494}],"Text":"minimum","Confidence":94.16749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.03869}],"Text":"sum","Confidence":93.27084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.477585}],"Text":"now","Confidence":89.9521}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57399}],"Text":"for","Confidence":97.01599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57313}],"Text":"with","Confidence":96.99704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574814}],"Text":"press","Confidence":96.983185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56922}],"Text":"the","Confidence":96.98115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57459}],"Text":"used","Confidence":96.97121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57459}],"Text":"assistant","Confidence":96.96931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.565414}],"Text":"if","Confidence":96.957886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56837}],"Text":"over","Confidence":96.947334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.563774}],"Text":"extended","Confidence":96.946396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56268}],"Text":"page","Confidence":96.938805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.571976}],"Text":"recording","Confidence":96.93012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57488}],"Text":"this","Confidence":96.92758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57213}],"Text":"cancel","Confidence":96.92683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.568535}],"Text":"archives","Confidence":96.92106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55967}],"Text":"of","Confidence":96.9177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56095}],"Text":"help","Confidence":96.90771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5576}],"Text":"start","Confidence":96.90323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55753}],"Text":"assistant","Confidence":96.902756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56806}],"Text":"archive","Confidence":96.887665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56953}],"Text":"you","Confidence":96.88558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57213}],"Text":"value","Confidence":96.82572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.568794}],"Text":"values","Confidence":96.81154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5711}],"Text":"can","Confidence":96.80203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.54164}],"Text":"recorded","Confidence":96.79148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57385}],"Text":"want","Confidence":96.79084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57101}],"Text":"should","Confidence":96.777176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.538704}],"Text":"trend","Confidence":96.77092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54126}],"Text":"to","Confidence":96.740364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56421}],"Text":"certain","Confidence":96.73864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57362}],"Text":"be","Confidence":96.712204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574905}],"Text":"period","Confidence":96.70825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5296}],"Text":"in","Confidence":96.70722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57113}],"Text":"average","Confidence":96.69799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57472}],"Text":"process","Confidence":96.644295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57198}],"Text":"without","Confidence":96.631966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570335}],"Text":"data","Confidence":96.62872},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57449}],"Text":"summarized","Confidence":96.61328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5691}],"Text":"create","Confidence":96.60784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51292}],"Text":"serve","Confidence":96.59042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57422}],"Text":"basic","Confidence":96.42149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.48693}],"Text":"back","Confidence":96.40853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54938}],"Text":"and","Confidence":96.37445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57033}],"Text":"maximum","Confidence":96.37445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48769}],"Text":"aggregated","Confidence":96.28903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.557144}],"Text":"longer","Confidence":96.25748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57448}],"Text":"time","Confidence":96.20109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.45431}],"Text":"value","Confidence":96.18016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5744}],"Text":"edit","Confidence":95.61675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57251}],"Text":"time","Confidence":95.52562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.53725}],"Text":"engineering","Confidence":95.4331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"an","Confidence":95.165054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574875}],"Text":"archive","Confidence":95.165054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573494}],"Text":"minimum","Confidence":94.16749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.03869}],"Text":"sum","Confidence":93.27084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.477585}],"Text":"now","Confidence":89.9521}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Triangle).json index a6bb8c5..0b431d3 100644 --- a/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/historian_assistent_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57186}],"Text":"of","Confidence":97.00088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572136}],"Text":"the","Confidence":96.99899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55793}],"Text":"page","Confidence":96.89741},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55961}],"Text":"want","Confidence":96.67587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.52207}],"Text":"with","Confidence":96.65448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57291}],"Text":"press","Confidence":96.53755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54086}],"Text":"without","Confidence":96.46637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.4949}],"Text":"recorded","Confidence":96.4643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.559006}],"Text":"start","Confidence":96.45837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55059}],"Text":"create","Confidence":96.125786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.560875}],"Text":"basic","Confidence":96.02227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.41695}],"Text":"be","Confidence":95.91864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51656}],"Text":"for","Confidence":95.86583},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.566826}],"Text":"trend","Confidence":95.76301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.392784}],"Text":"in","Confidence":95.61772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57021}],"Text":"data","Confidence":95.457405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49737}],"Text":"can","Confidence":95.457405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.49124}],"Text":"should","Confidence":95.04896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57228}],"Text":"extended","Confidence":95.03232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.313446}],"Text":"ha","Confidence":94.96625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54781}],"Text":"archive","Confidence":94.568954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.22345}],"Text":"longer","Confidence":94.56416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.42384}],"Text":"you","Confidence":94.362144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5734}],"Text":"recording","Confidence":94.197815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.36912}],"Text":"assistant","Confidence":93.58403},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.53886}],"Text":"used","Confidence":93.54689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.07002}],"Text":"help","Confidence":93.11589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.87069}],"Text":"time","Confidence":92.094826},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70776}],"Text":"ardive","Confidence":90.925934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.186935}],"Text":"an","Confidence":88.668594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.509796}],"Text":"edit","Confidence":88.2173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.458145}],"Text":"engineering","Confidence":87.93401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":99.08193}],"Text":"cancel","Confidence":87.62673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.79102}],"Text":"din","Confidence":84.53715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57396}],"Text":"period","Confidence":81.43085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.206566}],"Text":"io","Confidence":80.445946},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.02504}],"Text":"aggrega","Confidence":80.06402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.07241}],"Text":"value","Confidence":79.50689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.39009}],"Text":"the","Confidence":74.73062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.69301}],"Text":"now","Confidence":66.70425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54842}],"Text":"assistant","Confidence":59.2847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.189285}],"Text":"vol","Confidence":58.06583},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.4639}],"Text":"archives","Confidence":56.093693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57116}],"Text":"serve","Confidence":56.093693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.66409}],"Text":"val","Confidence":56.087906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.98265}],"Text":"ag","Confidence":53.754997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.6425}],"Text":"af","Confidence":52.86772}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57186}],"Text":"of","Confidence":97.00088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572136}],"Text":"the","Confidence":96.99899},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55793}],"Text":"page","Confidence":96.89741},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.55961}],"Text":"want","Confidence":96.67587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.52207}],"Text":"with","Confidence":96.65448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57291}],"Text":"press","Confidence":96.53755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54086}],"Text":"without","Confidence":96.46637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.4949}],"Text":"recorded","Confidence":96.4643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.559006}],"Text":"start","Confidence":96.45837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55059}],"Text":"create","Confidence":96.125786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.560875}],"Text":"basic","Confidence":96.02227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.41695}],"Text":"be","Confidence":95.91864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51656}],"Text":"for","Confidence":95.86583},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.566826}],"Text":"trend","Confidence":95.76301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.392784}],"Text":"in","Confidence":95.61772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57021}],"Text":"data","Confidence":95.457405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49737}],"Text":"can","Confidence":95.457405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.49124}],"Text":"should","Confidence":95.04896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57228}],"Text":"extended","Confidence":95.03232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.313446}],"Text":"ha","Confidence":94.96625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54781}],"Text":"archive","Confidence":94.568954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.22345}],"Text":"longer","Confidence":94.56416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.42384}],"Text":"you","Confidence":94.362144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5734}],"Text":"recording","Confidence":94.197815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.36912}],"Text":"assistant","Confidence":93.58403},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.53886}],"Text":"used","Confidence":93.54689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.07002}],"Text":"help","Confidence":93.11589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.87069}],"Text":"time","Confidence":92.094826},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70776}],"Text":"ardive","Confidence":90.925934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.186935}],"Text":"an","Confidence":88.668594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.509796}],"Text":"edit","Confidence":88.2173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.458145}],"Text":"engineering","Confidence":87.93401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":99.08193}],"Text":"cancel","Confidence":87.62673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.79102}],"Text":"din","Confidence":84.53715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57396}],"Text":"period","Confidence":81.43085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.206566}],"Text":"io","Confidence":80.445946},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.02504}],"Text":"aggrega","Confidence":80.06402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.07241}],"Text":"value","Confidence":79.50689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.39009}],"Text":"the","Confidence":74.73062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.69301}],"Text":"now","Confidence":66.70425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54842}],"Text":"assistant","Confidence":59.2847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.189285}],"Text":"vol","Confidence":58.06583},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.4639}],"Text":"archives","Confidence":56.093693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57116}],"Text":"serve","Confidence":56.093693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.66409}],"Text":"val","Confidence":56.087906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.98265}],"Text":"ag","Confidence":53.754997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.6425}],"Text":"af","Confidence":52.86772}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 83fc427..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.61874}],"Text":"lz","Confidence":60.64555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.10256}],"Text":"paige","Confidence":57.30738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.31502}],"Text":"start","Confidence":56.744843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.6109}],"Text":"archive","Confidence":50.06642}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(04_04).json index c84ad39..862f88b 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":96.140144}],"Text":"recorded","Confidence":70.312126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34356}],"Text":"set","Confidence":60.91986}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":96.140144}],"Text":"recorded","Confidence":70.312126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34356}],"Text":"set","Confidence":60.91986}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 1b43ec6..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.71156}],"Text":"pe","Confidence":84.8462},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.52071}],"Text":"tain","Confidence":55.556747}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(08_08).json index f9b2651..b64f9d0 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572914}],"Text":"be","Confidence":96.98287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570595}],"Text":"of","Confidence":96.97409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56968}],"Text":"used","Confidence":96.94274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.574036}],"Text":"in","Confidence":96.90639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57364}],"Text":"without","Confidence":96.88912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56734}],"Text":"the","Confidence":96.869484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56244}],"Text":"archive","Confidence":96.79431},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540054}],"Text":"and","Confidence":96.780396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572815}],"Text":"want","Confidence":96.76738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55592}],"Text":"archives","Confidence":96.715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57375}],"Text":"period","Confidence":96.70773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56307}],"Text":"summarized","Confidence":96.69444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572586}],"Text":"serve","Confidence":96.61677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57391}],"Text":"recording","Confidence":96.502556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49313}],"Text":"can","Confidence":96.45191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57114}],"Text":"recorded","Confidence":96.37222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56564}],"Text":"process","Confidence":96.3566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.47501}],"Text":"help","Confidence":96.3251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.531746}],"Text":"basic","Confidence":96.230835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54777}],"Text":"should","Confidence":96.13594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56215}],"Text":"engineering","Confidence":96.1176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56208}],"Text":"maximum","Confidence":96.055595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574036}],"Text":"aggregated","Confidence":95.85144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.553955}],"Text":"data","Confidence":94.6617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.18478}],"Text":"certain","Confidence":94.29343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56371}],"Text":"with","Confidence":94.165596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.558975}],"Text":"extended","Confidence":94.073746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.388336}],"Text":"you","Confidence":93.73306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56557}],"Text":"assistant","Confidence":92.84242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56979}],"Text":"press","Confidence":92.777374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.560974}],"Text":"values","Confidence":92.63517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51651}],"Text":"for","Confidence":90.78012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.265366}],"Text":"value","Confidence":90.328896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.557686}],"Text":"of","Confidence":89.87695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.97014}],"Text":"over","Confidence":88.14393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.466354}],"Text":"longer","Confidence":88.11635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57193}],"Text":"assistant","Confidence":82.80447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5672}],"Text":"to","Confidence":74.37357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56467}],"Text":"edit","Confidence":74.37357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.543625}],"Text":"minimum","Confidence":71.41464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.95112}],"Text":"createjarchive","Confidence":71.3834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.383835}],"Text":"trend","Confidence":67.17565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567764}],"Text":"an","Confidence":63.744446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.57471}],"Text":"this","Confidence":62.022926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.866196}],"Text":"whe","Confidence":57.063377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.238014}],"Text":"value","Confidence":55.216408}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572914}],"Text":"be","Confidence":96.98287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570595}],"Text":"of","Confidence":96.97409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56968}],"Text":"used","Confidence":96.94274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.574036}],"Text":"in","Confidence":96.90639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57364}],"Text":"without","Confidence":96.88912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56734}],"Text":"the","Confidence":96.869484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56244}],"Text":"archive","Confidence":96.79431},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540054}],"Text":"and","Confidence":96.780396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572815}],"Text":"want","Confidence":96.76738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55592}],"Text":"archives","Confidence":96.715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57375}],"Text":"period","Confidence":96.70773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56307}],"Text":"summarized","Confidence":96.69444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572586}],"Text":"serve","Confidence":96.61677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57391}],"Text":"recording","Confidence":96.502556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49313}],"Text":"can","Confidence":96.45191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57114}],"Text":"recorded","Confidence":96.37222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56564}],"Text":"process","Confidence":96.3566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.47501}],"Text":"help","Confidence":96.3251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.531746}],"Text":"basic","Confidence":96.230835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54777}],"Text":"should","Confidence":96.13594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56215}],"Text":"engineering","Confidence":96.1176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56208}],"Text":"maximum","Confidence":96.055595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574036}],"Text":"aggregated","Confidence":95.85144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.553955}],"Text":"data","Confidence":94.6617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.18478}],"Text":"certain","Confidence":94.29343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56371}],"Text":"with","Confidence":94.165596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.558975}],"Text":"extended","Confidence":94.073746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.388336}],"Text":"you","Confidence":93.73306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56557}],"Text":"assistant","Confidence":92.84242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56979}],"Text":"press","Confidence":92.777374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.560974}],"Text":"values","Confidence":92.63517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51651}],"Text":"for","Confidence":90.78012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.265366}],"Text":"value","Confidence":90.328896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.557686}],"Text":"of","Confidence":89.87695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.97014}],"Text":"over","Confidence":88.14393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.466354}],"Text":"longer","Confidence":88.11635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57193}],"Text":"assistant","Confidence":82.80447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5672}],"Text":"to","Confidence":74.37357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56467}],"Text":"edit","Confidence":74.37357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.543625}],"Text":"minimum","Confidence":71.41464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.95112}],"Text":"createjarchive","Confidence":71.3834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.383835}],"Text":"trend","Confidence":67.17565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.567764}],"Text":"an","Confidence":63.744446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.57471}],"Text":"this","Confidence":62.022926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.866196}],"Text":"whe","Confidence":57.063377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.238014}],"Text":"value","Confidence":55.216408}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 2755b2c..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57425}],"Text":"of","Confidence":96.86356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574684}],"Text":"period","Confidence":96.84334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57257}],"Text":"serve","Confidence":96.44152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.41942}],"Text":"longer","Confidence":95.93594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57352}],"Text":"values","Confidence":95.670784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57014}],"Text":"recording","Confidence":95.226364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573364}],"Text":"process","Confidence":94.18346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57416}],"Text":"for","Confidence":86.280525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50798}],"Text":"the","Confidence":85.743324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57261}],"Text":"for","Confidence":85.743324},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02141}],"Text":"createjarchive","Confidence":74.62306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.30178}],"Text":"archives","Confidence":72.31457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53713}],"Text":"times","Confidence":61.777508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56872}],"Text":"over","Confidence":58.725605}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(12_12).json index 00d0797..3b73157 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57021}],"Text":"data","Confidence":96.991486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568565}],"Text":"certain","Confidence":96.90482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.558846}],"Text":"can","Confidence":96.89168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573586}],"Text":"be","Confidence":96.89168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.553955}],"Text":"of","Confidence":96.87768},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57335}],"Text":"the","Confidence":96.868645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56918}],"Text":"over","Confidence":96.86126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5651}],"Text":"maximum","Confidence":96.822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57262}],"Text":"archives","Confidence":96.80168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56635}],"Text":"period","Confidence":96.68632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.569115}],"Text":"minimum","Confidence":96.62319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573006}],"Text":"recorded","Confidence":96.61116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574646}],"Text":"and","Confidence":96.552315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55945}],"Text":"summarized","Confidence":96.5321},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55139}],"Text":"process","Confidence":96.36194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549805}],"Text":"in","Confidence":96.0781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55378}],"Text":"recording","Confidence":95.97229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57236}],"Text":"values","Confidence":95.9223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.561806}],"Text":"value","Confidence":95.40558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.558556}],"Text":"longer","Confidence":95.14865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574165}],"Text":"aggregated","Confidence":93.29314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4763}],"Text":"create","Confidence":86.70169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55875}],"Text":"archive","Confidence":86.70169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.13303}],"Text":"value","Confidence":86.16467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572075}],"Text":"time","Confidence":63.228943},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.01908}],"Text":"oftme","Confidence":56.411842}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57021}],"Text":"data","Confidence":96.991486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.568565}],"Text":"certain","Confidence":96.90482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.558846}],"Text":"can","Confidence":96.89168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573586}],"Text":"be","Confidence":96.89168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.553955}],"Text":"of","Confidence":96.87768},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57335}],"Text":"the","Confidence":96.868645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56918}],"Text":"over","Confidence":96.86126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5651}],"Text":"maximum","Confidence":96.822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57262}],"Text":"archives","Confidence":96.80168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56635}],"Text":"period","Confidence":96.68632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.569115}],"Text":"minimum","Confidence":96.62319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573006}],"Text":"recorded","Confidence":96.61116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574646}],"Text":"and","Confidence":96.552315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55945}],"Text":"summarized","Confidence":96.5321},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55139}],"Text":"process","Confidence":96.36194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549805}],"Text":"in","Confidence":96.0781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55378}],"Text":"recording","Confidence":95.97229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57236}],"Text":"values","Confidence":95.9223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.561806}],"Text":"value","Confidence":95.40558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.558556}],"Text":"longer","Confidence":95.14865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574165}],"Text":"aggregated","Confidence":93.29314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4763}],"Text":"create","Confidence":86.70169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55875}],"Text":"archive","Confidence":86.70169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.13303}],"Text":"value","Confidence":86.16467},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572075}],"Text":"time","Confidence":63.228943},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.01908}],"Text":"oftme","Confidence":56.411842}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index c6168e4..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57483}],"Text":"of","Confidence":97.01749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573044}],"Text":"be","Confidence":97.00743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574554}],"Text":"period","Confidence":96.98771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5747}],"Text":"start","Confidence":96.986084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573135}],"Text":"data","Confidence":96.95359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56778}],"Text":"serve","Confidence":96.943726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571396}],"Text":"archives","Confidence":96.866196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57009}],"Text":"can","Confidence":96.86508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56662}],"Text":"create","Confidence":96.826866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55013}],"Text":"archive","Confidence":96.826866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56245}],"Text":"tin","Confidence":96.81921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"page","Confidence":96.76711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.532295}],"Text":"the","Confidence":96.72606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56924}],"Text":"value","Confidence":96.513115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57053}],"Text":"summarized","Confidence":96.43441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56149}],"Text":"value","Confidence":96.42825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572784}],"Text":"and","Confidence":96.42561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57071}],"Text":"minimum","Confidence":96.20023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55204}],"Text":"certain","Confidence":96.166306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56558}],"Text":"over","Confidence":96.09575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57443}],"Text":"maximum","Confidence":96.034386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5728}],"Text":"recorded","Confidence":95.86091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.3419}],"Text":"values","Confidence":95.393326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55013}],"Text":"aggregated","Confidence":93.87582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.11287}],"Text":"longer","Confidence":93.79009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04976}],"Text":"process","Confidence":93.34832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.465195}],"Text":"in","Confidence":93.30165},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.03761}],"Text":"recordi","Confidence":92.54501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.87068}],"Text":"ing","Confidence":92.09478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56582}],"Text":"sum","Confidence":87.15589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56965}],"Text":"time","Confidence":65.2759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":94.95411}],"Text":"tg","Confidence":64.67876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":94.779434}],"Text":"for","Confidence":63.456055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.569855}],"Text":"pre","Confidence":56.519047}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(16_16).json index 18bd3f1..7226b2b 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56696}],"Text":"this","Confidence":96.9685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"archives","Confidence":96.96033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57479}],"Text":"start","Confidence":96.94707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57436}],"Text":"create","Confidence":96.87757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55784}],"Text":"ofan","Confidence":96.87198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568924}],"Text":"page","Confidence":96.82812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574265}],"Text":"with","Confidence":96.82187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5712}],"Text":"engineering","Confidence":96.79463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54255}],"Text":"assistant","Confidence":96.79022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57388}],"Text":"should","Confidence":96.78299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57359}],"Text":"the","Confidence":96.69998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57314}],"Text":"archive","Confidence":96.528595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.526665}],"Text":"help","Confidence":96.328476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.333565}],"Text":"basic","Confidence":95.33498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.058586}],"Text":"aggregated","Confidence":93.41009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":98.60997}],"Text":"you","Confidence":90.2698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5715}],"Text":"archive","Confidence":74.368225}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56696}],"Text":"this","Confidence":96.9685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"archives","Confidence":96.96033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57479}],"Text":"start","Confidence":96.94707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57436}],"Text":"create","Confidence":96.87757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55784}],"Text":"ofan","Confidence":96.87198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568924}],"Text":"page","Confidence":96.82812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574265}],"Text":"with","Confidence":96.82187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5712}],"Text":"engineering","Confidence":96.79463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54255}],"Text":"assistant","Confidence":96.79022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57388}],"Text":"should","Confidence":96.78299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57359}],"Text":"the","Confidence":96.69998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57314}],"Text":"archive","Confidence":96.528595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.526665}],"Text":"help","Confidence":96.328476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.333565}],"Text":"basic","Confidence":95.33498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.058586}],"Text":"aggregated","Confidence":93.41009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":98.60997}],"Text":"you","Confidence":90.2698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5715}],"Text":"archive","Confidence":74.368225}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index fb19e0d..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572136}],"Text":"the","Confidence":97.00496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56954}],"Text":"of","Confidence":96.98677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56899}],"Text":"to","Confidence":96.982254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57334}],"Text":"period","Confidence":96.971306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57155}],"Text":"data","Confidence":96.96676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56476}],"Text":"extended","Confidence":96.95333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573}],"Text":"for","Confidence":96.94579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57224}],"Text":"serve","Confidence":96.92565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55387}],"Text":"over","Confidence":96.87677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54441}],"Text":"can","Confidence":96.81089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55379}],"Text":"be","Confidence":96.80767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5504}],"Text":"archives","Confidence":96.758095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57434}],"Text":"recording","Confidence":96.756424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56982}],"Text":"help","Confidence":96.67687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.557434}],"Text":"in","Confidence":96.64725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57488}],"Text":"archive","Confidence":96.57808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57149}],"Text":"values","Confidence":96.520325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57378}],"Text":"minimum","Confidence":96.51619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57442}],"Text":"and","Confidence":96.51014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.49478}],"Text":"press","Confidence":96.46347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57448}],"Text":"value","Confidence":96.22332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5667}],"Text":"maximum","Confidence":96.18684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.50778}],"Text":"value","Confidence":96.12788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.443825}],"Text":"certain","Confidence":96.10677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56922}],"Text":"recorded","Confidence":95.92954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56767}],"Text":"used","Confidence":95.79897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573006}],"Text":"summarized","Confidence":95.77098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57361}],"Text":"create","Confidence":95.73181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57266}],"Text":"edit","Confidence":95.6437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56515}],"Text":"assistant","Confidence":95.596176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573555}],"Text":"without","Confidence":95.587975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5248}],"Text":"you","Confidence":94.99618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57388}],"Text":"want","Confidence":94.99618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.55611}],"Text":"sum","Confidence":94.86982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5748}],"Text":"process","Confidence":94.52121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.01652}],"Text":"longer","Confidence":93.11561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.9422}],"Text":"aggregated","Confidence":92.59539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.42431}],"Text":"now","Confidence":83.74812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.06687}],"Text":"time","Confidence":72.15248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":95.92141}],"Text":"cancel","Confidence":71.44986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.64638}],"Text":"if","Confidence":62.52465}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(20_20).json index cb6250d..2c6e420 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 1a1a6f9..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57462}],"Text":"of","Confidence":97.01734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.571915}],"Text":"the","Confidence":96.98436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57243}],"Text":"this","Confidence":96.97911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57458}],"Text":"without","Confidence":96.94314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56988}],"Text":"for","Confidence":96.920334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.571}],"Text":"engineering","Confidence":96.92005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57185}],"Text":"want","Confidence":96.91576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574615}],"Text":"archive","Confidence":96.89885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.571625}],"Text":"cre","Confidence":96.865555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.555756}],"Text":"archives","Confidence":96.86407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57269}],"Text":"certain","Confidence":96.830826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55499}],"Text":"help","Confidence":96.80958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57316}],"Text":"edit","Confidence":96.80255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57439}],"Text":"period","Confidence":96.77969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57395}],"Text":"serve","Confidence":96.76653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56957}],"Text":"extended","Confidence":96.76191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57309}],"Text":"and","Confidence":96.731995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54802}],"Text":"press","Confidence":96.706345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.564415}],"Text":"you","Confidence":96.68864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.558754}],"Text":"to","Confidence":96.63518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5673}],"Text":"value","Confidence":96.611916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.568726}],"Text":"basic","Confidence":96.493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.569855}],"Text":"recording","Confidence":96.49145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56832}],"Text":"ate","Confidence":96.33082},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55205}],"Text":"should","Confidence":96.32098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.49392}],"Text":"maximum","Confidence":96.29812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.562546}],"Text":"over","Confidence":96.27469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.4665}],"Text":"ofa","Confidence":96.256424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57265}],"Text":"data","Confidence":96.112686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57258}],"Text":"values","Confidence":95.97297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56479}],"Text":"can","Confidence":95.70695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56118}],"Text":"recorded","Confidence":94.98004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.43596}],"Text":"longer","Confidence":94.50533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.545616}],"Text":"start","Confidence":94.11746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.051765}],"Text":"minimum","Confidence":93.36237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5719}],"Text":"be","Confidence":93.29829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56656}],"Text":"assistant","Confidence":93.154686},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.01475}],"Text":"beusedin","Confidence":91.907486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.3938}],"Text":"page","Confidence":91.21827},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57066}],"Text":"archive","Confidence":91.08711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.21691}],"Text":"if","Confidence":90.195366},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.343124}],"Text":"summarizedin","Confidence":88.40186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.74364}],"Text":"assistant","Confidence":84.20546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.223145}],"Text":"value","Confidence":83.71762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57071}],"Text":"with","Confidence":83.05614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5737}],"Text":"trend","Confidence":82.554016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56577}],"Text":"time","Confidence":75.64868},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.570755}],"Text":"time","Confidence":72.95755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.65209}],"Text":"cum","Confidence":65.8385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":99.252106}],"Text":"cancel","Confidence":57.09213}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(24_24).json index 3715086..d4aef71 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56952}],"Text":"the","Confidence":96.986626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57038}],"Text":"of","Confidence":96.93956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.571144}],"Text":"data","Confidence":96.90841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57097}],"Text":"serve","Confidence":96.908356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57196}],"Text":"process","Confidence":96.892235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57138}],"Text":"can","Confidence":96.879745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57351}],"Text":"be","Confidence":96.879745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.563065}],"Text":"recorded","Confidence":96.86764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5688}],"Text":"average","Confidence":96.85601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.555595}],"Text":"you","Confidence":96.84132},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56147}],"Text":"maximum","Confidence":96.78699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53867}],"Text":"want","Confidence":96.77073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56967}],"Text":"for","Confidence":96.76718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.536964}],"Text":"help","Confidence":96.65933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54045}],"Text":"over","Confidence":96.65367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57322}],"Text":"create","Confidence":96.63442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57453}],"Text":"archive","Confidence":96.63442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56479}],"Text":"basic","Confidence":96.62987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"and","Confidence":96.602165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.53578}],"Text":"archives","Confidence":96.574165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.509445}],"Text":"with","Confidence":96.56611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57401}],"Text":"period","Confidence":96.53012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56677}],"Text":"value","Confidence":96.481415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56348}],"Text":"should","Confidence":96.46663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.48546}],"Text":"sum","Confidence":96.39822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48161}],"Text":"this","Confidence":96.3713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.53377}],"Text":"longer","Confidence":96.22457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57133}],"Text":"values","Confidence":96.17511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57024}],"Text":"summa","Confidence":96.01818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57182}],"Text":"extended","Confidence":95.94174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57172}],"Text":"recording","Confidence":95.92714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.572426}],"Text":"engineering","Confidence":95.918076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.518875}],"Text":"certain","Confidence":95.66309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.559525}],"Text":"in","Confidence":95.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57294}],"Text":"used","Confidence":95.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.46849}],"Text":"page","Confidence":94.713005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.15377}],"Text":"minimum","Confidence":94.0764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55431}],"Text":"start","Confidence":93.64091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57385}],"Text":"assistant","Confidence":92.63508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.94261}],"Text":"value","Confidence":92.59826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.35777}],"Text":"summarized","Confidence":92.06937},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56697}],"Text":"an","Confidence":88.77291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55132}],"Text":"trend","Confidence":87.26196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.97771}],"Text":"time","Confidence":86.71997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52172}],"Text":"time","Confidence":86.12999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56937}],"Text":"archive","Confidence":82.78998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.22627}],"Text":"to","Confidence":80.567505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.29541}],"Text":"aggregated","Confidence":75.77595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.85525}],"Text":"edit","Confidence":72.108734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57312}],"Text":"st","Confidence":66.90312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.59276}],"Text":"is","Confidence":66.882744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55752}],"Text":"assistant","Confidence":63.409252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.32661}],"Text":"ifyou","Confidence":53.286266}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56952}],"Text":"the","Confidence":96.986626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57038}],"Text":"of","Confidence":96.93956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.571144}],"Text":"data","Confidence":96.90841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57097}],"Text":"serve","Confidence":96.908356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57196}],"Text":"process","Confidence":96.892235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57138}],"Text":"can","Confidence":96.879745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57351}],"Text":"be","Confidence":96.879745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.563065}],"Text":"recorded","Confidence":96.86764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5688}],"Text":"average","Confidence":96.85601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.555595}],"Text":"you","Confidence":96.84132},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56147}],"Text":"maximum","Confidence":96.78699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53867}],"Text":"want","Confidence":96.77073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56967}],"Text":"for","Confidence":96.76718},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.536964}],"Text":"help","Confidence":96.65933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54045}],"Text":"over","Confidence":96.65367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57322}],"Text":"create","Confidence":96.63442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57453}],"Text":"archive","Confidence":96.63442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56479}],"Text":"basic","Confidence":96.62987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"and","Confidence":96.602165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.53578}],"Text":"archives","Confidence":96.574165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.509445}],"Text":"with","Confidence":96.56611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57401}],"Text":"period","Confidence":96.53012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56677}],"Text":"value","Confidence":96.481415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56348}],"Text":"should","Confidence":96.46663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.48546}],"Text":"sum","Confidence":96.39822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48161}],"Text":"this","Confidence":96.3713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.53377}],"Text":"longer","Confidence":96.22457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57133}],"Text":"values","Confidence":96.17511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57024}],"Text":"summa","Confidence":96.01818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57182}],"Text":"extended","Confidence":95.94174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57172}],"Text":"recording","Confidence":95.92714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.572426}],"Text":"engineering","Confidence":95.918076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.518875}],"Text":"certain","Confidence":95.66309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.559525}],"Text":"in","Confidence":95.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57294}],"Text":"used","Confidence":95.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.46849}],"Text":"page","Confidence":94.713005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.15377}],"Text":"minimum","Confidence":94.0764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55431}],"Text":"start","Confidence":93.64091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57385}],"Text":"assistant","Confidence":92.63508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.94261}],"Text":"value","Confidence":92.59826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.35777}],"Text":"summarized","Confidence":92.06937},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56697}],"Text":"an","Confidence":88.77291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55132}],"Text":"trend","Confidence":87.26196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.97771}],"Text":"time","Confidence":86.71997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52172}],"Text":"time","Confidence":86.12999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56937}],"Text":"archive","Confidence":82.78998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.22627}],"Text":"to","Confidence":80.567505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.29541}],"Text":"aggregated","Confidence":75.77595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.85525}],"Text":"edit","Confidence":72.108734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57312}],"Text":"st","Confidence":66.90312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.59276}],"Text":"is","Confidence":66.882744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55752}],"Text":"assistant","Confidence":63.409252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.32661}],"Text":"ifyou","Confidence":53.286266}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(0%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(10%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(10%).json deleted file mode 100644 index ac5da45..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57429}],"Text":"this","Confidence":96.96572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56369}],"Text":"of","Confidence":96.94584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56342}],"Text":"the","Confidence":96.94397},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57406}],"Text":"should","Confidence":96.79006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.53313}],"Text":"basic","Confidence":96.73189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57299}],"Text":"help","Confidence":96.709724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56911}],"Text":"assistant","Confidence":96.67134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57255}],"Text":"in","Confidence":96.65757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56434}],"Text":"recording","Confidence":96.65745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51816}],"Text":"data","Confidence":96.55436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5392}],"Text":"assistant","Confidence":96.54914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.49946}],"Text":"you","Confidence":96.49619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57355}],"Text":"process","Confidence":96.447716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56931}],"Text":"can","Confidence":96.43885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47983}],"Text":"cancel","Confidence":96.358795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55762}],"Text":"archi","Confidence":96.31763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56382}],"Text":"maximum","Confidence":96.31464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56959}],"Text":"an","Confidence":96.3107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.54666}],"Text":"be","Confidence":96.2642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.54957}],"Text":"minimum","Confidence":96.25587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573814}],"Text":"extended","Confidence":96.20504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57354}],"Text":"create","Confidence":96.16375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57392}],"Text":"archive","Confidence":96.15697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55585}],"Text":"recorded","Confidence":96.1525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55247}],"Text":"certain","Confidence":96.13158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57402}],"Text":"summarized","Confidence":96.10596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.40386}],"Text":"values","Confidence":95.82704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56741}],"Text":"for","Confidence":95.819046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.51537}],"Text":"used","Confidence":95.787155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56202}],"Text":"engineering","Confidence":95.62475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.571014}],"Text":"period","Confidence":95.207756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.534}],"Text":"if","Confidence":95.19912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.30819}],"Text":"and","Confidence":95.1573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5665}],"Text":"press","Confidence":94.96072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.22251}],"Text":"aggregated","Confidence":94.00939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.47636}],"Text":"over","Confidence":93.82408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56622}],"Text":"trend","Confidence":93.498184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.06875}],"Text":"want","Confidence":93.45538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55643}],"Text":"edit","Confidence":92.68243},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5604}],"Text":"to","Confidence":92.67103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57351}],"Text":"time","Confidence":92.388626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.45793}],"Text":"value","Confidence":89.2055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.43099}],"Text":"value","Confidence":88.37481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.31715}],"Text":"ves","Confidence":88.22001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50449}],"Text":"time","Confidence":84.22505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.537315}],"Text":"longer","Confidence":84.081604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.14297}],"Text":"vith","Confidence":82.589165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52166}],"Text":"time","Confidence":77.195145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":96.467896}],"Text":"next","Confidence":75.27525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.47278}],"Text":"serve","Confidence":67.91975},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.059006}],"Text":"withgut","Confidence":66.90348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.985695}],"Text":"cancel","Confidence":57.89984}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(100%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(20%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(20%).json index 27dc0dd..0dd01b4 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57465}],"Text":"this","Confidence":96.99519},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57078}],"Text":"of","Confidence":96.99235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"the","Confidence":96.97535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.568085}],"Text":"help","Confidence":96.96755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57226}],"Text":"in","Confidence":96.95137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572685}],"Text":"can","Confidence":96.92599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569695}],"Text":"assistant","Confidence":96.911545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570274}],"Text":"basic","Confidence":96.908005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57221}],"Text":"recording","Confidence":96.89847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5593}],"Text":"recorded","Confidence":96.87913},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57222}],"Text":"should","Confidence":96.87672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57078}],"Text":"data","Confidence":96.873955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56053}],"Text":"used","Confidence":96.83023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57315}],"Text":"archive","Confidence":96.82316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.547646}],"Text":"process","Confidence":96.74326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5742}],"Text":"period","Confidence":96.741714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569336}],"Text":"an","Confidence":96.73236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52344}],"Text":"archives","Confidence":96.66405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56021}],"Text":"start","Confidence":96.62938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.524734}],"Text":"you","Confidence":96.623604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51514}],"Text":"assistant","Confidence":96.60594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57429}],"Text":"extended","Confidence":96.5456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565}],"Text":"to","Confidence":96.49184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55965}],"Text":"cancel","Confidence":96.44058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56971}],"Text":"engineering","Confidence":96.43929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54708}],"Text":"press","Confidence":96.38578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48167}],"Text":"and","Confidence":96.37164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57027}],"Text":"minimum","Confidence":96.28523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.46695}],"Text":"values","Confidence":96.26862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.522835}],"Text":"certain","Confidence":96.26526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57354}],"Text":"create","Confidence":96.16375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.54577}],"Text":"maximum","Confidence":96.16341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5206}],"Text":"average","Confidence":95.90369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57199}],"Text":"be","Confidence":95.76963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52961}],"Text":"over","Confidence":95.71869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57101}],"Text":"for","Confidence":95.61626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55923}],"Text":"edit","Confidence":95.134476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573875}],"Text":"summarized","Confidence":94.70364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5651}],"Text":"serve","Confidence":93.93729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55191}],"Text":"longer","Confidence":93.356346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.50346}],"Text":"if","Confidence":92.67034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.70124}],"Text":"sum","Confidence":90.90868},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.63521}],"Text":"next","Confidence":90.44648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574165}],"Text":"trend","Confidence":90.33875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.718315}],"Text":"cancel","Confidence":89.63154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.50924}],"Text":"archive","Confidence":88.42143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.307106}],"Text":"want","Confidence":88.149765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.9339}],"Text":"value","Confidence":85.53732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.86869}],"Text":"value","Confidence":85.08085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.563034}],"Text":"time","Confidence":79.6906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.636604}],"Text":"with","Confidence":79.33448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.50627}],"Text":"now","Confidence":72.2918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.38846}],"Text":"page","Confidence":60.71919},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"y","Confidence":93.23122}],"Text":"yithout","Confidence":52.618515}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57465}],"Text":"this","Confidence":96.99519},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57078}],"Text":"of","Confidence":96.99235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"the","Confidence":96.97535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.568085}],"Text":"help","Confidence":96.96755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57226}],"Text":"in","Confidence":96.95137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572685}],"Text":"can","Confidence":96.92599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569695}],"Text":"assistant","Confidence":96.911545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570274}],"Text":"basic","Confidence":96.908005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57221}],"Text":"recording","Confidence":96.89847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5593}],"Text":"recorded","Confidence":96.87913},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57222}],"Text":"should","Confidence":96.87672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57078}],"Text":"data","Confidence":96.873955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56053}],"Text":"used","Confidence":96.83023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57315}],"Text":"archive","Confidence":96.82316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.547646}],"Text":"process","Confidence":96.74326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5742}],"Text":"period","Confidence":96.741714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569336}],"Text":"an","Confidence":96.73236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.52344}],"Text":"archives","Confidence":96.66405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56021}],"Text":"start","Confidence":96.62938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.524734}],"Text":"you","Confidence":96.623604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51514}],"Text":"assistant","Confidence":96.60594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57429}],"Text":"extended","Confidence":96.5456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565}],"Text":"to","Confidence":96.49184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55965}],"Text":"cancel","Confidence":96.44058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56971}],"Text":"engineering","Confidence":96.43929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54708}],"Text":"press","Confidence":96.38578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.48167}],"Text":"and","Confidence":96.37164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57027}],"Text":"minimum","Confidence":96.28523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.46695}],"Text":"values","Confidence":96.26862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.522835}],"Text":"certain","Confidence":96.26526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57354}],"Text":"create","Confidence":96.16375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.54577}],"Text":"maximum","Confidence":96.16341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5206}],"Text":"average","Confidence":95.90369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57199}],"Text":"be","Confidence":95.76963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52961}],"Text":"over","Confidence":95.71869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57101}],"Text":"for","Confidence":95.61626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55923}],"Text":"edit","Confidence":95.134476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573875}],"Text":"summarized","Confidence":94.70364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5651}],"Text":"serve","Confidence":93.93729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55191}],"Text":"longer","Confidence":93.356346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.50346}],"Text":"if","Confidence":92.67034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.70124}],"Text":"sum","Confidence":90.90868},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.63521}],"Text":"next","Confidence":90.44648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574165}],"Text":"trend","Confidence":90.33875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.718315}],"Text":"cancel","Confidence":89.63154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.50924}],"Text":"archive","Confidence":88.42143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":98.307106}],"Text":"want","Confidence":88.149765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.9339}],"Text":"value","Confidence":85.53732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.86869}],"Text":"value","Confidence":85.08085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.563034}],"Text":"time","Confidence":79.6906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.636604}],"Text":"with","Confidence":79.33448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.50627}],"Text":"now","Confidence":72.2918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.38846}],"Text":"page","Confidence":60.71919},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"y","Confidence":93.23122}],"Text":"yithout","Confidence":52.618515}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(40%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(40%).json index 3d19b05..229da44 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572655}],"Text":"value","Confidence":96.99113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.571075}],"Text":"can","Confidence":96.99092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5724}],"Text":"the","Confidence":96.98824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.5693}],"Text":"if","Confidence":96.98507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56804}],"Text":"of","Confidence":96.97626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.567566}],"Text":"be","Confidence":96.97298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5738}],"Text":"you","Confidence":96.97291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5681}],"Text":"archives","Confidence":96.97241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56814}],"Text":"data","Confidence":96.96276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56888}],"Text":"edit","Confidence":96.95809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566536}],"Text":"for","Confidence":96.95578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56883}],"Text":"help","Confidence":96.9551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"archive","Confidence":96.94599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57409}],"Text":"summarized","Confidence":96.90075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56386}],"Text":"cancel","Confidence":96.877525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573044}],"Text":"with","Confidence":96.866035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57464}],"Text":"certain","Confidence":96.85973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57469}],"Text":"and","Confidence":96.851456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57088}],"Text":"should","Confidence":96.84594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57434}],"Text":"without","Confidence":96.83552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573586}],"Text":"recorded","Confidence":96.832245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54741}],"Text":"values","Confidence":96.831856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57357}],"Text":"period","Confidence":96.80013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56427}],"Text":"in","Confidence":96.79496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.572975}],"Text":"used","Confidence":96.79496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55675}],"Text":"over","Confidence":96.741875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57461}],"Text":"want","Confidence":96.739975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57058}],"Text":"to","Confidence":96.739975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56716}],"Text":"an","Confidence":96.73711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56129}],"Text":"recording","Confidence":96.71706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574486}],"Text":"average","Confidence":96.67584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54621}],"Text":"aggregated","Confidence":96.643906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53056}],"Text":"value","Confidence":96.63481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5711}],"Text":"serve","Confidence":96.61772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56873}],"Text":"assistant","Confidence":96.57669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.51039}],"Text":"maximum","Confidence":96.57276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"process","Confidence":96.53754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57418}],"Text":"page","Confidence":96.51836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.537056}],"Text":"press","Confidence":96.39751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57364}],"Text":"basic","Confidence":96.19497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57354}],"Text":"create","Confidence":96.16375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56841}],"Text":"archive","Confidence":96.124954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56958}],"Text":"next","Confidence":96.099945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57405}],"Text":"extended","Confidence":96.09875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50588}],"Text":"time","Confidence":95.65377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57236}],"Text":"engineering","Confidence":95.58085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56915}],"Text":"start","Confidence":95.50196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55369}],"Text":"trend","Confidence":95.17057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55315}],"Text":"longer","Confidence":95.08518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57032}],"Text":"minimum","Confidence":94.16552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.53598}],"Text":"this","Confidence":93.24813},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.02149}],"Text":"assistant","Confidence":93.15045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55111}],"Text":"time","Confidence":89.826385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.45928}],"Text":"now","Confidence":85.09623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.141914}],"Text":"cancel","Confidence":67.65541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.71318}],"Text":"baie","Confidence":58.017433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":93.15246}],"Text":"sum","Confidence":52.067226}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572655}],"Text":"value","Confidence":96.99113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.571075}],"Text":"can","Confidence":96.99092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5724}],"Text":"the","Confidence":96.98824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.5693}],"Text":"if","Confidence":96.98507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56804}],"Text":"of","Confidence":96.97626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.567566}],"Text":"be","Confidence":96.97298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5738}],"Text":"you","Confidence":96.97291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5681}],"Text":"archives","Confidence":96.97241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56814}],"Text":"data","Confidence":96.96276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56888}],"Text":"edit","Confidence":96.95809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566536}],"Text":"for","Confidence":96.95578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56883}],"Text":"help","Confidence":96.9551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"archive","Confidence":96.94599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57409}],"Text":"summarized","Confidence":96.90075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56386}],"Text":"cancel","Confidence":96.877525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573044}],"Text":"with","Confidence":96.866035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57464}],"Text":"certain","Confidence":96.85973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57469}],"Text":"and","Confidence":96.851456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57088}],"Text":"should","Confidence":96.84594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57434}],"Text":"without","Confidence":96.83552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573586}],"Text":"recorded","Confidence":96.832245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54741}],"Text":"values","Confidence":96.831856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57357}],"Text":"period","Confidence":96.80013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56427}],"Text":"in","Confidence":96.79496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.572975}],"Text":"used","Confidence":96.79496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55675}],"Text":"over","Confidence":96.741875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57461}],"Text":"want","Confidence":96.739975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57058}],"Text":"to","Confidence":96.739975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56716}],"Text":"an","Confidence":96.73711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56129}],"Text":"recording","Confidence":96.71706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574486}],"Text":"average","Confidence":96.67584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54621}],"Text":"aggregated","Confidence":96.643906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53056}],"Text":"value","Confidence":96.63481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5711}],"Text":"serve","Confidence":96.61772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56873}],"Text":"assistant","Confidence":96.57669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.51039}],"Text":"maximum","Confidence":96.57276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"process","Confidence":96.53754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57418}],"Text":"page","Confidence":96.51836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.537056}],"Text":"press","Confidence":96.39751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57364}],"Text":"basic","Confidence":96.19497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57354}],"Text":"create","Confidence":96.16375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56841}],"Text":"archive","Confidence":96.124954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56958}],"Text":"next","Confidence":96.099945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57405}],"Text":"extended","Confidence":96.09875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50588}],"Text":"time","Confidence":95.65377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57236}],"Text":"engineering","Confidence":95.58085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56915}],"Text":"start","Confidence":95.50196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55369}],"Text":"trend","Confidence":95.17057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55315}],"Text":"longer","Confidence":95.08518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57032}],"Text":"minimum","Confidence":94.16552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.53598}],"Text":"this","Confidence":93.24813},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.02149}],"Text":"assistant","Confidence":93.15045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55111}],"Text":"time","Confidence":89.826385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.45928}],"Text":"now","Confidence":85.09623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.141914}],"Text":"cancel","Confidence":67.65541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.71318}],"Text":"baie","Confidence":58.017433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":93.15246}],"Text":"sum","Confidence":52.067226}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(50%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(50%).json index f95dea5..cdc7110 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57365}],"Text":"of","Confidence":96.99949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"the","Confidence":96.99538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57448}],"Text":"archives","Confidence":96.99393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573906}],"Text":"with","Confidence":96.97466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572014}],"Text":"extended","Confidence":96.972946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56799}],"Text":"in","Confidence":96.964714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564415}],"Text":"assistant","Confidence":96.95091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57422}],"Text":"assistant","Confidence":96.937035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57366}],"Text":"press","Confidence":96.937035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.565384}],"Text":"you","Confidence":96.92577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56413}],"Text":"help","Confidence":96.92162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5612}],"Text":"start","Confidence":96.9165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.55895}],"Text":"if","Confidence":96.91268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56969}],"Text":"over","Confidence":96.91127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57429}],"Text":"for","Confidence":96.874725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5749}],"Text":"period","Confidence":96.86449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56519}],"Text":"cancel","Confidence":96.854645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57495}],"Text":"edit","Confidence":96.8319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57267}],"Text":"value","Confidence":96.80537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574905}],"Text":"this","Confidence":96.80492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57429}],"Text":"basic","Confidence":96.80315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573814}],"Text":"recording","Confidence":96.79972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573524}],"Text":"archive","Confidence":96.76974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57466}],"Text":"process","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5396}],"Text":"values","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57056}],"Text":"can","Confidence":96.757225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5737}],"Text":"without","Confidence":96.75125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5358}],"Text":"recorded","Confidence":96.7506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55246}],"Text":"aggregated","Confidence":96.7126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57312}],"Text":"want","Confidence":96.670204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56893}],"Text":"serve","Confidence":96.653076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5691}],"Text":"create","Confidence":96.60784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57424}],"Text":"average","Confidence":96.60482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55977}],"Text":"certain","Confidence":96.58599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57175}],"Text":"data","Confidence":96.554115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56959}],"Text":"and","Confidence":96.370125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56672}],"Text":"maximum","Confidence":96.370125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57109}],"Text":"be","Confidence":96.35034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.573296}],"Text":"used","Confidence":96.35034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574554}],"Text":"summarized","Confidence":96.3398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47541}],"Text":"to","Confidence":96.327866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56216}],"Text":"should","Confidence":96.27217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.46727}],"Text":"page","Confidence":96.27089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"an","Confidence":96.21581},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.41029}],"Text":"value","Confidence":95.87208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56985}],"Text":"engineering","Confidence":95.312675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57345}],"Text":"minimum","Confidence":95.18786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55964}],"Text":"trend","Confidence":93.68392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.04432}],"Text":"sum","Confidence":93.31026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56898}],"Text":"archive","Confidence":93.16928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.437775}],"Text":"now","Confidence":93.08332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57241}],"Text":"time","Confidence":91.85973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":98.57784}],"Text":"back","Confidence":90.0449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55494}],"Text":"longer","Confidence":89.86108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57442}],"Text":"time","Confidence":88.14164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.9281}],"Text":"cancel","Confidence":75.37078}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57365}],"Text":"of","Confidence":96.99949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"the","Confidence":96.99538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57448}],"Text":"archives","Confidence":96.99393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573906}],"Text":"with","Confidence":96.97466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572014}],"Text":"extended","Confidence":96.972946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56799}],"Text":"in","Confidence":96.964714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564415}],"Text":"assistant","Confidence":96.95091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57422}],"Text":"assistant","Confidence":96.937035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57366}],"Text":"press","Confidence":96.937035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.565384}],"Text":"you","Confidence":96.92577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56413}],"Text":"help","Confidence":96.92162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5612}],"Text":"start","Confidence":96.9165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.55895}],"Text":"if","Confidence":96.91268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56969}],"Text":"over","Confidence":96.91127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57429}],"Text":"for","Confidence":96.874725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5749}],"Text":"period","Confidence":96.86449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56519}],"Text":"cancel","Confidence":96.854645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57495}],"Text":"edit","Confidence":96.8319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57267}],"Text":"value","Confidence":96.80537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574905}],"Text":"this","Confidence":96.80492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57429}],"Text":"basic","Confidence":96.80315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.573814}],"Text":"recording","Confidence":96.79972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573524}],"Text":"archive","Confidence":96.76974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57466}],"Text":"process","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5396}],"Text":"values","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57056}],"Text":"can","Confidence":96.757225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5737}],"Text":"without","Confidence":96.75125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5358}],"Text":"recorded","Confidence":96.7506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55246}],"Text":"aggregated","Confidence":96.7126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57312}],"Text":"want","Confidence":96.670204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56893}],"Text":"serve","Confidence":96.653076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5691}],"Text":"create","Confidence":96.60784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57424}],"Text":"average","Confidence":96.60482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55977}],"Text":"certain","Confidence":96.58599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57175}],"Text":"data","Confidence":96.554115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56959}],"Text":"and","Confidence":96.370125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56672}],"Text":"maximum","Confidence":96.370125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57109}],"Text":"be","Confidence":96.35034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.573296}],"Text":"used","Confidence":96.35034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574554}],"Text":"summarized","Confidence":96.3398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47541}],"Text":"to","Confidence":96.327866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56216}],"Text":"should","Confidence":96.27217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.46727}],"Text":"page","Confidence":96.27089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"an","Confidence":96.21581},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.41029}],"Text":"value","Confidence":95.87208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56985}],"Text":"engineering","Confidence":95.312675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57345}],"Text":"minimum","Confidence":95.18786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55964}],"Text":"trend","Confidence":93.68392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.04432}],"Text":"sum","Confidence":93.31026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56898}],"Text":"archive","Confidence":93.16928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.437775}],"Text":"now","Confidence":93.08332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57241}],"Text":"time","Confidence":91.85973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":98.57784}],"Text":"back","Confidence":90.0449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55494}],"Text":"longer","Confidence":89.86108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57442}],"Text":"time","Confidence":88.14164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.9281}],"Text":"cancel","Confidence":75.37078}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(70%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(70%).json index a4caee1..7513ae6 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57493}],"Text":"of","Confidence":97.00625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57298}],"Text":"recording","Confidence":96.982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57294}],"Text":"the","Confidence":96.97644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56776}],"Text":"serve","Confidence":96.97427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57392}],"Text":"this","Confidence":96.97248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57212}],"Text":"sum","Confidence":96.97219},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57454}],"Text":"data","Confidence":96.9708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57212}],"Text":"can","Confidence":96.954124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.570694}],"Text":"recorded","Confidence":96.95168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571686}],"Text":"over","Confidence":96.93356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573524}],"Text":"period","Confidence":96.91998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57427}],"Text":"be","Confidence":96.89987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55705}],"Text":"for","Confidence":96.899345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.555786}],"Text":"without","Confidence":96.89048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.555725}],"Text":"page","Confidence":96.8901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57067}],"Text":"back","Confidence":96.88452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56078}],"Text":"archives","Confidence":96.87999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56958}],"Text":"and","Confidence":96.866554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56402}],"Text":"you","Confidence":96.83543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55726}],"Text":"assistant","Confidence":96.788315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574036}],"Text":"trend","Confidence":96.78383},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574486}],"Text":"help","Confidence":96.74596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5267}],"Text":"summarized","Confidence":96.6869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572815}],"Text":"average","Confidence":96.64529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5348}],"Text":"in","Confidence":96.61884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57482}],"Text":"used","Confidence":96.61884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52847}],"Text":"value","Confidence":96.605415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55551}],"Text":"archive","Confidence":96.50823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50558}],"Text":"longer","Confidence":96.49849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56843}],"Text":"start","Confidence":96.49772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57479}],"Text":"process","Confidence":96.454414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.48994}],"Text":"want","Confidence":96.41934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.540215}],"Text":"minimum","Confidence":96.39635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55606}],"Text":"certain","Confidence":96.37634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5749}],"Text":"assistant","Confidence":96.272285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57442}],"Text":"with","Confidence":96.21704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.552864}],"Text":"extended","Confidence":96.21638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57386}],"Text":"edit","Confidence":96.1638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.4918}],"Text":"basic","Confidence":96.13841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.447815}],"Text":"now","Confidence":96.13469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573074}],"Text":"archive","Confidence":95.91894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57479}],"Text":"an","Confidence":95.91888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.3874}],"Text":"to","Confidence":95.71178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.538345}],"Text":"aggregated","Confidence":95.63493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56951}],"Text":"should","Confidence":95.57491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54894}],"Text":"time","Confidence":95.49156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574554}],"Text":"press","Confidence":95.2343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574356}],"Text":"value","Confidence":95.20973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57448}],"Text":"engineering","Confidence":93.80942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56927}],"Text":"create","Confidence":92.96765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5454}],"Text":"time","Confidence":92.930466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.55662}],"Text":"values","Confidence":92.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57399}],"Text":"maximum","Confidence":92.15991},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.23348}],"Text":"if","Confidence":87.63435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.40914}],"Text":"next","Confidence":87.15085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":97.79045}],"Text":"cancel","Confidence":61.56502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.35677}],"Text":"cancel","Confidence":60.490494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":93.245705}],"Text":"cancel","Confidence":52.719933}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57493}],"Text":"of","Confidence":97.00625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57298}],"Text":"recording","Confidence":96.982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57294}],"Text":"the","Confidence":96.97644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56776}],"Text":"serve","Confidence":96.97427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57392}],"Text":"this","Confidence":96.97248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57212}],"Text":"sum","Confidence":96.97219},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57454}],"Text":"data","Confidence":96.9708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57212}],"Text":"can","Confidence":96.954124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.570694}],"Text":"recorded","Confidence":96.95168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571686}],"Text":"over","Confidence":96.93356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573524}],"Text":"period","Confidence":96.91998},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57427}],"Text":"be","Confidence":96.89987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55705}],"Text":"for","Confidence":96.899345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.555786}],"Text":"without","Confidence":96.89048},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.555725}],"Text":"page","Confidence":96.8901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57067}],"Text":"back","Confidence":96.88452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56078}],"Text":"archives","Confidence":96.87999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56958}],"Text":"and","Confidence":96.866554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.56402}],"Text":"you","Confidence":96.83543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55726}],"Text":"assistant","Confidence":96.788315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574036}],"Text":"trend","Confidence":96.78383},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574486}],"Text":"help","Confidence":96.74596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5267}],"Text":"summarized","Confidence":96.6869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572815}],"Text":"average","Confidence":96.64529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5348}],"Text":"in","Confidence":96.61884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57482}],"Text":"used","Confidence":96.61884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52847}],"Text":"value","Confidence":96.605415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55551}],"Text":"archive","Confidence":96.50823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.50558}],"Text":"longer","Confidence":96.49849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56843}],"Text":"start","Confidence":96.49772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57479}],"Text":"process","Confidence":96.454414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.48994}],"Text":"want","Confidence":96.41934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.540215}],"Text":"minimum","Confidence":96.39635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55606}],"Text":"certain","Confidence":96.37634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5749}],"Text":"assistant","Confidence":96.272285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57442}],"Text":"with","Confidence":96.21704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.552864}],"Text":"extended","Confidence":96.21638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57386}],"Text":"edit","Confidence":96.1638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.4918}],"Text":"basic","Confidence":96.13841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.447815}],"Text":"now","Confidence":96.13469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573074}],"Text":"archive","Confidence":95.91894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57479}],"Text":"an","Confidence":95.91888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.3874}],"Text":"to","Confidence":95.71178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.538345}],"Text":"aggregated","Confidence":95.63493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56951}],"Text":"should","Confidence":95.57491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54894}],"Text":"time","Confidence":95.49156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574554}],"Text":"press","Confidence":95.2343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574356}],"Text":"value","Confidence":95.20973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57448}],"Text":"engineering","Confidence":93.80942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56927}],"Text":"create","Confidence":92.96765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5454}],"Text":"time","Confidence":92.930466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.55662}],"Text":"values","Confidence":92.76839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57399}],"Text":"maximum","Confidence":92.15991},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.23348}],"Text":"if","Confidence":87.63435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.40914}],"Text":"next","Confidence":87.15085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":97.79045}],"Text":"cancel","Confidence":61.56502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.35677}],"Text":"cancel","Confidence":60.490494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":93.245705}],"Text":"cancel","Confidence":52.719933}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(80%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(80%).json index 9e265d3..91c982c 100644 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57478}],"Text":"of","Confidence":97.01231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57474}],"Text":"archives","Confidence":97.01163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569595}],"Text":"the","Confidence":96.98719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57464}],"Text":"process","Confidence":96.98702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574196}],"Text":"be","Confidence":96.98286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5744}],"Text":"for","Confidence":96.97939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.570595}],"Text":"you","Confidence":96.96325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57488}],"Text":"with","Confidence":96.94816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57331}],"Text":"to","Confidence":96.94241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56158}],"Text":"sum","Confidence":96.931015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.560875}],"Text":"archive","Confidence":96.92613},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55955}],"Text":"recorded","Confidence":96.91681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57456}],"Text":"this","Confidence":96.88848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57429}],"Text":"period","Confidence":96.84645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56964}],"Text":"want","Confidence":96.84486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54809}],"Text":"over","Confidence":96.82818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57479}],"Text":"average","Confidence":96.81306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57491}],"Text":"assistant","Confidence":96.742714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53426}],"Text":"page","Confidence":96.73985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57382}],"Text":"extended","Confidence":96.72437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57386}],"Text":"serve","Confidence":96.69649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5748}],"Text":"press","Confidence":96.621475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574585}],"Text":"help","Confidence":96.59137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56489}],"Text":"minimum","Confidence":96.59103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57466}],"Text":"edit","Confidence":96.57006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572235}],"Text":"aggregated","Confidence":96.509445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573586}],"Text":"create","Confidence":96.507195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57451}],"Text":"data","Confidence":96.49134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56015}],"Text":"can","Confidence":96.49134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5496}],"Text":"in","Confidence":96.45936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.534744}],"Text":"used","Confidence":96.45936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.49305}],"Text":"maximum","Confidence":96.45134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5724}],"Text":"values","Confidence":96.43125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573814}],"Text":"without","Confidence":96.40079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57142}],"Text":"basic","Confidence":96.38605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54077}],"Text":"assistant","Confidence":96.36177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57414}],"Text":"should","Confidence":96.121704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.44429}],"Text":"start","Confidence":96.11001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55318}],"Text":"longer","Confidence":96.11},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56576}],"Text":"and","Confidence":96.07014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.50658}],"Text":"certain","Confidence":95.752106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57419}],"Text":"recording","Confidence":95.73891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57139}],"Text":"engineering","Confidence":95.43652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"an","Confidence":95.357056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.208084}],"Text":"value","Confidence":94.45657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56887}],"Text":"summarized","Confidence":94.29322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56725}],"Text":"trend","Confidence":94.11429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54393}],"Text":"time","Confidence":94.048004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47067}],"Text":"time","Confidence":93.44688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52768}],"Text":"value","Confidence":93.390656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.42922}],"Text":"if","Confidence":89.004555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5539}],"Text":"archive","Confidence":88.64009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.20551}],"Text":"now","Confidence":88.13745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.04898}],"Text":"cancel","Confidence":79.34288}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57478}],"Text":"of","Confidence":97.01231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57474}],"Text":"archives","Confidence":97.01163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569595}],"Text":"the","Confidence":96.98719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57464}],"Text":"process","Confidence":96.98702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574196}],"Text":"be","Confidence":96.98286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5744}],"Text":"for","Confidence":96.97939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.570595}],"Text":"you","Confidence":96.96325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57488}],"Text":"with","Confidence":96.94816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57331}],"Text":"to","Confidence":96.94241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56158}],"Text":"sum","Confidence":96.931015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.560875}],"Text":"archive","Confidence":96.92613},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55955}],"Text":"recorded","Confidence":96.91681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57456}],"Text":"this","Confidence":96.88848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57429}],"Text":"period","Confidence":96.84645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56964}],"Text":"want","Confidence":96.84486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54809}],"Text":"over","Confidence":96.82818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57479}],"Text":"average","Confidence":96.81306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57491}],"Text":"assistant","Confidence":96.742714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53426}],"Text":"page","Confidence":96.73985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57382}],"Text":"extended","Confidence":96.72437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57386}],"Text":"serve","Confidence":96.69649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5748}],"Text":"press","Confidence":96.621475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.574585}],"Text":"help","Confidence":96.59137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56489}],"Text":"minimum","Confidence":96.59103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57466}],"Text":"edit","Confidence":96.57006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572235}],"Text":"aggregated","Confidence":96.509445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573586}],"Text":"create","Confidence":96.507195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57451}],"Text":"data","Confidence":96.49134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56015}],"Text":"can","Confidence":96.49134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5496}],"Text":"in","Confidence":96.45936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.534744}],"Text":"used","Confidence":96.45936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.49305}],"Text":"maximum","Confidence":96.45134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5724}],"Text":"values","Confidence":96.43125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.573814}],"Text":"without","Confidence":96.40079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57142}],"Text":"basic","Confidence":96.38605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54077}],"Text":"assistant","Confidence":96.36177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57414}],"Text":"should","Confidence":96.121704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.44429}],"Text":"start","Confidence":96.11001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.55318}],"Text":"longer","Confidence":96.11},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56576}],"Text":"and","Confidence":96.07014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.50658}],"Text":"certain","Confidence":95.752106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57419}],"Text":"recording","Confidence":95.73891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57139}],"Text":"engineering","Confidence":95.43652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57481}],"Text":"an","Confidence":95.357056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.208084}],"Text":"value","Confidence":94.45657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56887}],"Text":"summarized","Confidence":94.29322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56725}],"Text":"trend","Confidence":94.11429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54393}],"Text":"time","Confidence":94.048004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47067}],"Text":"time","Confidence":93.44688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52768}],"Text":"value","Confidence":93.390656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.42922}],"Text":"if","Confidence":89.004555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5539}],"Text":"archive","Confidence":88.64009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.20551}],"Text":"now","Confidence":88.13745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.04898}],"Text":"cancel","Confidence":79.34288}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(90%).json b/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(90%).json deleted file mode 100644 index 9796029..0000000 --- a/Examples/testdata/results/historian_assistent_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57159}],"Text":"of","Confidence":96.95219},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57243}],"Text":"want","Confidence":96.940384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56664}],"Text":"the","Confidence":96.90312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57199}],"Text":"press","Confidence":96.89125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57222}],"Text":"without","Confidence":96.829636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573235}],"Text":"extended","Confidence":96.73637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57293}],"Text":"serve","Confidence":96.73242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.525665}],"Text":"start","Confidence":96.67964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.567215}],"Text":"for","Confidence":96.58148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54615}],"Text":"page","Confidence":96.52841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.531815}],"Text":"with","Confidence":96.50867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56473}],"Text":"archive","Confidence":96.16763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"y","Confidence":99.5089}],"Text":"you","Confidence":96.160835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57341}],"Text":"create","Confidence":95.952194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.41731}],"Text":"value","Confidence":95.921196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.44176}],"Text":"engineering","Confidence":95.90705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.53716}],"Text":"recorded","Confidence":95.51257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56455}],"Text":"edit","Confidence":95.15405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.397026}],"Text":"th","Confidence":95.0748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574066}],"Text":"be","Confidence":94.780235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55992}],"Text":"recording","Confidence":94.642136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.511505}],"Text":"archives","Confidence":94.14447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.551544}],"Text":"trend","Confidence":93.622795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.99287}],"Text":"time","Confidence":92.95006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.4352}],"Text":"should","Confidence":92.129196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.87431}],"Text":"din","Confidence":92.1202},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54109}],"Text":"assistant","Confidence":91.83615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.54048}],"Text":"help","Confidence":91.27006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5723}],"Text":"assistant","Confidence":91.10004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"period","Confidence":90.97447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49094}],"Text":"in","Confidence":90.77513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569534}],"Text":"data","Confidence":89.9454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.554665}],"Text":"can","Confidence":89.9454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.421646}],"Text":"now","Confidence":88.951546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.21669}],"Text":"an","Confidence":87.516815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.21618}],"Text":"archive","Confidence":87.468346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.49944}],"Text":"time","Confidence":86.09894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56256}],"Text":"basic","Confidence":85.932106},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.96651}],"Text":"arct","Confidence":80.93921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.44263}],"Text":"used","Confidence":75.121735},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.87228}],"Text":"20","Confidence":75.03517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57235}],"Text":"aggregated","Confidence":74.38704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.83413}],"Text":"ag","Confidence":73.87274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.59656}],"Text":"am","Confidence":69.17589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.558044}],"Text":"certain","Confidence":68.29217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.27755}],"Text":"longer","Confidence":66.88411},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.25989}],"Text":"over","Confidence":66.81923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.257866}],"Text":"if","Confidence":66.805084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.24873}],"Text":"aver","Confidence":66.741135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.361694}],"Text":"this","Confidence":62.9361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.388885}],"Text":"cancel","Confidence":59.096436},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.38633}],"Text":"alue","Confidence":50.77936}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Kapur).json index f2104e6..a0afdbe 100644 --- a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(OTSU).json index 63511fb..68245e3 100644 --- a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54192}],"Text":"wizard","Confidence":96.79344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56656}],"Text":"settings","Confidence":96.76897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55835}],"Text":"options","Confidence":96.74518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56867}],"Text":"function","Confidence":96.74189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.530945}],"Text":"archiver","Confidence":96.71659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51156}],"Text":"alarm","Confidence":96.580894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57356}],"Text":"parameter","Confidence":96.413086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573524}],"Text":"syntax","Confidence":96.22542},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83402}],"Text":"archivesp","Confidence":91.83816},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.75344}],"Text":"archivem","Confidence":91.27408},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70359}],"Text":"archiveex","Confidence":90.92514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.789154}],"Text":"archivemr","Confidence":90.60058},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.65112}],"Text":"archivemspr","Confidence":90.55787},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.6096}],"Text":"archiveexr","Confidence":90.26715},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.55814}],"Text":"archivemsp","Confidence":89.90699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.025894}],"Text":"thls","Confidence":58.181263}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54192}],"Text":"wizard","Confidence":96.79344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56656}],"Text":"settings","Confidence":96.76897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55835}],"Text":"options","Confidence":96.74518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56867}],"Text":"function","Confidence":96.74189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.530945}],"Text":"archiver","Confidence":96.71659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51156}],"Text":"alarm","Confidence":96.580894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57356}],"Text":"parameter","Confidence":96.413086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573524}],"Text":"syntax","Confidence":96.22542},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83402}],"Text":"archivesp","Confidence":91.83816},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.75344}],"Text":"archivem","Confidence":91.27408},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70359}],"Text":"archiveex","Confidence":90.92514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.789154}],"Text":"archivemr","Confidence":90.60058},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.65112}],"Text":"archivemspr","Confidence":90.55787},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.6096}],"Text":"archiveexr","Confidence":90.26715},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.55814}],"Text":"archivemsp","Confidence":89.90699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.025894}],"Text":"thls","Confidence":58.181263}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Triangle).json index f2104e6..46f2375 100644 --- a/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/report_example_data-time_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0013} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(04_04).json index d7eeb80..cec91b3 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index f2104e6..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(08_08).json index d7eeb80..cb6250d 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index d7eeb80..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(12_12).json index bf61384..cb6250d 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index d7eeb80..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(16_16).json index d7eeb80..bf61384 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(20_20).json index cb6250d..2c6e420 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(24_24).json index 7c03103..1bd47a9 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56393}],"Text":"wizard","Confidence":92.43058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.92522}],"Text":"function","Confidence":85.47651}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56393}],"Text":"wizard","Confidence":92.43058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.92522}],"Text":"function","Confidence":85.47651}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(0%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(10%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(10%).json deleted file mode 100644 index a7ad7ef..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56772}],"Text":"cancel","Confidence":96.92348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572266}],"Text":"function","Confidence":96.83162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.53459}],"Text":"wizard","Confidence":96.67638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.569695}],"Text":"settings","Confidence":96.63691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.493164}],"Text":"options","Confidence":96.452126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.562675}],"Text":"help","Confidence":96.393234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.572784}],"Text":"parameter","Confidence":96.33626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55472}],"Text":"syntax","Confidence":96.084915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.24881}],"Text":"alarm","Confidence":94.74166},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.91559}],"Text":"archivem","Confidence":92.20706},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.75668}],"Text":"archiveexr","Confidence":91.29677},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.74821}],"Text":"archivemr","Confidence":91.23744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.993454}],"Text":"ok","Confidence":90.36609},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.65113}],"Text":"archivemsp","Confidence":89.08325},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.71637}],"Text":"archiveex","Confidence":88.479614},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.496704}],"Text":"archivemspr","Confidence":66.618004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56955}],"Text":"archiv","Confidence":63.16538}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(100%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(20%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(20%).json index efa67fa..970575b 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572266}],"Text":"archiver","Confidence":96.931526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56019}],"Text":"wizard","Confidence":96.921326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55658}],"Text":"function","Confidence":96.89605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572235}],"Text":"settings","Confidence":96.78503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52464}],"Text":"alarm","Confidence":96.615234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.562706}],"Text":"syntax","Confidence":96.56837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570625}],"Text":"parameter","Confidence":96.48024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.443146}],"Text":"ok","Confidence":95.778145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.331696}],"Text":"options","Confidence":95.32187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.92906}],"Text":"archiveex","Confidence":92.503426},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.89345}],"Text":"archivem","Confidence":92.18577},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.869385}],"Text":"archiveexr","Confidence":92.08568},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.90578}],"Text":"archivemr","Confidence":91.88491},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.49597}],"Text":"archivemsp","Confidence":89.47182},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.468765}],"Text":"archivesp","Confidence":89.28134},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.460075}],"Text":"archivemspr","Confidence":89.22052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":95.320244}],"Text":"le","Confidence":67.2417}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572266}],"Text":"archiver","Confidence":96.931526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56019}],"Text":"wizard","Confidence":96.921326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55658}],"Text":"function","Confidence":96.89605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572235}],"Text":"settings","Confidence":96.78503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52464}],"Text":"alarm","Confidence":96.615234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.562706}],"Text":"syntax","Confidence":96.56837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570625}],"Text":"parameter","Confidence":96.48024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.443146}],"Text":"ok","Confidence":95.778145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.331696}],"Text":"options","Confidence":95.32187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.92906}],"Text":"archiveex","Confidence":92.503426},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.89345}],"Text":"archivem","Confidence":92.18577},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.869385}],"Text":"archiveexr","Confidence":92.08568},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.90578}],"Text":"archivemr","Confidence":91.88491},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.49597}],"Text":"archivemsp","Confidence":89.47182},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.468765}],"Text":"archivesp","Confidence":89.28134},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.460075}],"Text":"archivemspr","Confidence":89.22052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":95.320244}],"Text":"le","Confidence":67.2417}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(40%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(40%).json index 72b77a2..3a05a65 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57369}],"Text":"wizard","Confidence":96.89196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574524}],"Text":"alarm","Confidence":96.84761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57092}],"Text":"function","Confidence":96.803566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57476}],"Text":"archiver","Confidence":96.68828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.556656}],"Text":"settings","Confidence":96.588745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.53363}],"Text":"options","Confidence":96.4274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55995}],"Text":"help","Confidence":96.38135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.574036}],"Text":"parameter","Confidence":96.18517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56578}],"Text":"syntax","Confidence":96.18511},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04115}],"Text":"archivem","Confidence":93.209045},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.98272}],"Text":"archivemspr","Confidence":92.87901},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04256}],"Text":"archiveex","Confidence":92.50054},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04048}],"Text":"archiveexr","Confidence":92.21705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.85771}],"Text":"archivesp","Confidence":91.34859},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03489}],"Text":"archivemr","Confidence":91.034195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70478}],"Text":"archivemsp","Confidence":90.93346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.26897}],"Text":"ur","Confidence":52.882767}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57369}],"Text":"wizard","Confidence":96.89196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574524}],"Text":"alarm","Confidence":96.84761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57092}],"Text":"function","Confidence":96.803566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57476}],"Text":"archiver","Confidence":96.68828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.556656}],"Text":"settings","Confidence":96.588745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.53363}],"Text":"options","Confidence":96.4274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55995}],"Text":"help","Confidence":96.38135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.574036}],"Text":"parameter","Confidence":96.18517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56578}],"Text":"syntax","Confidence":96.18511},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04115}],"Text":"archivem","Confidence":93.209045},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.98272}],"Text":"archivemspr","Confidence":92.87901},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04256}],"Text":"archiveex","Confidence":92.50054},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04048}],"Text":"archiveexr","Confidence":92.21705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.85771}],"Text":"archivesp","Confidence":91.34859},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03489}],"Text":"archivemr","Confidence":91.034195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.70478}],"Text":"archivemsp","Confidence":90.93346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.26897}],"Text":"ur","Confidence":52.882767}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(50%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(50%).json index 78987b5..2fabbab 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54655}],"Text":"options","Confidence":96.825806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5685}],"Text":"settings","Confidence":96.78852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57367}],"Text":"parameter","Confidence":96.77264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.545654}],"Text":"function","Confidence":96.76453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54433}],"Text":"wizard","Confidence":96.76453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53477}],"Text":"archiver","Confidence":96.74339},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.517746}],"Text":"alarm","Confidence":96.62423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57306}],"Text":"syntax","Confidence":95.86839},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83722}],"Text":"archivesp","Confidence":91.860535},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.82864}],"Text":"archivem","Confidence":91.800514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.791176}],"Text":"archiveex","Confidence":91.53823},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.75075}],"Text":"archivemr","Confidence":91.25521},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.69506}],"Text":"archivemspr","Confidence":90.86543},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.640305}],"Text":"archivemsp","Confidence":89.6474},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.86496}],"Text":"archiveexr","Confidence":73.20894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.62783}],"Text":"thls","Confidence":55.39482}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54655}],"Text":"options","Confidence":96.825806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5685}],"Text":"settings","Confidence":96.78852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57367}],"Text":"parameter","Confidence":96.77264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.545654}],"Text":"function","Confidence":96.76453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54433}],"Text":"wizard","Confidence":96.76453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53477}],"Text":"archiver","Confidence":96.74339},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.517746}],"Text":"alarm","Confidence":96.62423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57306}],"Text":"syntax","Confidence":95.86839},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83722}],"Text":"archivesp","Confidence":91.860535},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.82864}],"Text":"archivem","Confidence":91.800514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.791176}],"Text":"archiveex","Confidence":91.53823},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.75075}],"Text":"archivemr","Confidence":91.25521},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.69506}],"Text":"archivemspr","Confidence":90.86543},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.640305}],"Text":"archivemsp","Confidence":89.6474},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.86496}],"Text":"archiveexr","Confidence":73.20894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.62783}],"Text":"thls","Confidence":55.39482}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(70%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(70%).json index 6d4a71a..dd2448d 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55003}],"Text":"options","Confidence":96.68183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5588}],"Text":"function","Confidence":96.60096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.571434}],"Text":"parameter","Confidence":96.59572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.40841}],"Text":"archiver","Confidence":95.85884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.9827}],"Text":"archivemspr","Confidence":92.31006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.44309}],"Text":"alarm","Confidence":92.11121},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.99672}],"Text":"archivemsp","Confidence":91.54484},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.78751}],"Text":"archivem","Confidence":90.88917},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.56142}],"Text":"archiveexr","Confidence":89.92993},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.53122}],"Text":"archivesp","Confidence":89.71851},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.50215}],"Text":"archivemr","Confidence":89.51505},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.251625}],"Text":"archiveex","Confidence":87.76136}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55003}],"Text":"options","Confidence":96.68183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5588}],"Text":"function","Confidence":96.60096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.571434}],"Text":"parameter","Confidence":96.59572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.40841}],"Text":"archiver","Confidence":95.85884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.9827}],"Text":"archivemspr","Confidence":92.31006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.44309}],"Text":"alarm","Confidence":92.11121},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.99672}],"Text":"archivemsp","Confidence":91.54484},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.78751}],"Text":"archivem","Confidence":90.88917},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.56142}],"Text":"archiveexr","Confidence":89.92993},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.53122}],"Text":"archivesp","Confidence":89.71851},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.50215}],"Text":"archivemr","Confidence":89.51505},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.251625}],"Text":"archiveex","Confidence":87.76136}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(80%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(80%).json index cec91b3..a0afdbe 100644 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0014} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(90%).json b/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(90%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/report_example_data-time_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Kapur).json index 1325750..805d6f5 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.32571}],"Text":"per","Confidence":89.92377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48152}],"Text":"took","Confidence":86.618515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.27881}],"Text":"il","Confidence":85.91743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.915596}],"Text":"abs","Confidence":80.85763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":95.52342}],"Text":"gun","Confidence":68.66398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":97.990486}],"Text":"pe","Confidence":67.77181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":95.969666}],"Text":"kor","Confidence":64.95032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":95.08481}],"Text":"report","Confidence":64.44461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.59874}],"Text":"oe","Confidence":62.19116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.86517}],"Text":"prt","Confidence":56.62993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":93.77228}],"Text":"dee","Confidence":56.405922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.39097}],"Text":"teun","Confidence":53.73677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.83755}],"Text":"date","Confidence":50.93788},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.95578}],"Text":"anintemt","Confidence":50.679718}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.32571}],"Text":"per","Confidence":89.92377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.48152}],"Text":"took","Confidence":86.618515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.27881}],"Text":"il","Confidence":85.91743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.915596}],"Text":"abs","Confidence":80.85763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":95.52342}],"Text":"gun","Confidence":68.66398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":97.990486}],"Text":"pe","Confidence":67.77181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":95.969666}],"Text":"kor","Confidence":64.95032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":95.08481}],"Text":"report","Confidence":64.44461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.59874}],"Text":"oe","Confidence":62.19116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.86517}],"Text":"prt","Confidence":56.62993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":93.77228}],"Text":"dee","Confidence":56.405922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.39097}],"Text":"teun","Confidence":53.73677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.83755}],"Text":"date","Confidence":50.93788},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.95578}],"Text":"anintemt","Confidence":50.679718}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(OTSU).json index 2c6e420..7171390 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file +{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(04_04).json index d7eeb80..cec91b3 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 48c2770..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.33443}],"Text":"fe","Confidence":50.638653}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(08_08).json index cf0a383..b5abecd 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.35335}],"Text":"report","Confidence":92.98068},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.63771}],"Text":"18","Confidence":54.778233}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.35335}],"Text":"report","Confidence":92.98068},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.63771}],"Text":"18","Confidence":54.778233}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 0cc8b20..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53173}],"Text":"report","Confidence":91.93563}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(12_12).json index bf61384..cb6250d 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 4568f8a..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.51826}],"Text":"report","Confidence":78.67169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.12477}],"Text":"rou","Confidence":57.682808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.122345}],"Text":"toots","Confidence":51.856403}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(16_16).json index 9050d0e..5d80d10 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":97.56913}],"Text":"adl","Confidence":82.98393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48445}],"Text":"report","Confidence":81.609344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.72416}],"Text":"bae","Confidence":63.069107}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":97.56913}],"Text":"adl","Confidence":82.98393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48445}],"Text":"report","Confidence":81.609344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.72416}],"Text":"bae","Confidence":63.069107}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index b57809d..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.40466}],"Text":"das","Confidence":81.83263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.10469}],"Text":"toots","Confidence":71.372116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.200264}],"Text":"bie","Confidence":66.30044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":96.98664}],"Text":"report","Confidence":63.04063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.180695}],"Text":"adl","Confidence":60.0522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.431595}],"Text":"rept","Confidence":55.467907}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(20_20).json index 5c4092c..c2bb25e 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":96.81256}],"Text":"report","Confidence":77.560814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.37438}],"Text":"toots","Confidence":73.8731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.3625}],"Text":"das","Confidence":69.35567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":94.815445}],"Text":"adl","Confidence":63.708122},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":96.48206}],"Text":"ble","Confidence":55.60419}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":96.81256}],"Text":"report","Confidence":77.560814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.37438}],"Text":"toots","Confidence":73.8731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.3625}],"Text":"das","Confidence":69.35567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":94.815445}],"Text":"adl","Confidence":63.708122},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":96.48206}],"Text":"ble","Confidence":55.60419}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(24_24).json index 66cebf6..d7eeb80 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0019} \ No newline at end of file +{"Words":[],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(0%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(0%).json deleted file mode 100644 index 35b4c69..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.03509}],"Text":"flement","Confidence":57.35998}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(10%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(10%).json deleted file mode 100644 index 04a080a..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.96995}],"Text":"fikor2","Confidence":88.73934},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.18629}],"Text":"oeefactor","Confidence":87.304016},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"-","Confidence":95.69243}],"Text":"-x","Confidence":69.84703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":95.19304}],"Text":"model","Confidence":66.35129},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.707596}],"Text":"catetrnefiter","Confidence":62.95317},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.96166}],"Text":"fikorl","Confidence":60.21095},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":94.168274}],"Text":"212123","Confidence":59.177948},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.855774}],"Text":"equipmentfiter","Confidence":54.162975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.476715}],"Text":"avs","Confidence":50.430676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":93.45409}],"Text":"stant","Confidence":50.430676}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(100%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(20%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(20%).json index 94f2a07..21b9395 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.4154}],"Text":"actor","Confidence":90.30047},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.88702}],"Text":"asestant","Confidence":75.82947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.36095}],"Text":"vox","Confidence":74.81164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":94.66505}],"Text":"eef","Confidence":62.655315},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.65781}],"Text":"elomanto","Confidence":56.88021},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.48281}],"Text":"fiter","Confidence":55.22576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":93.64293}],"Text":"alter","Confidence":50.358223}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.4154}],"Text":"actor","Confidence":90.30047},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.88702}],"Text":"asestant","Confidence":75.82947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.36095}],"Text":"vox","Confidence":74.81164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":94.66505}],"Text":"eef","Confidence":62.655315},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.65781}],"Text":"elomanto","Confidence":56.88021},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.48281}],"Text":"fiter","Confidence":55.22576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":93.64293}],"Text":"alter","Confidence":50.358223}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(40%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(40%).json index 20a378a..40f0a27 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.115395}],"Text":"abs","Confidence":88.263466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56179}],"Text":"report","Confidence":85.34534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.567986}],"Text":"took","Confidence":77.26946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55161}],"Text":"per","Confidence":76.509384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.83739}],"Text":"da","Confidence":72.27069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55736}],"Text":"costs","Confidence":64.9951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.97903}],"Text":"pee","Confidence":61.01969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.10575}],"Text":"properties","Confidence":58.740257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":96.49649}],"Text":"ze","Confidence":55.965324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.57599}],"Text":"dans","Confidence":52.856846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.1514}],"Text":"date","Confidence":52.577736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.57864}],"Text":"collection","Confidence":51.611122},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"w","Confidence":92.99727}],"Text":"wx","Confidence":50.980904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.382576}],"Text":"dee","Confidence":50.94291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.93428}],"Text":"ons","Confidence":50.268097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.58227}],"Text":"be","Confidence":50.251503}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.115395}],"Text":"abs","Confidence":88.263466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56179}],"Text":"report","Confidence":85.34534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.567986}],"Text":"took","Confidence":77.26946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55161}],"Text":"per","Confidence":76.509384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.83739}],"Text":"da","Confidence":72.27069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55736}],"Text":"costs","Confidence":64.9951},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.97903}],"Text":"pee","Confidence":61.01969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.10575}],"Text":"properties","Confidence":58.740257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":96.49649}],"Text":"ze","Confidence":55.965324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.57599}],"Text":"dans","Confidence":52.856846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.1514}],"Text":"date","Confidence":52.577736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.57864}],"Text":"collection","Confidence":51.611122},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"w","Confidence":92.99727}],"Text":"wx","Confidence":50.980904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.382576}],"Text":"dee","Confidence":50.94291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.93428}],"Text":"ons","Confidence":50.268097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.58227}],"Text":"be","Confidence":50.251503}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(50%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(50%).json index d29683c..1eed5c6 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.103134}],"Text":"report","Confidence":92.660614},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":97.452644}],"Text":"rdl","Confidence":61.798054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.45687}],"Text":"one","Confidence":53.079494}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.103134}],"Text":"report","Confidence":92.660614},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":97.452644}],"Text":"rdl","Confidence":61.798054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.45687}],"Text":"one","Confidence":53.079494}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(70%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(70%).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(80%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(80%).json index 5b559fc..a0afdbe 100644 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0018} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(90%).json b/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(90%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/reporting-server_report-assistant_007.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Kapur).json index 3587012..1c1ad54 100644 --- a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57259}],"Text":"the","Confidence":97.00088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56909}],"Text":"name","Confidence":96.98364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56944}],"Text":"defined","Confidence":96.84643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57441}],"Text":"dialog","Confidence":96.73808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573715}],"Text":"variable","Confidence":96.72752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562355}],"Text":"from","Confidence":96.67824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.567024}],"Text":"action","Confidence":96.478195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.494995}],"Text":"service","Confidence":96.46496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53492}],"Text":"engine","Confidence":96.39539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48274}],"Text":"in","Confidence":96.37918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.39121}],"Text":"open","Confidence":95.4993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56186}],"Text":"save","Confidence":94.20119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57449}],"Text":"profiles","Confidence":93.52321},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":99.02874}],"Text":"no","Confidence":92.73912},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.03787}],"Text":"linked","Confidence":92.584694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56476}],"Text":"administration","Confidence":92.16667},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.03926}],"Text":"engne","Confidence":85.72874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569244}],"Text":"profile","Confidence":73.5495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.9601}],"Text":"load","Confidence":73.0496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":95.129456}],"Text":"freely","Confidence":65.9062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.78978}],"Text":"last","Confidence":56.528465}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57259}],"Text":"the","Confidence":97.00088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56909}],"Text":"name","Confidence":96.98364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56944}],"Text":"defined","Confidence":96.84643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57441}],"Text":"dialog","Confidence":96.73808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573715}],"Text":"variable","Confidence":96.72752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562355}],"Text":"from","Confidence":96.67824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.567024}],"Text":"action","Confidence":96.478195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.494995}],"Text":"service","Confidence":96.46496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53492}],"Text":"engine","Confidence":96.39539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48274}],"Text":"in","Confidence":96.37918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.39121}],"Text":"open","Confidence":95.4993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56186}],"Text":"save","Confidence":94.20119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57449}],"Text":"profiles","Confidence":93.52321},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":99.02874}],"Text":"no","Confidence":92.73912},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.03787}],"Text":"linked","Confidence":92.584694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56476}],"Text":"administration","Confidence":92.16667},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.03926}],"Text":"engne","Confidence":85.72874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569244}],"Text":"profile","Confidence":73.5495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.9601}],"Text":"load","Confidence":73.0496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":95.129456}],"Text":"freely","Confidence":65.9062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.78978}],"Text":"last","Confidence":56.528465}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(OTSU).json index 186d238..e9aed3d 100644 --- a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57351}],"Text":"action","Confidence":96.9736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56613}],"Text":"last","Confidence":96.96294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574486}],"Text":"service","Confidence":96.91257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56535}],"Text":"variable","Confidence":96.83685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57451}],"Text":"profile","Confidence":96.81819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5693}],"Text":"in","Confidence":96.81145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.555305}],"Text":"open","Confidence":96.80621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.568184}],"Text":"default","Confidence":96.80252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57287}],"Text":"name","Confidence":96.78118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57179}],"Text":"help","Confidence":96.70847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.52641}],"Text":"engine","Confidence":96.68489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5215}],"Text":"from","Confidence":96.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5746}],"Text":"defined","Confidence":96.55448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54484}],"Text":"dialog","Confidence":96.53354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45832}],"Text":"the","Confidence":96.20824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55675}],"Text":"freely","Confidence":95.90327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.45671}],"Text":"administration","Confidence":95.70848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.29031}],"Text":"save","Confidence":95.03221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573906}],"Text":"profiles","Confidence":94.41471},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.02199}],"Text":"linked","Confidence":90.34941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.821594}],"Text":"load","Confidence":84.72113},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":93.85449}],"Text":"no","Confidence":56.981445}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57351}],"Text":"action","Confidence":96.9736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56613}],"Text":"last","Confidence":96.96294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574486}],"Text":"service","Confidence":96.91257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56535}],"Text":"variable","Confidence":96.83685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57451}],"Text":"profile","Confidence":96.81819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5693}],"Text":"in","Confidence":96.81145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.555305}],"Text":"open","Confidence":96.80621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.568184}],"Text":"default","Confidence":96.80252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57287}],"Text":"name","Confidence":96.78118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57179}],"Text":"help","Confidence":96.70847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.52641}],"Text":"engine","Confidence":96.68489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5215}],"Text":"from","Confidence":96.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5746}],"Text":"defined","Confidence":96.55448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54484}],"Text":"dialog","Confidence":96.53354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45832}],"Text":"the","Confidence":96.20824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55675}],"Text":"freely","Confidence":95.90327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.45671}],"Text":"administration","Confidence":95.70848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.29031}],"Text":"save","Confidence":95.03221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573906}],"Text":"profiles","Confidence":94.41471},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.02199}],"Text":"linked","Confidence":90.34941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.821594}],"Text":"load","Confidence":84.72113},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":93.85449}],"Text":"no","Confidence":56.981445}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Triangle).json index 06347d5..cd96685 100644 --- a/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/runtime_function_create_002.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574585}],"Text":"engine","Confidence":96.96724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57163}],"Text":"the","Confidence":96.6169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56579}],"Text":"service","Confidence":95.83386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.373856}],"Text":"in","Confidence":95.61698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574776}],"Text":"profiles","Confidence":95.55604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.250244}],"Text":"open","Confidence":94.751686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.47998}],"Text":"dialog","Confidence":89.13274},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.47126}],"Text":"oloadpreile","Confidence":69.853004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39619}],"Text":"administration","Confidence":58.86405}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574585}],"Text":"engine","Confidence":96.96724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57163}],"Text":"the","Confidence":96.6169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56579}],"Text":"service","Confidence":95.83386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.373856}],"Text":"in","Confidence":95.61698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574776}],"Text":"profiles","Confidence":95.55604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.250244}],"Text":"open","Confidence":94.751686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.47998}],"Text":"dialog","Confidence":89.13274},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.47126}],"Text":"oloadpreile","Confidence":69.853004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39619}],"Text":"administration","Confidence":58.86405}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(04_04).json index a6d91ca..42b4241 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.99084}],"Text":"ep","Confidence":53.791428}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.99084}],"Text":"ep","Confidence":53.791428}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index e8186ac..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57454}],"Text":"engine","Confidence":96.82761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56031}],"Text":"profiles","Confidence":95.95632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.8927}],"Text":"service","Confidence":92.248924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.15137}],"Text":"default","Confidence":75.9611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.92989}],"Text":"ip","Confidence":51.25348}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(08_08).json index cecc306..eada8d9 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.556915}],"Text":"profiles","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56801}],"Text":"engine","Confidence":96.5118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.40695}],"Text":"service","Confidence":95.84869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.92006}],"Text":"from","Confidence":85.44043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.43407}],"Text":"name","Confidence":84.60788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56266}],"Text":"defined","Confidence":78.425316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.28152}],"Text":"tame","Confidence":75.692024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.510666}],"Text":"freely","Confidence":73.51257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57334}],"Text":"variable","Confidence":54.382523}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.556915}],"Text":"profiles","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56801}],"Text":"engine","Confidence":96.5118},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.40695}],"Text":"service","Confidence":95.84869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.92006}],"Text":"from","Confidence":85.44043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.43407}],"Text":"name","Confidence":84.60788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56266}],"Text":"defined","Confidence":78.425316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.28152}],"Text":"tame","Confidence":75.692024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.510666}],"Text":"freely","Confidence":73.51257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57334}],"Text":"variable","Confidence":54.382523}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 2c68b47..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57466}],"Text":"profiles","Confidence":96.91095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56962}],"Text":"engine","Confidence":96.90101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573425}],"Text":"freely","Confidence":96.7962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.571785}],"Text":"defined","Confidence":96.49954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.48445}],"Text":"from","Confidence":96.39117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.45663}],"Text":"load","Confidence":96.196396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.43274}],"Text":"service","Confidence":96.0292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56091}],"Text":"default","Confidence":92.95112},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.13504}],"Text":"variable","Confidence":91.01585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55517}],"Text":"name","Confidence":90.622765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.559326}],"Text":"profile","Confidence":90.30702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.56187}],"Text":"name","Confidence":70.89193},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.67047}],"Text":"otast","Confidence":63.189713}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(12_12).json index d19b352..65100ee 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56052}],"Text":"engine","Confidence":96.923615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574684}],"Text":"profiles","Confidence":96.85043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47686}],"Text":"service","Confidence":96.33802},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.546074}],"Text":"from","Confidence":95.96402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52955}],"Text":"ministration","Confidence":95.74775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52367}],"Text":"in","Confidence":95.489426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57101}],"Text":"en","Confidence":94.28635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56157}],"Text":"variable","Confidence":82.57539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.37627}],"Text":"the","Confidence":81.63389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.06023}],"Text":"ined","Confidence":69.86653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.27645}],"Text":"last","Confidence":58.660774}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56052}],"Text":"engine","Confidence":96.923615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574684}],"Text":"profiles","Confidence":96.85043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47686}],"Text":"service","Confidence":96.33802},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.546074}],"Text":"from","Confidence":95.96402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52955}],"Text":"ministration","Confidence":95.74775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52367}],"Text":"in","Confidence":95.489426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57101}],"Text":"en","Confidence":94.28635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56157}],"Text":"variable","Confidence":82.57539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.37627}],"Text":"the","Confidence":81.63389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.06023}],"Text":"ined","Confidence":69.86653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.27645}],"Text":"last","Confidence":58.660774}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index a2a4347..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56522}],"Text":"engine","Confidence":96.85131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54155}],"Text":"in","Confidence":96.71743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.564644}],"Text":"profiles","Confidence":96.625435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.569244}],"Text":"service","Confidence":96.59238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.369736}],"Text":"administration","Confidence":95.58816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57322}],"Text":"the","Confidence":95.545944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56293}],"Text":"dialog","Confidence":95.502464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.43887}],"Text":"open","Confidence":68.07213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":95.77105}],"Text":"em","Confidence":60.16526}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(16_16).json index 00117f3..37bc126 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56699}],"Text":"load","Confidence":96.96897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.555176}],"Text":"the","Confidence":96.88625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57027}],"Text":"engine","Confidence":96.82779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57293}],"Text":"profile","Confidence":96.79655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54087}],"Text":"in","Confidence":96.78611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574104}],"Text":"service","Confidence":96.62783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.514366}],"Text":"open","Confidence":96.60058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54808}],"Text":"dialog","Confidence":96.32197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.49757}],"Text":"from","Confidence":93.28789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"administration","Confidence":91.54471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.377625}],"Text":"save","Confidence":82.06523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.77047}],"Text":"profie","Confidence":77.40317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.24354}],"Text":"es","Confidence":60.3846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.84743}],"Text":"cee","Confidence":56.449837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":93.32961}],"Text":"lo","Confidence":53.30731},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":97.92021}],"Text":"defaut","Confidence":50.789497}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56699}],"Text":"load","Confidence":96.96897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.555176}],"Text":"the","Confidence":96.88625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57027}],"Text":"engine","Confidence":96.82779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57293}],"Text":"profile","Confidence":96.79655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54087}],"Text":"in","Confidence":96.78611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574104}],"Text":"service","Confidence":96.62783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.514366}],"Text":"open","Confidence":96.60058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54808}],"Text":"dialog","Confidence":96.32197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.49757}],"Text":"from","Confidence":93.28789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57462}],"Text":"administration","Confidence":91.54471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.377625}],"Text":"save","Confidence":82.06523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.77047}],"Text":"profie","Confidence":77.40317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.24354}],"Text":"es","Confidence":60.3846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.84743}],"Text":"cee","Confidence":56.449837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":93.32961}],"Text":"lo","Confidence":53.30731},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"@","Confidence":97.92021}],"Text":"defaut","Confidence":50.789497}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 32f7a1e..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569595}],"Text":"profiles","Confidence":96.984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56559}],"Text":"name","Confidence":96.86508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573235}],"Text":"engine","Confidence":96.85822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57396}],"Text":"action","Confidence":96.542946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56428}],"Text":"from","Confidence":96.54255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.491165}],"Text":"service","Confidence":96.43817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56195}],"Text":"profile","Confidence":96.22149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55681}],"Text":"the","Confidence":96.177574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.4017}],"Text":"open","Confidence":95.81192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.43306}],"Text":"in","Confidence":95.72446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573326}],"Text":"variable","Confidence":95.627174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.43974}],"Text":"administration","Confidence":95.43857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50594}],"Text":"dialog","Confidence":94.10015},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.44346}],"Text":"no","Confidence":89.1042},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.55865}],"Text":"cance","Confidence":87.566864},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.98956}],"Text":"osave","Confidence":83.054794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.39429}],"Text":"help","Confidence":82.67847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.3799}],"Text":"last","Confidence":81.27782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.26822}],"Text":"on","Confidence":58.728073},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.46213}],"Text":"tnhked","Confidence":56.539234},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.75802}],"Text":"opefaut","Confidence":56.354424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.67716}],"Text":"il","Confidence":53.296753}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(20_20).json index 6cb7062..b646096 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57192}],"Text":"the","Confidence":97.00111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.555504}],"Text":"name","Confidence":96.88852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55129}],"Text":"di","Confidence":96.85906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.568214}],"Text":"from","Confidence":96.82065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57446}],"Text":"engine","Confidence":96.587975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.570786}],"Text":"service","Confidence":96.54755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56955}],"Text":"action","Confidence":96.44342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572365}],"Text":"profiles","Confidence":96.05019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.562675}],"Text":"variable","Confidence":94.41503},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.98119}],"Text":"no","Confidence":91.34764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.552734}],"Text":"en","Confidence":89.33533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.93552}],"Text":"open","Confidence":85.548615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.544525}],"Text":"administration","Confidence":84.745476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.33938}],"Text":"onan","Confidence":84.65538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.46701}],"Text":"help","Confidence":83.56877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.276}],"Text":"in","Confidence":81.67796},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.52928}],"Text":"inked","Confidence":76.18692},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.40083}],"Text":"alog","Confidence":74.80584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.43213}],"Text":"ox","Confidence":69.4768},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.00209}],"Text":"cancet","Confidence":69.30826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.44}],"Text":"en","Confidence":60.516876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.283226}],"Text":"imm","Confidence":59.982586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.08164}],"Text":"ml","Confidence":58.571476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.17154}],"Text":"mm","Confidence":55.527237}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57192}],"Text":"the","Confidence":97.00111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.555504}],"Text":"name","Confidence":96.88852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55129}],"Text":"di","Confidence":96.85906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.568214}],"Text":"from","Confidence":96.82065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57446}],"Text":"engine","Confidence":96.587975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.570786}],"Text":"service","Confidence":96.54755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56955}],"Text":"action","Confidence":96.44342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572365}],"Text":"profiles","Confidence":96.05019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.562675}],"Text":"variable","Confidence":94.41503},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.98119}],"Text":"no","Confidence":91.34764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.552734}],"Text":"en","Confidence":89.33533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.93552}],"Text":"open","Confidence":85.548615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.544525}],"Text":"administration","Confidence":84.745476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.33938}],"Text":"onan","Confidence":84.65538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.46701}],"Text":"help","Confidence":83.56877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.276}],"Text":"in","Confidence":81.67796},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.52928}],"Text":"inked","Confidence":76.18692},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.40083}],"Text":"alog","Confidence":74.80584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.43213}],"Text":"ox","Confidence":69.4768},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.00209}],"Text":"cancet","Confidence":69.30826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.44}],"Text":"en","Confidence":60.516876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.283226}],"Text":"imm","Confidence":59.982586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.08164}],"Text":"ml","Confidence":58.571476},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.17154}],"Text":"mm","Confidence":55.527237}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index e0491df..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57483}],"Text":"service","Confidence":96.89352},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56207}],"Text":"profile","Confidence":96.87949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56825}],"Text":"engine","Confidence":96.85468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55625}],"Text":"from","Confidence":96.842804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57472}],"Text":"profiles","Confidence":96.80049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.534195}],"Text":"open","Confidence":96.73936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52985}],"Text":"di","Confidence":96.70891},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55885}],"Text":"en","Confidence":96.69481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57461}],"Text":"administration","Confidence":95.90705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55491}],"Text":"name","Confidence":94.88783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.18239}],"Text":"freely","Confidence":94.276726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57192}],"Text":"variable","Confidence":93.53833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573685}],"Text":"defined","Confidence":89.065956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.519424}],"Text":"in","Confidence":88.92564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57101}],"Text":"the","Confidence":88.92564},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.449745}],"Text":"alog","Confidence":82.14819},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"6","Confidence":94.97072}],"Text":"61","Confidence":59.24147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.50486}],"Text":"ike","Confidence":52.255283}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(24_24).json index acd454c..1a03ae5 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57475}],"Text":"profiles","Confidence":96.92203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56305}],"Text":"engine","Confidence":96.54327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56563}],"Text":"dialog","Confidence":96.269196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54296}],"Text":"open","Confidence":96.20107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56736}],"Text":"variable","Confidence":96.16466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574875}],"Text":"service","Confidence":95.46396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4694}],"Text":"in","Confidence":94.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56961}],"Text":"the","Confidence":94.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5738}],"Text":"administration","Confidence":91.632866},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.98621}],"Text":"no","Confidence":91.30586},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.58725}],"Text":"linked","Confidence":83.11073},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.122665}],"Text":"ej","Confidence":74.8681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.74296}],"Text":"inked","Confidence":56.200714}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57475}],"Text":"profiles","Confidence":96.92203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56305}],"Text":"engine","Confidence":96.54327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56563}],"Text":"dialog","Confidence":96.269196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54296}],"Text":"open","Confidence":96.20107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56736}],"Text":"variable","Confidence":96.16466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574875}],"Text":"service","Confidence":95.46396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4694}],"Text":"in","Confidence":94.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56961}],"Text":"the","Confidence":94.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5738}],"Text":"administration","Confidence":91.632866},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.98621}],"Text":"no","Confidence":91.30586},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.58725}],"Text":"linked","Confidence":83.11073},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.122665}],"Text":"ej","Confidence":74.8681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.74296}],"Text":"inked","Confidence":56.200714}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(0%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(10%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(10%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(100%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(20%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(20%).json index 7171390..2c6e420 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(30%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(30%).json index 9d2420e..b4b1bd8 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57396}],"Text":"help","Confidence":96.64955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.492676}],"Text":"the","Confidence":96.30517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46252}],"Text":"service","Confidence":95.71509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.35437}],"Text":"cancel","Confidence":95.48058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.30509}],"Text":"profile","Confidence":95.135635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.036674}],"Text":"ok","Confidence":93.25674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.46012}],"Text":"open","Confidence":93.23922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57216}],"Text":"engine","Confidence":92.68582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.555115}],"Text":"dialog","Confidence":90.54859},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.82899}],"Text":"im","Confidence":77.802925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.71953}],"Text":"save","Confidence":63.036682},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.21013}],"Text":"prefiles","Confidence":52.470886}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57396}],"Text":"help","Confidence":96.64955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.492676}],"Text":"the","Confidence":96.30517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46252}],"Text":"service","Confidence":95.71509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.35437}],"Text":"cancel","Confidence":95.48058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.30509}],"Text":"profile","Confidence":95.135635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.036674}],"Text":"ok","Confidence":93.25674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.46012}],"Text":"open","Confidence":93.23922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57216}],"Text":"engine","Confidence":92.68582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.555115}],"Text":"dialog","Confidence":90.54859},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.82899}],"Text":"im","Confidence":77.802925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.71953}],"Text":"save","Confidence":63.036682},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":93.21013}],"Text":"prefiles","Confidence":52.470886}],"Elapsed":0.0012} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(40%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(40%).json index a8e6796..6fd6988 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56062}],"Text":"in","Confidence":96.91468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57145}],"Text":"profile","Confidence":96.826004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57225}],"Text":"engine","Confidence":96.657875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56464}],"Text":"help","Confidence":96.53412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49843}],"Text":"the","Confidence":96.48902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.537315}],"Text":"administration","Confidence":96.4181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57384}],"Text":"service","Confidence":95.831985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5664}],"Text":"action","Confidence":95.4149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.514366}],"Text":"dialog","Confidence":93.012375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.97155}],"Text":"open","Confidence":64.568665}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56062}],"Text":"in","Confidence":96.91468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57145}],"Text":"profile","Confidence":96.826004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57225}],"Text":"engine","Confidence":96.657875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56464}],"Text":"help","Confidence":96.53412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49843}],"Text":"the","Confidence":96.48902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.537315}],"Text":"administration","Confidence":96.4181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57384}],"Text":"service","Confidence":95.831985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5664}],"Text":"action","Confidence":95.4149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.514366}],"Text":"dialog","Confidence":93.012375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.97155}],"Text":"open","Confidence":64.568665}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(50%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(50%).json index ca41454..41c81f7 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57265}],"Text":"action","Confidence":97.00855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57233}],"Text":"help","Confidence":96.9509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.565125}],"Text":"in","Confidence":96.8833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57444}],"Text":"the","Confidence":96.8833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57232}],"Text":"engine","Confidence":96.79608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56718}],"Text":"dialog","Confidence":96.78728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57479}],"Text":"profile","Confidence":96.57161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56834}],"Text":"load","Confidence":96.46845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.557884}],"Text":"service","Confidence":96.37889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568726}],"Text":"administration","Confidence":95.066444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03576}],"Text":"pen","Confidence":93.25029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.564186}],"Text":"profiles","Confidence":92.26171},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u00DC","Confidence":94.93318}],"Text":"save","Confidence":64.53225}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57265}],"Text":"action","Confidence":97.00855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57233}],"Text":"help","Confidence":96.9509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.565125}],"Text":"in","Confidence":96.8833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57444}],"Text":"the","Confidence":96.8833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57232}],"Text":"engine","Confidence":96.79608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56718}],"Text":"dialog","Confidence":96.78728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57479}],"Text":"profile","Confidence":96.57161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56834}],"Text":"load","Confidence":96.46845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.557884}],"Text":"service","Confidence":96.37889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568726}],"Text":"administration","Confidence":95.066444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03576}],"Text":"pen","Confidence":93.25029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.564186}],"Text":"profiles","Confidence":92.26171},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u00DC","Confidence":94.93318}],"Text":"save","Confidence":64.53225}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(70%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(70%).json index b7e15f7..98b679b 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57315}],"Text":"action","Confidence":97.01018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57069}],"Text":"service","Confidence":96.99251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57067}],"Text":"name","Confidence":96.98502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5712}],"Text":"in","Confidence":96.96361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56488}],"Text":"variable","Confidence":96.898186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5739}],"Text":"from","Confidence":96.89707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56736}],"Text":"dialog","Confidence":96.871826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57465}],"Text":"engine","Confidence":96.80705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57429}],"Text":"profile","Confidence":96.766525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54855}],"Text":"freely","Confidence":96.765854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573494}],"Text":"administration","Confidence":96.711914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57328}],"Text":"the","Confidence":96.60149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56519}],"Text":"default","Confidence":96.56693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57447}],"Text":"defined","Confidence":96.438255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.54523}],"Text":"last","Confidence":95.31894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57358}],"Text":"profiles","Confidence":92.68663},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.85226}],"Text":"no","Confidence":91.96579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.27058}],"Text":"save","Confidence":91.71268},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.01882}],"Text":"linked","Confidence":90.182816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.9803}],"Text":"open","Confidence":85.86209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.786224}],"Text":"load","Confidence":84.503555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.445595}],"Text":"o\u00F6","Confidence":52.043243}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57315}],"Text":"action","Confidence":97.01018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57069}],"Text":"service","Confidence":96.99251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57067}],"Text":"name","Confidence":96.98502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5712}],"Text":"in","Confidence":96.96361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56488}],"Text":"variable","Confidence":96.898186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5739}],"Text":"from","Confidence":96.89707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56736}],"Text":"dialog","Confidence":96.871826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57465}],"Text":"engine","Confidence":96.80705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57429}],"Text":"profile","Confidence":96.766525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54855}],"Text":"freely","Confidence":96.765854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573494}],"Text":"administration","Confidence":96.711914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57328}],"Text":"the","Confidence":96.60149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56519}],"Text":"default","Confidence":96.56693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57447}],"Text":"defined","Confidence":96.438255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.54523}],"Text":"last","Confidence":95.31894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57358}],"Text":"profiles","Confidence":92.68663},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.85226}],"Text":"no","Confidence":91.96579},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.27058}],"Text":"save","Confidence":91.71268},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.01882}],"Text":"linked","Confidence":90.182816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.9803}],"Text":"open","Confidence":85.86209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.786224}],"Text":"load","Confidence":84.503555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.445595}],"Text":"o\u00F6","Confidence":52.043243}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(80%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(80%).json index 6d9e175..083decd 100644 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57211}],"Text":"the","Confidence":96.9957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56499}],"Text":"variable","Confidence":96.94384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57341}],"Text":"from","Confidence":96.89976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57033}],"Text":"defined","Confidence":96.8832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55524}],"Text":"open","Confidence":96.82609},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54461}],"Text":"name","Confidence":96.81226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51433}],"Text":"engine","Confidence":96.58561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.49101}],"Text":"service","Confidence":96.437096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48089}],"Text":"in","Confidence":96.366196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57456}],"Text":"dialog","Confidence":96.31406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55602}],"Text":"action","Confidence":95.7739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54109}],"Text":"save","Confidence":93.80477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"profiles","Confidence":93.61816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57081}],"Text":"administration","Confidence":92.550995},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.97473}],"Text":"no","Confidence":91.69255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.03948}],"Text":"linked","Confidence":91.69173},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.039215}],"Text":"engne","Confidence":91.42964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.77139}],"Text":"last","Confidence":77.39978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u00AB","Confidence":98.26956}],"Text":"default","Confidence":63.445183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56953}],"Text":"profile","Confidence":63.184326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":96.65321}],"Text":"load","Confidence":62.951305},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.042595}],"Text":"profie","Confidence":57.065414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u00AB","Confidence":93.4144}],"Text":"freely","Confidence":52.81172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.040596}],"Text":"name","Confidence":51.284157}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57211}],"Text":"the","Confidence":96.9957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56499}],"Text":"variable","Confidence":96.94384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57341}],"Text":"from","Confidence":96.89976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57033}],"Text":"defined","Confidence":96.8832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55524}],"Text":"open","Confidence":96.82609},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.54461}],"Text":"name","Confidence":96.81226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51433}],"Text":"engine","Confidence":96.58561},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.49101}],"Text":"service","Confidence":96.437096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.48089}],"Text":"in","Confidence":96.366196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57456}],"Text":"dialog","Confidence":96.31406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55602}],"Text":"action","Confidence":95.7739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54109}],"Text":"save","Confidence":93.80477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57474}],"Text":"profiles","Confidence":93.61816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57081}],"Text":"administration","Confidence":92.550995},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u003C","Confidence":98.97473}],"Text":"no","Confidence":91.69255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":99.03948}],"Text":"linked","Confidence":91.69173},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.039215}],"Text":"engne","Confidence":91.42964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.77139}],"Text":"last","Confidence":77.39978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u00AB","Confidence":98.26956}],"Text":"default","Confidence":63.445183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56953}],"Text":"profile","Confidence":63.184326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":96.65321}],"Text":"load","Confidence":62.951305},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.042595}],"Text":"profie","Confidence":57.065414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u00AB","Confidence":93.4144}],"Text":"freely","Confidence":52.81172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.040596}],"Text":"name","Confidence":51.284157}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(90%).json b/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(90%).json deleted file mode 100644 index a33dae4..0000000 --- a/Examples/testdata/results/runtime_function_create_002.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57453}],"Text":"the","Confidence":96.8455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56632}],"Text":"engine","Confidence":96.76238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.563774}],"Text":"in","Confidence":96.627785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57072}],"Text":"service","Confidence":96.589836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56989}],"Text":"profiles","Confidence":96.45329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5517}],"Text":"dialog","Confidence":95.84439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57123}],"Text":"profile","Confidence":95.7116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56543}],"Text":"administration","Confidence":95.45324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.0331}],"Text":"open","Confidence":93.2317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.4637}],"Text":"action","Confidence":52.430004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":93.15992}],"Text":"load","Confidence":52.119415}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Kapur).json index 1b3f441..e2daf9f 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57355}],"Text":"retain","Confidence":97.00388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57235}],"Text":"open","Confidence":96.94509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56345}],"Text":"data","Confidence":96.92889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.561424}],"Text":"mode","Confidence":96.85036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56718}],"Text":"store","Confidence":96.83563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57359}],"Text":"variables","Confidence":96.75106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57266}],"Text":"cold","Confidence":96.70253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52017}],"Text":"storing","Confidence":96.60791},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53815}],"Text":"path","Confidence":96.5146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57192}],"Text":"for","Confidence":96.5146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57466}],"Text":"this","Confidence":96.0471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56242}],"Text":"box","Confidence":96.0471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.459465}],"Text":"hot","Confidence":95.9031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5705}],"Text":"by","Confidence":95.10764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.511795}],"Text":"name","Confidence":95.10764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570595}],"Text":"real","Confidence":94.12478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56642}],"Text":"no","Confidence":94.004524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57292}],"Text":"delay","Confidence":93.287964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.568565}],"Text":"start","Confidence":93.06887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57299}],"Text":"restart","Confidence":92.88888},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04159}],"Text":"priorty","Confidence":92.05988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.539246}],"Text":"stepping","Confidence":91.403015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55185}],"Text":"time","Confidence":90.359886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.55809}],"Text":"startup","Confidence":89.90663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54336}],"Text":"start","Confidence":89.186615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573494}],"Text":"variables","Confidence":88.07408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.38243}],"Text":"tes","Confidence":82.911896},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.83744}],"Text":"cyclically","Confidence":70.75187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"_","Confidence":97.24101}],"Text":"_projects","Confidence":60.232624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.53544}],"Text":"causers","Confidence":60.232624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.11876}],"Text":"is","Confidence":51.831306}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57355}],"Text":"retain","Confidence":97.00388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57235}],"Text":"open","Confidence":96.94509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56345}],"Text":"data","Confidence":96.92889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.561424}],"Text":"mode","Confidence":96.85036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56718}],"Text":"store","Confidence":96.83563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57359}],"Text":"variables","Confidence":96.75106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57266}],"Text":"cold","Confidence":96.70253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52017}],"Text":"storing","Confidence":96.60791},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53815}],"Text":"path","Confidence":96.5146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57192}],"Text":"for","Confidence":96.5146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57466}],"Text":"this","Confidence":96.0471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56242}],"Text":"box","Confidence":96.0471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.459465}],"Text":"hot","Confidence":95.9031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5705}],"Text":"by","Confidence":95.10764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.511795}],"Text":"name","Confidence":95.10764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570595}],"Text":"real","Confidence":94.12478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56642}],"Text":"no","Confidence":94.004524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57292}],"Text":"delay","Confidence":93.287964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.568565}],"Text":"start","Confidence":93.06887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57299}],"Text":"restart","Confidence":92.88888},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04159}],"Text":"priorty","Confidence":92.05988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.539246}],"Text":"stepping","Confidence":91.403015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55185}],"Text":"time","Confidence":90.359886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.55809}],"Text":"startup","Confidence":89.90663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54336}],"Text":"start","Confidence":89.186615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573494}],"Text":"variables","Confidence":88.07408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.38243}],"Text":"tes","Confidence":82.911896},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.83744}],"Text":"cyclically","Confidence":70.75187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"_","Confidence":97.24101}],"Text":"_projects","Confidence":60.232624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.53544}],"Text":"causers","Confidence":60.232624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.11876}],"Text":"is","Confidence":51.831306}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(OTSU).json index 6f9e1b7..9181ec6 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57241}],"Text":"by","Confidence":96.96319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57466}],"Text":"data","Confidence":96.95929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57411}],"Text":"store","Confidence":96.91853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573975}],"Text":"open","Confidence":96.91568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56978}],"Text":"storing","Confidence":96.878494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574554}],"Text":"communication","Confidence":96.81262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.566086}],"Text":"no","Confidence":96.77608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572876}],"Text":"variables","Confidence":96.76769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574646}],"Text":"start","Confidence":96.75811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.563255}],"Text":"port","Confidence":96.750984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574684}],"Text":"stepping","Confidence":96.72073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56886}],"Text":"this","Confidence":96.713646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53029}],"Text":"retain","Confidence":96.70303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57477}],"Text":"time","Confidence":96.69432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574875}],"Text":"settings","Confidence":96.65978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57257}],"Text":"priority","Confidence":96.64966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52134}],"Text":"restart","Confidence":96.64937},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57122}],"Text":"for","Confidence":96.64892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57037}],"Text":"startup","Confidence":96.64148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57231}],"Text":"event","Confidence":96.63474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56821}],"Text":"real","Confidence":96.54121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572426}],"Text":"cold","Confidence":96.52113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570335}],"Text":"path","Confidence":96.48039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.53361}],"Text":"hot","Confidence":96.47242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52752}],"Text":"name","Confidence":96.45189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57402}],"Text":"start","Confidence":96.29286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573135}],"Text":"advanced","Confidence":96.0781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55109}],"Text":"redundancy","Confidence":95.38614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57487}],"Text":"standard","Confidence":95.31044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52176}],"Text":"mode","Confidence":94.84977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57242}],"Text":"box","Confidence":94.73345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57263}],"Text":"variables","Confidence":94.18287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57475}],"Text":"general","Confidence":93.58269},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.044136}],"Text":"9000","Confidence":93.30893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572395}],"Text":"delay","Confidence":93.23848},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.884094}],"Text":"cyclically","Confidence":89.39919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.27857}],"Text":"oad","Confidence":80.95},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.00075}],"Text":"standardport","Confidence":74.22679},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.2077}],"Text":"20d","Confidence":71.01385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.86842}],"Text":"in","Confidence":63.30277}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57241}],"Text":"by","Confidence":96.96319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57466}],"Text":"data","Confidence":96.95929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57411}],"Text":"store","Confidence":96.91853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573975}],"Text":"open","Confidence":96.91568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56978}],"Text":"storing","Confidence":96.878494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574554}],"Text":"communication","Confidence":96.81262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.566086}],"Text":"no","Confidence":96.77608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572876}],"Text":"variables","Confidence":96.76769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574646}],"Text":"start","Confidence":96.75811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.563255}],"Text":"port","Confidence":96.750984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574684}],"Text":"stepping","Confidence":96.72073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56886}],"Text":"this","Confidence":96.713646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53029}],"Text":"retain","Confidence":96.70303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57477}],"Text":"time","Confidence":96.69432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574875}],"Text":"settings","Confidence":96.65978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57257}],"Text":"priority","Confidence":96.64966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52134}],"Text":"restart","Confidence":96.64937},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57122}],"Text":"for","Confidence":96.64892},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57037}],"Text":"startup","Confidence":96.64148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57231}],"Text":"event","Confidence":96.63474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56821}],"Text":"real","Confidence":96.54121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.572426}],"Text":"cold","Confidence":96.52113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570335}],"Text":"path","Confidence":96.48039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.53361}],"Text":"hot","Confidence":96.47242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52752}],"Text":"name","Confidence":96.45189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57402}],"Text":"start","Confidence":96.29286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573135}],"Text":"advanced","Confidence":96.0781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55109}],"Text":"redundancy","Confidence":95.38614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57487}],"Text":"standard","Confidence":95.31044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52176}],"Text":"mode","Confidence":94.84977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57242}],"Text":"box","Confidence":94.73345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57263}],"Text":"variables","Confidence":94.18287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57475}],"Text":"general","Confidence":93.58269},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.044136}],"Text":"9000","Confidence":93.30893},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572395}],"Text":"delay","Confidence":93.23848},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.884094}],"Text":"cyclically","Confidence":89.39919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":97.27857}],"Text":"oad","Confidence":80.95},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.00075}],"Text":"standardport","Confidence":74.22679},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.2077}],"Text":"20d","Confidence":71.01385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.86842}],"Text":"in","Confidence":63.30277}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Triangle).json index 103ec80..2ab8c46 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.9429}],"Text":"ant","Confidence":76.70738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.51264}],"Text":"coll","Confidence":69.952576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.15135}],"Text":"ed","Confidence":66.05948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.87493}],"Text":"dat","Confidence":65.59817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.20768}],"Text":"made","Confidence":63.5876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.036835}],"Text":"ih","Confidence":52.208363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.530075}],"Text":"stepping","Confidence":50.86461}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.9429}],"Text":"ant","Confidence":76.70738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.51264}],"Text":"coll","Confidence":69.952576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":95.15135}],"Text":"ed","Confidence":66.05948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.87493}],"Text":"dat","Confidence":65.59817},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.20768}],"Text":"made","Confidence":63.5876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.036835}],"Text":"ih","Confidence":52.208363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.530075}],"Text":"stepping","Confidence":50.86461}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index a1d7cdd..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.31457}],"Text":"heit","Confidence":76.74209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.04837}],"Text":"het","Confidence":65.980774},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.82515}],"Text":"catd","Confidence":56.67633},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":96.17868}],"Text":"mada","Confidence":55.7465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":94.004654}],"Text":"wie","Confidence":53.97847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.42818}],"Text":"air","Confidence":52.983685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":93.63858}],"Text":"sey","Confidence":52.03395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":93.105225}],"Text":"ran","Confidence":51.736557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":93.30938}],"Text":"se","Confidence":51.255447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":92.951225}],"Text":"eta","Confidence":50.65857}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(04_04).json index caf4c10..786032e 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.495476}],"Text":"data","Confidence":96.46834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.503006}],"Text":"this","Confidence":95.63832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.554436}],"Text":"by","Confidence":94.84888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.521545}],"Text":"box","Confidence":94.77315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.9041}],"Text":"retain","Confidence":92.15368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.77268}],"Text":"mode","Confidence":91.40875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.27604}],"Text":"variables","Confidence":90.626755},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.14597}],"Text":"port","Confidence":81.000145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54964}],"Text":"store","Confidence":70.51301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.34485}],"Text":"statt","Confidence":69.51026},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.37411}],"Text":"vanables","Confidence":60.91771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.946556}],"Text":"standard","Confidence":57.625908},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.26085}],"Text":"variables","Confidence":51.585014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.95991}],"Text":"naa","Confidence":50.72222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.93157}],"Text":"stang","Confidence":50.52101}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.495476}],"Text":"data","Confidence":96.46834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.503006}],"Text":"this","Confidence":95.63832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.554436}],"Text":"by","Confidence":94.84888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.521545}],"Text":"box","Confidence":94.77315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.9041}],"Text":"retain","Confidence":92.15368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.77268}],"Text":"mode","Confidence":91.40875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.27604}],"Text":"variables","Confidence":90.626755},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.14597}],"Text":"port","Confidence":81.000145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54964}],"Text":"store","Confidence":70.51301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.34485}],"Text":"statt","Confidence":69.51026},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.37411}],"Text":"vanables","Confidence":60.91771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":93.946556}],"Text":"standard","Confidence":57.625908},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.26085}],"Text":"variables","Confidence":51.585014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.95991}],"Text":"naa","Confidence":50.72222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.93157}],"Text":"stang","Confidence":50.52101}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 4d3b29f..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57429}],"Text":"data","Confidence":96.98645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573814}],"Text":"by","Confidence":96.98602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570526}],"Text":"retain","Confidence":96.72366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.544304}],"Text":"store","Confidence":96.72366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56986}],"Text":"path","Confidence":96.1418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.517}],"Text":"real","Confidence":93.302155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.84935}],"Text":"storing","Confidence":91.945435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.80915}],"Text":"event","Confidence":91.66406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570015}],"Text":"for","Confidence":91.24105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.506714}],"Text":"name","Confidence":90.28253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.560814}],"Text":"variables","Confidence":85.36442},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":98.46786}],"Text":"time","Confidence":85.1475},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04186}],"Text":"prionty","Confidence":83.40504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.41796}],"Text":"port","Confidence":73.98279},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.53699}],"Text":"cyclically","Confidence":68.75889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":95.49902}],"Text":"pd","Confidence":59.754566},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.25828}],"Text":"gausers","Confidence":55.10676}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(08_08).json index f4c04c7..de03fb7 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57459}],"Text":"data","Confidence":96.870056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55714}],"Text":"box","Confidence":96.80481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54955}],"Text":"store","Confidence":96.78869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57283}],"Text":"mode","Confidence":96.782684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57488}],"Text":"port","Confidence":96.70594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57207}],"Text":"by","Confidence":96.67836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53666}],"Text":"name","Confidence":96.67836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.566765}],"Text":"retain","Confidence":96.63133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.570045}],"Text":"stepping","Confidence":96.55034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57211}],"Text":"variables","Confidence":96.38535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46999}],"Text":"this","Confidence":96.28996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.48758}],"Text":"no","Confidence":95.68243},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55919}],"Text":"open","Confidence":94.42093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54783}],"Text":"start","Confidence":93.42811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573814}],"Text":"real","Confidence":92.20193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.87483}],"Text":"time","Confidence":92.12384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.244125}],"Text":"standard","Confidence":87.708885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04047}],"Text":"cyclically","Confidence":84.357285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.13982}],"Text":"event","Confidence":74.180626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57402}],"Text":"priority","Confidence":61.48041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.38754}],"Text":"port","Confidence":59.29936}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57459}],"Text":"data","Confidence":96.870056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55714}],"Text":"box","Confidence":96.80481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54955}],"Text":"store","Confidence":96.78869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57283}],"Text":"mode","Confidence":96.782684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57488}],"Text":"port","Confidence":96.70594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57207}],"Text":"by","Confidence":96.67836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53666}],"Text":"name","Confidence":96.67836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.566765}],"Text":"retain","Confidence":96.63133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.570045}],"Text":"stepping","Confidence":96.55034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57211}],"Text":"variables","Confidence":96.38535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46999}],"Text":"this","Confidence":96.28996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.48758}],"Text":"no","Confidence":95.68243},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55919}],"Text":"open","Confidence":94.42093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54783}],"Text":"start","Confidence":93.42811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573814}],"Text":"real","Confidence":92.20193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.87483}],"Text":"time","Confidence":92.12384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.244125}],"Text":"standard","Confidence":87.708885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04047}],"Text":"cyclically","Confidence":84.357285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.13982}],"Text":"event","Confidence":74.180626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57402}],"Text":"priority","Confidence":61.48041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.38754}],"Text":"port","Confidence":59.29936}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index e3389ba..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57483}],"Text":"retain","Confidence":96.97814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57415}],"Text":"start","Confidence":96.889404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57192}],"Text":"for","Confidence":96.88691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56806}],"Text":"path","Confidence":96.8858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55095}],"Text":"box","Confidence":96.84651},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57457}],"Text":"real","Confidence":96.653015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.51642}],"Text":"storing","Confidence":96.614914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568214}],"Text":"data","Confidence":96.58544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.50657}],"Text":"name","Confidence":96.54598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57429}],"Text":"cold","Confidence":96.45928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.571205}],"Text":"store","Confidence":96.30041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.53526}],"Text":"no","Confidence":96.20491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.440125}],"Text":"oad","Confidence":96.08088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53701}],"Text":"variables","Confidence":95.323906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57382}],"Text":"start","Confidence":95.07765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567764}],"Text":"open","Confidence":94.61907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57414}],"Text":"this","Confidence":94.61907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57371}],"Text":"variables","Confidence":94.59526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57434}],"Text":"priority","Confidence":94.00354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57321}],"Text":"time","Confidence":93.91416},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04194}],"Text":"cyciically","Confidence":78.72212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.29041}],"Text":"evert","Confidence":74.032906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56484}],"Text":"by","Confidence":73.22354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.42171}],"Text":"por","Confidence":54.03266}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(12_12).json index eba1589..6b4a5a2 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574684}],"Text":"store","Confidence":97.001205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56973}],"Text":"data","Confidence":96.988106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57458}],"Text":"retain","Confidence":96.96381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56537}],"Text":"by","Confidence":96.59953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5338}],"Text":"name","Confidence":96.59953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573006}],"Text":"time","Confidence":96.48203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57429}],"Text":"variables","Confidence":96.36555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.563}],"Text":"storing","Confidence":96.34863},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572556}],"Text":"priority","Confidence":95.25784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"path","Confidence":95.144295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5709}],"Text":"for","Confidence":95.144295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574585}],"Text":"real","Confidence":91.42879},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04237}],"Text":"cyciically","Confidence":69.38209}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574684}],"Text":"store","Confidence":97.001205},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56973}],"Text":"data","Confidence":96.988106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57458}],"Text":"retain","Confidence":96.96381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56537}],"Text":"by","Confidence":96.59953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5338}],"Text":"name","Confidence":96.59953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573006}],"Text":"time","Confidence":96.48203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57429}],"Text":"variables","Confidence":96.36555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.563}],"Text":"storing","Confidence":96.34863},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572556}],"Text":"priority","Confidence":95.25784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"path","Confidence":95.144295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5709}],"Text":"for","Confidence":95.144295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574585}],"Text":"real","Confidence":91.42879},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04237}],"Text":"cyciically","Confidence":69.38209}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 67630aa..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574615}],"Text":"store","Confidence":97.00179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57299}],"Text":"path","Confidence":96.969955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574265}],"Text":"data","Confidence":96.96131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57069}],"Text":"for","Confidence":96.95455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57451}],"Text":"time","Confidence":96.46369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.48678}],"Text":"storing","Confidence":96.40746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.49721}],"Text":"retain","Confidence":96.16778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.569084}],"Text":"name","Confidence":95.535385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57139}],"Text":"by","Confidence":95.38603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57372}],"Text":"variables","Confidence":95.2089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574646}],"Text":"real","Confidence":92.04719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57178}],"Text":"priority","Confidence":52.250412}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(16_16).json index 8d6308e..9f432eb 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.569275}],"Text":"retain","Confidence":96.984924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574265}],"Text":"path","Confidence":96.95196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57383}],"Text":"cold","Confidence":96.91744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55273}],"Text":"mode","Confidence":96.86911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.552086}],"Text":"data","Confidence":96.864586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.560265}],"Text":"no","Confidence":96.85642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56798}],"Text":"box","Confidence":96.806496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54715}],"Text":"for","Confidence":96.76983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57425}],"Text":"time","Confidence":96.729515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52671}],"Text":"stepping","Confidence":96.68699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56977}],"Text":"store","Confidence":96.65764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57063}],"Text":"by","Confidence":96.6189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57382}],"Text":"variables","Confidence":96.21433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57367}],"Text":"variables","Confidence":95.62271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57384}],"Text":"start","Confidence":94.8144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567474}],"Text":"open","Confidence":94.63969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.536224}],"Text":"this","Confidence":94.63969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56939}],"Text":"start","Confidence":93.23911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.70631}],"Text":"name","Confidence":90.944145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57386}],"Text":"stat","Confidence":88.226555},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.042175}],"Text":"cyclically","Confidence":84.66522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.67311}],"Text":"oad","Confidence":76.71178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573326}],"Text":"rea","Confidence":76.416855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.39035}],"Text":"storing","Confidence":67.73248},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.46217}],"Text":"users","Confidence":54.98167},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572845}],"Text":"priority","Confidence":52.642372}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.569275}],"Text":"retain","Confidence":96.984924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574265}],"Text":"path","Confidence":96.95196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57383}],"Text":"cold","Confidence":96.91744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55273}],"Text":"mode","Confidence":96.86911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.552086}],"Text":"data","Confidence":96.864586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.560265}],"Text":"no","Confidence":96.85642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56798}],"Text":"box","Confidence":96.806496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54715}],"Text":"for","Confidence":96.76983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57425}],"Text":"time","Confidence":96.729515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52671}],"Text":"stepping","Confidence":96.68699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56977}],"Text":"store","Confidence":96.65764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57063}],"Text":"by","Confidence":96.6189},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57382}],"Text":"variables","Confidence":96.21433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57367}],"Text":"variables","Confidence":95.62271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57384}],"Text":"start","Confidence":94.8144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567474}],"Text":"open","Confidence":94.63969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.536224}],"Text":"this","Confidence":94.63969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56939}],"Text":"start","Confidence":93.23911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.70631}],"Text":"name","Confidence":90.944145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57386}],"Text":"stat","Confidence":88.226555},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.042175}],"Text":"cyclically","Confidence":84.66522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":96.67311}],"Text":"oad","Confidence":76.71178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573326}],"Text":"rea","Confidence":76.416855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.39035}],"Text":"storing","Confidence":67.73248},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.46217}],"Text":"users","Confidence":54.98167},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572845}],"Text":"priority","Confidence":52.642372}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index af72436..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57434}],"Text":"data","Confidence":97.003105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573494}],"Text":"store","Confidence":96.980804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57351}],"Text":"for","Confidence":96.96956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"path","Confidence":96.93373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5701}],"Text":"retain","Confidence":96.8873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57413}],"Text":"variables","Confidence":96.81897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.44349}],"Text":"storing","Confidence":96.10443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57142}],"Text":"by","Confidence":95.877426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.57235}],"Text":"name","Confidence":95.877426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57458}],"Text":"time","Confidence":95.802475},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.041176}],"Text":"cyclically","Confidence":87.42628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.52987}],"Text":"real","Confidence":73.64683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":93.55582}],"Text":"ors","Confidence":51.851803}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(20_20).json index 0b6d679..3fbcc3c 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57429}],"Text":"data","Confidence":97.00498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57036}],"Text":"store","Confidence":96.93254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57099}],"Text":"retain","Confidence":96.835686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57414}],"Text":"variables","Confidence":96.76745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.561455}],"Text":"by","Confidence":96.7207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57264}],"Text":"for","Confidence":96.60493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52331}],"Text":"storing","Confidence":96.47601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57484}],"Text":"path","Confidence":96.319466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55243}],"Text":"name","Confidence":96.30516},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.001976}],"Text":"cyclically","Confidence":86.35594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.54842}],"Text":"help","Confidence":84.71764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.84798}],"Text":"mm","Confidence":67.016655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.34348}],"Text":"ta","Confidence":65.39743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.11581}],"Text":"tg","Confidence":62.166344}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57429}],"Text":"data","Confidence":97.00498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57036}],"Text":"store","Confidence":96.93254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57099}],"Text":"retain","Confidence":96.835686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57414}],"Text":"variables","Confidence":96.76745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.561455}],"Text":"by","Confidence":96.7207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57264}],"Text":"for","Confidence":96.60493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52331}],"Text":"storing","Confidence":96.47601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57484}],"Text":"path","Confidence":96.319466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55243}],"Text":"name","Confidence":96.30516},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.001976}],"Text":"cyclically","Confidence":86.35594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.54842}],"Text":"help","Confidence":84.71764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.84798}],"Text":"mm","Confidence":67.016655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.34348}],"Text":"ta","Confidence":65.39743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.11581}],"Text":"tg","Confidence":62.166344}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index c94330e..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574196}],"Text":"retain","Confidence":96.94835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56591}],"Text":"for","Confidence":96.93969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57074}],"Text":"data","Confidence":96.93055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.574104}],"Text":"variables","Confidence":96.91992},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56849}],"Text":"path","Confidence":96.464874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55071}],"Text":"real","Confidence":96.3247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56317}],"Text":"storing","Confidence":95.87829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47459}],"Text":"store","Confidence":93.29437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55352}],"Text":"time","Confidence":92.81313},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56946}],"Text":"by","Confidence":92.378525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.5296}],"Text":"name","Confidence":92.378525},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.030304}],"Text":"priorty","Confidence":83.570724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.896645}],"Text":"tes","Confidence":53.92118},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.97278}],"Text":"t700","Confidence":53.92118}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(24_24).json index 300aca0..31a67e1 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56625}],"Text":"retain","Confidence":96.95849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56514}],"Text":"store","Confidence":96.890915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573135}],"Text":"data","Confidence":96.8551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.571724}],"Text":"for","Confidence":96.78084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5736}],"Text":"real","Confidence":96.542786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57273}],"Text":"storing","Confidence":93.93964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57286}],"Text":"path","Confidence":93.93964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57442}],"Text":"time","Confidence":93.30552},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04324}],"Text":"priorty","Confidence":91.82649},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.835976}],"Text":"cyckcaty","Confidence":75.066895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.42136}],"Text":"crac","Confidence":50.679836}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56625}],"Text":"retain","Confidence":96.95849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56514}],"Text":"store","Confidence":96.890915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573135}],"Text":"data","Confidence":96.8551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.571724}],"Text":"for","Confidence":96.78084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5736}],"Text":"real","Confidence":96.542786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57273}],"Text":"storing","Confidence":93.93964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57286}],"Text":"path","Confidence":93.93964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57442}],"Text":"time","Confidence":93.30552},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04324}],"Text":"priorty","Confidence":91.82649},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.835976}],"Text":"cyckcaty","Confidence":75.066895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.42136}],"Text":"crac","Confidence":50.679836}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(0%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(10%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(10%).json deleted file mode 100644 index f4d8e1d..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5743}],"Text":"data","Confidence":96.96852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56659}],"Text":"hot","Confidence":96.95805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57247}],"Text":"help","Confidence":96.91056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570694}],"Text":"retain","Confidence":96.906296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.557724}],"Text":"this","Confidence":96.904045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54909}],"Text":"store","Confidence":96.8436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54166}],"Text":"standard","Confidence":96.79157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55878}],"Text":"mode","Confidence":96.78548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.571915}],"Text":"restart","Confidence":96.72777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.531204}],"Text":"cold","Confidence":96.718445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57334}],"Text":"port","Confidence":96.67106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52006}],"Text":"open","Confidence":96.6404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574135}],"Text":"event","Confidence":96.63888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57327}],"Text":"cancel","Confidence":96.57258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54586}],"Text":"stepping","Confidence":96.56239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57425}],"Text":"path","Confidence":96.55846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.573006}],"Text":"communication","Confidence":96.53369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56868}],"Text":"variables","Confidence":96.42312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.573586}],"Text":"name","Confidence":96.413284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570206}],"Text":"for","Confidence":96.41136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.52758}],"Text":"start","Confidence":96.36857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.572464}],"Text":"storing","Confidence":96.28391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.46647}],"Text":"ok","Confidence":96.26529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46638}],"Text":"settings","Confidence":96.26466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.44684}],"Text":"no","Confidence":96.12785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56557}],"Text":"real","Confidence":96.06249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56523}],"Text":"by","Confidence":95.952774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56755}],"Text":"box","Confidence":95.90733},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56709}],"Text":"start","Confidence":95.4071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.42898}],"Text":"startup","Confidence":95.37693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57457}],"Text":"delay","Confidence":93.24368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56936}],"Text":"time","Confidence":93.13615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.018814}],"Text":"advanced","Confidence":93.131714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.568275}],"Text":"redundancy","Confidence":84.87417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57276}],"Text":"general","Confidence":82.38365},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"J","Confidence":97.09437}],"Text":"joad","Confidence":79.66058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53227}],"Text":"variables","Confidence":78.25918}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(100%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(20%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(20%).json index 077d7d0..9f46243 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5746}],"Text":"data","Confidence":97.012695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57368}],"Text":"by","Confidence":97.01104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57266}],"Text":"box","Confidence":97.00862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56869}],"Text":"retain","Confidence":96.98081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.571365}],"Text":"variables","Confidence":96.94251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57344}],"Text":"time","Confidence":96.913666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571785}],"Text":"open","Confidence":96.904236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.565704}],"Text":"stepping","Confidence":96.89573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572235}],"Text":"start","Confidence":96.8751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56284}],"Text":"cold","Confidence":96.85869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57232}],"Text":"storing","Confidence":96.84653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"settings","Confidence":96.8454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56856}],"Text":"real","Confidence":96.843185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54485}],"Text":"store","Confidence":96.813995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.572205}],"Text":"hot","Confidence":96.813805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.543945}],"Text":"name","Confidence":96.80759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57394}],"Text":"standard","Confidence":96.806816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.560616}],"Text":"priority","Confidence":96.791435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54076}],"Text":"no","Confidence":96.78531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52973}],"Text":"mode","Confidence":96.708145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57177}],"Text":"restart","Confidence":96.68577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52505}],"Text":"this","Confidence":96.59859},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57355}],"Text":"communication","Confidence":96.58831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"path","Confidence":96.55069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57184}],"Text":"advanced","Confidence":96.460495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.48142}],"Text":"startup","Confidence":96.36997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574425}],"Text":"port","Confidence":96.31783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570045}],"Text":"for","Confidence":96.27878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573654}],"Text":"event","Confidence":96.18267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.45252}],"Text":"start","Confidence":95.94484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57472}],"Text":"delay","Confidence":93.24834},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.63064}],"Text":"redundancy","Confidence":90.41445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.53904}],"Text":"general","Confidence":89.53602},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02987}],"Text":"cyclically","Confidence":87.61937},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"J","Confidence":97.877495}],"Text":"joad","Confidence":85.14244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57324}],"Text":"variables","Confidence":84.56412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.9415}],"Text":"cancel","Confidence":58.498695}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5746}],"Text":"data","Confidence":97.012695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57368}],"Text":"by","Confidence":97.01104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57266}],"Text":"box","Confidence":97.00862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56869}],"Text":"retain","Confidence":96.98081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.571365}],"Text":"variables","Confidence":96.94251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57344}],"Text":"time","Confidence":96.913666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571785}],"Text":"open","Confidence":96.904236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.565704}],"Text":"stepping","Confidence":96.89573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572235}],"Text":"start","Confidence":96.8751},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56284}],"Text":"cold","Confidence":96.85869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57232}],"Text":"storing","Confidence":96.84653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"settings","Confidence":96.8454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56856}],"Text":"real","Confidence":96.843185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54485}],"Text":"store","Confidence":96.813995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.572205}],"Text":"hot","Confidence":96.813805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.543945}],"Text":"name","Confidence":96.80759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57394}],"Text":"standard","Confidence":96.806816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.560616}],"Text":"priority","Confidence":96.791435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54076}],"Text":"no","Confidence":96.78531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52973}],"Text":"mode","Confidence":96.708145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57177}],"Text":"restart","Confidence":96.68577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52505}],"Text":"this","Confidence":96.59859},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57355}],"Text":"communication","Confidence":96.58831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"path","Confidence":96.55069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57184}],"Text":"advanced","Confidence":96.460495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.48142}],"Text":"startup","Confidence":96.36997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574425}],"Text":"port","Confidence":96.31783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570045}],"Text":"for","Confidence":96.27878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573654}],"Text":"event","Confidence":96.18267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.45252}],"Text":"start","Confidence":95.94484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57472}],"Text":"delay","Confidence":93.24834},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.63064}],"Text":"redundancy","Confidence":90.41445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.53904}],"Text":"general","Confidence":89.53602},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02987}],"Text":"cyclically","Confidence":87.61937},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"J","Confidence":97.877495}],"Text":"joad","Confidence":85.14244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57324}],"Text":"variables","Confidence":84.56412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.9415}],"Text":"cancel","Confidence":58.498695}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(40%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(40%).json index 5546f75..aeb3bb2 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57448}],"Text":"data","Confidence":97.00826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57132}],"Text":"retain","Confidence":96.99922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57273}],"Text":"by","Confidence":96.981895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56633}],"Text":"box","Confidence":96.867645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54867}],"Text":"settings","Confidence":96.8407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55489}],"Text":"real","Confidence":96.80096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57166}],"Text":"variables","Confidence":96.774826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.536385}],"Text":"name","Confidence":96.75468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53889}],"Text":"cold","Confidence":96.74687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56168}],"Text":"mode","Confidence":96.7434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57116}],"Text":"time","Confidence":96.74051},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55248}],"Text":"redundancy","Confidence":96.72562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.541664}],"Text":"general","Confidence":96.72258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57329}],"Text":"event","Confidence":96.71586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52867}],"Text":"startup","Confidence":96.70072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57423}],"Text":"store","Confidence":96.592545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53291}],"Text":"storing","Confidence":96.56793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57447}],"Text":"start","Confidence":96.543915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.50057}],"Text":"restart","Confidence":96.504005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53453}],"Text":"path","Confidence":96.482956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57359}],"Text":"for","Confidence":96.482956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56101}],"Text":"hot","Confidence":96.405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57232}],"Text":"communication","Confidence":96.35087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.476364}],"Text":"9000","Confidence":96.334526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.569046}],"Text":"advanced","Confidence":96.28191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57395}],"Text":"start","Confidence":96.14139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.44023}],"Text":"help","Confidence":95.840515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574646}],"Text":"this","Confidence":95.61099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5721}],"Text":"variables","Confidence":95.41619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56232}],"Text":"port","Confidence":95.149895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54109}],"Text":"standard","Confidence":94.87295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55674}],"Text":"no","Confidence":93.5426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5747}],"Text":"delay","Confidence":92.02119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.858315}],"Text":"open","Confidence":92.008194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57411}],"Text":"priority","Confidence":90.354004},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.99938}],"Text":"cyclically","Confidence":90.074905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5573}],"Text":"stepping","Confidence":85.7596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.42863}],"Text":"apply","Confidence":85.08565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.44005}],"Text":"load","Confidence":82.08034},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03852}],"Text":"pot","Confidence":78.66248},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.33307}],"Text":"1200","Confidence":69.52812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.499886}],"Text":"ei","Confidence":60.08141}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57448}],"Text":"data","Confidence":97.00826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57132}],"Text":"retain","Confidence":96.99922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57273}],"Text":"by","Confidence":96.981895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56633}],"Text":"box","Confidence":96.867645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54867}],"Text":"settings","Confidence":96.8407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55489}],"Text":"real","Confidence":96.80096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57166}],"Text":"variables","Confidence":96.774826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.536385}],"Text":"name","Confidence":96.75468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53889}],"Text":"cold","Confidence":96.74687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56168}],"Text":"mode","Confidence":96.7434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57116}],"Text":"time","Confidence":96.74051},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55248}],"Text":"redundancy","Confidence":96.72562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.541664}],"Text":"general","Confidence":96.72258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57329}],"Text":"event","Confidence":96.71586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52867}],"Text":"startup","Confidence":96.70072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57423}],"Text":"store","Confidence":96.592545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53291}],"Text":"storing","Confidence":96.56793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57447}],"Text":"start","Confidence":96.543915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.50057}],"Text":"restart","Confidence":96.504005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53453}],"Text":"path","Confidence":96.482956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57359}],"Text":"for","Confidence":96.482956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56101}],"Text":"hot","Confidence":96.405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57232}],"Text":"communication","Confidence":96.35087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.476364}],"Text":"9000","Confidence":96.334526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.569046}],"Text":"advanced","Confidence":96.28191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57395}],"Text":"start","Confidence":96.14139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.44023}],"Text":"help","Confidence":95.840515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574646}],"Text":"this","Confidence":95.61099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5721}],"Text":"variables","Confidence":95.41619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56232}],"Text":"port","Confidence":95.149895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54109}],"Text":"standard","Confidence":94.87295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55674}],"Text":"no","Confidence":93.5426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5747}],"Text":"delay","Confidence":92.02119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.858315}],"Text":"open","Confidence":92.008194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57411}],"Text":"priority","Confidence":90.354004},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.99938}],"Text":"cyclically","Confidence":90.074905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5573}],"Text":"stepping","Confidence":85.7596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.42863}],"Text":"apply","Confidence":85.08565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.44005}],"Text":"load","Confidence":82.08034},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03852}],"Text":"pot","Confidence":78.66248},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.33307}],"Text":"1200","Confidence":69.52812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.499886}],"Text":"ei","Confidence":60.08141}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(50%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(50%).json index 2c1acab..ee7a7ac 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57453}],"Text":"data","Confidence":97.00303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574585}],"Text":"start","Confidence":96.95135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57458}],"Text":"path","Confidence":96.874954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57312}],"Text":"for","Confidence":96.874954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56989}],"Text":"cold","Confidence":96.82617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574524}],"Text":"this","Confidence":96.82099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56459}],"Text":"by","Confidence":96.819855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56864}],"Text":"restart","Confidence":96.806564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56993}],"Text":"standard","Confidence":96.76299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53598}],"Text":"settings","Confidence":96.751854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57246}],"Text":"hot","Confidence":96.71584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57352}],"Text":"advanced","Confidence":96.667206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.531586}],"Text":"retain","Confidence":96.64033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5558}],"Text":"box","Confidence":96.63248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57171}],"Text":"store","Confidence":96.627785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56576}],"Text":"start","Confidence":96.62315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5682}],"Text":"event","Confidence":96.620674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.508545}],"Text":"storing","Confidence":96.55982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57437}],"Text":"stepping","Confidence":96.45726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55879}],"Text":"port","Confidence":96.40073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54056}],"Text":"real","Confidence":96.38729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57229}],"Text":"time","Confidence":96.38729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47387}],"Text":"startup","Confidence":96.3171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57432}],"Text":"variables","Confidence":96.22622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.5748}],"Text":"general","Confidence":96.211784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56769}],"Text":"variables","Confidence":96.00807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.558754}],"Text":"redundancy","Confidence":95.73043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.37163}],"Text":"open","Confidence":95.60138},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.570244}],"Text":"name","Confidence":95.220215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56582}],"Text":"na","Confidence":95.09584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57439}],"Text":"mode","Confidence":93.7948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57434}],"Text":"delay","Confidence":92.926155},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.006836}],"Text":"cyclically","Confidence":91.88607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572685}],"Text":"priority","Confidence":91.12966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57426}],"Text":"communication","Confidence":90.544},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":98.624435}],"Text":"9000","Confidence":90.37106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.66165}],"Text":"oad","Confidence":69.631546},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02726}],"Text":"users","Confidence":52.34367}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57453}],"Text":"data","Confidence":97.00303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574585}],"Text":"start","Confidence":96.95135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57458}],"Text":"path","Confidence":96.874954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57312}],"Text":"for","Confidence":96.874954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56989}],"Text":"cold","Confidence":96.82617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574524}],"Text":"this","Confidence":96.82099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56459}],"Text":"by","Confidence":96.819855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56864}],"Text":"restart","Confidence":96.806564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56993}],"Text":"standard","Confidence":96.76299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.53598}],"Text":"settings","Confidence":96.751854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57246}],"Text":"hot","Confidence":96.71584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57352}],"Text":"advanced","Confidence":96.667206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.531586}],"Text":"retain","Confidence":96.64033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5558}],"Text":"box","Confidence":96.63248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57171}],"Text":"store","Confidence":96.627785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56576}],"Text":"start","Confidence":96.62315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5682}],"Text":"event","Confidence":96.620674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.508545}],"Text":"storing","Confidence":96.55982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57437}],"Text":"stepping","Confidence":96.45726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55879}],"Text":"port","Confidence":96.40073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54056}],"Text":"real","Confidence":96.38729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57229}],"Text":"time","Confidence":96.38729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47387}],"Text":"startup","Confidence":96.3171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57432}],"Text":"variables","Confidence":96.22622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.5748}],"Text":"general","Confidence":96.211784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56769}],"Text":"variables","Confidence":96.00807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.558754}],"Text":"redundancy","Confidence":95.73043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.37163}],"Text":"open","Confidence":95.60138},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.570244}],"Text":"name","Confidence":95.220215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56582}],"Text":"na","Confidence":95.09584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57439}],"Text":"mode","Confidence":93.7948},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57434}],"Text":"delay","Confidence":92.926155},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.006836}],"Text":"cyclically","Confidence":91.88607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572685}],"Text":"priority","Confidence":91.12966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57426}],"Text":"communication","Confidence":90.544},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":98.624435}],"Text":"9000","Confidence":90.37106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.66165}],"Text":"oad","Confidence":69.631546},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02726}],"Text":"users","Confidence":52.34367}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(70%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(70%).json index 553ec76..6c78a24 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57333}],"Text":"retain","Confidence":97.00139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56641}],"Text":"mode","Confidence":96.92375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54974}],"Text":"data","Confidence":96.848206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.539665}],"Text":"standard","Confidence":96.68588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.572525}],"Text":"for","Confidence":96.6083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56562}],"Text":"cold","Confidence":96.55075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56263}],"Text":"path","Confidence":96.52615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.499664}],"Text":"hot","Confidence":96.497665},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.49082}],"Text":"9000","Confidence":96.43573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56617}],"Text":"box","Confidence":96.43358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54881}],"Text":"stepping","Confidence":96.24933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46375}],"Text":"storing","Confidence":96.24628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57431}],"Text":"port","Confidence":96.06654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5279}],"Text":"store","Confidence":96.0174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5606}],"Text":"event","Confidence":95.11394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.41839}],"Text":"startup","Confidence":95.05503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.28207}],"Text":"this","Confidence":94.97449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56831}],"Text":"no","Confidence":93.50174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57347}],"Text":"time","Confidence":93.26316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56187}],"Text":"start","Confidence":93.06175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.573685}],"Text":"delay","Confidence":92.79651},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55917}],"Text":"real","Confidence":92.705086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57398}],"Text":"restart","Confidence":92.261795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57352}],"Text":"variables","Confidence":91.90132},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04032}],"Text":"priorty","Confidence":91.584404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56913}],"Text":"by","Confidence":91.43223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55418}],"Text":"name","Confidence":91.43223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55908}],"Text":"start","Confidence":91.42134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.549034}],"Text":"open","Confidence":91.42134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56727}],"Text":"general","Confidence":91.20084},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.037605}],"Text":"variables","Confidence":89.129295},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.818695}],"Text":"cyclically","Confidence":83.42635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51555}],"Text":"advanced","Confidence":81.144005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.473976}],"Text":"redundancy","Confidence":78.941246},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.70185}],"Text":"foad","Confidence":69.912964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57198}],"Text":"settings","Confidence":66.02828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":95.99149}],"Text":"su","Confidence":57.988174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.372284}],"Text":"lc","Confidence":53.60596}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57333}],"Text":"retain","Confidence":97.00139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56641}],"Text":"mode","Confidence":96.92375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54974}],"Text":"data","Confidence":96.848206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.539665}],"Text":"standard","Confidence":96.68588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.572525}],"Text":"for","Confidence":96.6083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56562}],"Text":"cold","Confidence":96.55075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56263}],"Text":"path","Confidence":96.52615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.499664}],"Text":"hot","Confidence":96.497665},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":99.49082}],"Text":"9000","Confidence":96.43573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56617}],"Text":"box","Confidence":96.43358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54881}],"Text":"stepping","Confidence":96.24933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46375}],"Text":"storing","Confidence":96.24628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57431}],"Text":"port","Confidence":96.06654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5279}],"Text":"store","Confidence":96.0174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5606}],"Text":"event","Confidence":95.11394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.41839}],"Text":"startup","Confidence":95.05503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.28207}],"Text":"this","Confidence":94.97449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56831}],"Text":"no","Confidence":93.50174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57347}],"Text":"time","Confidence":93.26316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56187}],"Text":"start","Confidence":93.06175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.573685}],"Text":"delay","Confidence":92.79651},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55917}],"Text":"real","Confidence":92.705086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57398}],"Text":"restart","Confidence":92.261795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57352}],"Text":"variables","Confidence":91.90132},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04032}],"Text":"priorty","Confidence":91.584404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56913}],"Text":"by","Confidence":91.43223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55418}],"Text":"name","Confidence":91.43223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55908}],"Text":"start","Confidence":91.42134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.549034}],"Text":"open","Confidence":91.42134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56727}],"Text":"general","Confidence":91.20084},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.037605}],"Text":"variables","Confidence":89.129295},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.818695}],"Text":"cyclically","Confidence":83.42635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51555}],"Text":"advanced","Confidence":81.144005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.473976}],"Text":"redundancy","Confidence":78.941246},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.70185}],"Text":"foad","Confidence":69.912964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57198}],"Text":"settings","Confidence":66.02828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":95.99149}],"Text":"su","Confidence":57.988174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.372284}],"Text":"lc","Confidence":53.60596}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(80%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(80%).json index 4951e40..4e42a55 100644 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573074}],"Text":"by","Confidence":96.88128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57291}],"Text":"mode","Confidence":96.87096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.551704}],"Text":"name","Confidence":96.861946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54931}],"Text":"retain","Confidence":96.845184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574265}],"Text":"data","Confidence":96.82663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56281}],"Text":"no","Confidence":96.80864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56607}],"Text":"store","Confidence":96.77894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56764}],"Text":"box","Confidence":96.66043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55124}],"Text":"this","Confidence":96.15988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56993}],"Text":"real","Confidence":96.12422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56303}],"Text":"hot","Confidence":96.04153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567986}],"Text":"open","Confidence":95.89402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52313}],"Text":"cold","Confidence":95.5567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57255}],"Text":"variables","Confidence":95.392365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57216}],"Text":"delay","Confidence":95.29663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50168}],"Text":"storing","Confidence":94.982605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57418}],"Text":"path","Confidence":94.982605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.19866}],"Text":"stepping","Confidence":94.39062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573074}],"Text":"start","Confidence":94.299065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56951}],"Text":"time","Confidence":93.29152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56952}],"Text":"start","Confidence":92.99477},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.80593}],"Text":"foad","Confidence":91.641495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53975}],"Text":"variables","Confidence":90.63123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570045}],"Text":"for","Confidence":84.86883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56047}],"Text":"restart","Confidence":82.01277},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.59354}],"Text":"users","Confidence":57.0036},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.035324}],"Text":"cyckcally","Confidence":54.044144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.8199}],"Text":"fs","Confidence":52.6582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.78646}],"Text":"fi","Confidence":51.343098}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573074}],"Text":"by","Confidence":96.88128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57291}],"Text":"mode","Confidence":96.87096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.551704}],"Text":"name","Confidence":96.861946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54931}],"Text":"retain","Confidence":96.845184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574265}],"Text":"data","Confidence":96.82663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56281}],"Text":"no","Confidence":96.80864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56607}],"Text":"store","Confidence":96.77894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56764}],"Text":"box","Confidence":96.66043},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55124}],"Text":"this","Confidence":96.15988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56993}],"Text":"real","Confidence":96.12422},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56303}],"Text":"hot","Confidence":96.04153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567986}],"Text":"open","Confidence":95.89402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52313}],"Text":"cold","Confidence":95.5567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57255}],"Text":"variables","Confidence":95.392365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57216}],"Text":"delay","Confidence":95.29663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50168}],"Text":"storing","Confidence":94.982605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57418}],"Text":"path","Confidence":94.982605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.19866}],"Text":"stepping","Confidence":94.39062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573074}],"Text":"start","Confidence":94.299065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56951}],"Text":"time","Confidence":93.29152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56952}],"Text":"start","Confidence":92.99477},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.80593}],"Text":"foad","Confidence":91.641495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.53975}],"Text":"variables","Confidence":90.63123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570045}],"Text":"for","Confidence":84.86883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56047}],"Text":"restart","Confidence":82.01277},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.59354}],"Text":"users","Confidence":57.0036},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.035324}],"Text":"cyckcally","Confidence":54.044144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.8199}],"Text":"fs","Confidence":52.6582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.78646}],"Text":"fi","Confidence":51.343098}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(90%).json b/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(90%).json deleted file mode 100644 index c551026..0000000 --- a/Examples/testdata/results/straton_runtime_configuration_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573425}],"Text":"data","Confidence":96.93419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.571335}],"Text":"mode","Confidence":96.87414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56834}],"Text":"retain","Confidence":96.84514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.518776}],"Text":"variables","Confidence":96.50317},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57184}],"Text":"cold","Confidence":96.3905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56906}],"Text":"stat","Confidence":96.295975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57328}],"Text":"variables","Confidence":96.12867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56317}],"Text":"path","Confidence":96.10311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57017}],"Text":"for","Confidence":96.100426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.39734}],"Text":"hot","Confidence":95.78137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57382}],"Text":"store","Confidence":95.081085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.553345}],"Text":"by","Confidence":94.98642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.48132}],"Text":"name","Confidence":94.98642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57351}],"Text":"start","Confidence":94.18412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.02172}],"Text":"storing","Confidence":93.15203},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55819}],"Text":"stepping","Confidence":89.032074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.33797}],"Text":"real","Confidence":86.313995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57405}],"Text":"tame","Confidence":73.47853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.556206}],"Text":"projects","Confidence":61.25594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.334335}],"Text":"ib","Confidence":53.340324}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Kapur).json index f2104e6..32a84ed 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(OTSU).json index 2c6e420..32a84ed 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file +{"Words":[],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(04_04).json index d7eeb80..cec91b3 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index f2104e6..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(08_08).json index d7eeb80..cb6250d 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 8b1c962..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.57751}],"Text":"oclete","Confidence":60.965237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":94.335014}],"Text":"en","Confidence":58.09074}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(12_12).json index 0729f3a..b244235 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.55834}],"Text":"zoom","Confidence":96.88787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55336}],"Text":"steps","Confidence":96.4776},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54066}],"Text":"100","Confidence":67.0735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":95.31177}],"Text":"zz","Confidence":62.041904}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.55834}],"Text":"zoom","Confidence":96.88787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55336}],"Text":"steps","Confidence":96.4776},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54066}],"Text":"100","Confidence":67.0735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":95.31177}],"Text":"zz","Confidence":62.041904}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index dd97a75..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.5597}],"Text":"100","Confidence":96.63466}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(16_16).json index d7eeb80..bf61384 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(20_20).json index cb6250d..2c6e420 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0006} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index b9e50fe..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57289}],"Text":"delete","Confidence":95.37345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57373}],"Text":"new","Confidence":83.93773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55689}],"Text":"edit","Confidence":79.13275}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(0%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(0%).json deleted file mode 100644 index 083ab63..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.97914}],"Text":"sdajs","Confidence":80.53118}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(10%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(10%).json deleted file mode 100644 index 4123d95..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57335}],"Text":"existing","Confidence":96.963844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.572815}],"Text":"help","Confidence":96.712616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.567444}],"Text":"zoom","Confidence":96.70921},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.564064}],"Text":"100","Confidence":96.68737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5745}],"Text":"steps","Confidence":96.58107},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56909}],"Text":"cancel","Confidence":96.32146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.46118}],"Text":"step","Confidence":96.228294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51883}],"Text":"to","Confidence":91.26068}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(100%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(20%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(20%).json index 73a3189..c31c5ab 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57458}],"Text":"steps","Confidence":96.98586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.5585}],"Text":"zoom","Confidence":96.9095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5706}],"Text":"step","Confidence":96.89785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54943}],"Text":"cancel","Confidence":96.846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56767}],"Text":"existing","Confidence":96.84466},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45875}],"Text":"100","Confidence":96.211235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52416}],"Text":"to","Confidence":95.35381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.68724}],"Text":"ok","Confidence":90.81068}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57458}],"Text":"steps","Confidence":96.98586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.5585}],"Text":"zoom","Confidence":96.9095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5706}],"Text":"step","Confidence":96.89785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54943}],"Text":"cancel","Confidence":96.846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56767}],"Text":"existing","Confidence":96.84466},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45875}],"Text":"100","Confidence":96.211235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52416}],"Text":"to","Confidence":95.35381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.68724}],"Text":"ok","Confidence":90.81068}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(30%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(30%).json index fa05ec9..ae8b967 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(30%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(30%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57366}],"Text":"existing","Confidence":96.98148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57477}],"Text":"steps","Confidence":96.89101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57419}],"Text":"help","Confidence":96.63158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.553055}],"Text":"zoom","Confidence":96.51631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.405495}],"Text":"ok","Confidence":95.83848},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56214}],"Text":"100","Confidence":95.79947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56745}],"Text":"cancel","Confidence":95.42534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50694}],"Text":"step","Confidence":74.45178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.1622}],"Text":"delete","Confidence":73.13541},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.096985}],"Text":"to","Confidence":69.500626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.04663}],"Text":"ea","Confidence":62.69239}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57366}],"Text":"existing","Confidence":96.98148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57477}],"Text":"steps","Confidence":96.89101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57419}],"Text":"help","Confidence":96.63158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.553055}],"Text":"zoom","Confidence":96.51631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.405495}],"Text":"ok","Confidence":95.83848},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56214}],"Text":"100","Confidence":95.79947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56745}],"Text":"cancel","Confidence":95.42534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50694}],"Text":"step","Confidence":74.45178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.1622}],"Text":"delete","Confidence":73.13541},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.096985}],"Text":"to","Confidence":69.500626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.04663}],"Text":"ea","Confidence":62.69239}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(40%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(40%).json index 3a592b1..5c3174c 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.561646}],"Text":"zoom","Confidence":96.843895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57247}],"Text":"existing","Confidence":96.67709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55765}],"Text":"steps","Confidence":96.5227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47778}],"Text":"step","Confidence":87.64896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.376366}],"Text":"to","Confidence":74.63458}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.561646}],"Text":"zoom","Confidence":96.843895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57247}],"Text":"existing","Confidence":96.67709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55765}],"Text":"steps","Confidence":96.5227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47778}],"Text":"step","Confidence":87.64896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.376366}],"Text":"to","Confidence":74.63458}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(50%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(50%).json index a0afdbe..32a84ed 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file +{"Words":[],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(60%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(60%).json index a0afdbe..cec91b3 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(60%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(60%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file +{"Words":[],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(70%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(70%).json index a06879c..ff4db24 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57405}],"Text":"steps","Confidence":96.99952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57122}],"Text":"existing","Confidence":96.94972},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53161}],"Text":"100","Confidence":96.72124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54704}],"Text":"step","Confidence":96.64278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56734}],"Text":"zoom","Confidence":96.41873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43678}],"Text":"to","Confidence":83.21757}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57405}],"Text":"steps","Confidence":96.99952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57122}],"Text":"existing","Confidence":96.94972},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53161}],"Text":"100","Confidence":96.72124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.54704}],"Text":"step","Confidence":96.64278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56734}],"Text":"zoom","Confidence":96.41873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43678}],"Text":"to","Confidence":83.21757}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(80%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(80%).json index cec91b3..a0afdbe 100644 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0014} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(90%).json b/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(90%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/worldview_zoom_steps_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Kapur).json index f2104e6..7171390 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(OTSU).json index c018b71..40edf6f 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53039}],"Text":"to","Confidence":91.20473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.547356}],"Text":"changed","Confidence":86.66093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.50364}],"Text":"une","Confidence":86.51659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.62558}],"Text":"sate","Confidence":74.91906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.339355}],"Text":"came","Confidence":74.37551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74513}],"Text":"on","Confidence":73.51247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.387566}],"Text":"state","Confidence":69.757996},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.13347}],"Text":"01","Confidence":66.67017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":95.97615}],"Text":"ti","Confidence":64.92577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.719}],"Text":"elected","Confidence":63.033012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":96.921196}],"Text":"gur","Confidence":62.239197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.76274}],"Text":"cor","Confidence":61.280113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.04744}],"Text":"meu","Confidence":61.101383},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.218185}],"Text":"di","Confidence":58.179375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.838905}],"Text":"ready","Confidence":57.98511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.999115}],"Text":"cur","Confidence":57.06812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.31754}],"Text":"stabe","Confidence":56.567146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.21752}],"Text":"tor","Confidence":53.94783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.352776}],"Text":"connected","Confidence":53.200684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.41247}],"Text":"se","Confidence":53.01308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.19129}],"Text":"ws","Confidence":52.78986},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.92667}],"Text":"vorabler","Confidence":52.05642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.354675}],"Text":"stace","Confidence":51.992493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.61909}],"Text":"meus","Confidence":51.532345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.044716}],"Text":"sar","Confidence":51.31299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.64607}],"Text":"sur","Confidence":50.225418}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53039}],"Text":"to","Confidence":91.20473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.547356}],"Text":"changed","Confidence":86.66093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.50364}],"Text":"une","Confidence":86.51659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.62558}],"Text":"sate","Confidence":74.91906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.339355}],"Text":"came","Confidence":74.37551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74513}],"Text":"on","Confidence":73.51247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.387566}],"Text":"state","Confidence":69.757996},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.13347}],"Text":"01","Confidence":66.67017},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u0022","Confidence":95.97615}],"Text":"ti","Confidence":64.92577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.719}],"Text":"elected","Confidence":63.033012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":96.921196}],"Text":"gur","Confidence":62.239197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.76274}],"Text":"cor","Confidence":61.280113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.04744}],"Text":"meu","Confidence":61.101383},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.218185}],"Text":"di","Confidence":58.179375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.838905}],"Text":"ready","Confidence":57.98511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.999115}],"Text":"cur","Confidence":57.06812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.31754}],"Text":"stabe","Confidence":56.567146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.21752}],"Text":"tor","Confidence":53.94783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.352776}],"Text":"connected","Confidence":53.200684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.41247}],"Text":"se","Confidence":53.01308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.19129}],"Text":"ws","Confidence":52.78986},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.92667}],"Text":"vorabler","Confidence":52.05642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.354675}],"Text":"stace","Confidence":51.992493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.61909}],"Text":"meus","Confidence":51.532345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.044716}],"Text":"sar","Confidence":51.31299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.64607}],"Text":"sur","Confidence":50.225418}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(04_04).json index 1fc7d14..2c22b1a 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.60527}],"Text":"in","Confidence":59.534508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.348595}],"Text":"dr","Confidence":58.882923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":95.02259}],"Text":"nite","Confidence":50.28045}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.60527}],"Text":"in","Confidence":59.534508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.348595}],"Text":"dr","Confidence":58.882923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":95.02259}],"Text":"nite","Confidence":50.28045}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 93896d2..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.53058}],"Text":"une","Confidence":83.66269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.46665}],"Text":"nore","Confidence":61.03778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":94.33118}],"Text":"ws","Confidence":60.318245},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.71818}],"Text":"01","Confidence":51.433914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.9152}],"Text":"sl","Confidence":50.346493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":92.89705}],"Text":"eine","Confidence":50.279327}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(08_08).json index dd7b8ed..b7ee3e5 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.32365}],"Text":"sate","Confidence":79.30835},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51702}],"Text":"120","Confidence":76.52247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.725815}],"Text":"ready","Confidence":76.08279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":95.346535}],"Text":"ki","Confidence":67.425735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.55138}],"Text":"bocce","Confidence":66.00362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.20555}],"Text":"core","Confidence":65.93649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.16156}],"Text":"total","Confidence":63.718018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.49641}],"Text":"bete","Confidence":61.46518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":96.69624}],"Text":"variables","Confidence":60.05986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.295105}],"Text":"total","Confidence":59.2659},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.68474}],"Text":"01","Confidence":57.501694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.71276}],"Text":"changed","Confidence":55.94818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.6271}],"Text":"ste","Confidence":54.073433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34731}],"Text":"site","Confidence":50.270786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.86945}],"Text":"store","Confidence":50.112457}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.32365}],"Text":"sate","Confidence":79.30835},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51702}],"Text":"120","Confidence":76.52247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.725815}],"Text":"ready","Confidence":76.08279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":95.346535}],"Text":"ki","Confidence":67.425735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.55138}],"Text":"bocce","Confidence":66.00362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.20555}],"Text":"core","Confidence":65.93649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.16156}],"Text":"total","Confidence":63.718018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.49641}],"Text":"bete","Confidence":61.46518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":96.69624}],"Text":"variables","Confidence":60.05986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.295105}],"Text":"total","Confidence":59.2659},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.68474}],"Text":"01","Confidence":57.501694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.71276}],"Text":"changed","Confidence":55.94818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.6271}],"Text":"ste","Confidence":54.073433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.34731}],"Text":"site","Confidence":50.270786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.86945}],"Text":"store","Confidence":50.112457}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 47bf637..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.551}],"Text":"selected","Confidence":91.74629},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.91405}],"Text":"on","Confidence":88.39959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.235016}],"Text":"changed","Confidence":86.458755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.40857}],"Text":"total","Confidence":78.12579},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.97686}],"Text":"f\u00E4tered","Confidence":75.12005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49194}],"Text":"te","Confidence":70.71869},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4409}],"Text":"1450","Confidence":67.51056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.00368}],"Text":"ready","Confidence":66.54715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.026146}],"Text":"variables","Confidence":58.06864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.01529}],"Text":"reporting","Confidence":55.47744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.47611}],"Text":"variabler","Confidence":53.336052}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(12_12).json index d809094..ac1faac 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.556625}],"Text":"selected","Confidence":87.24567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.138306}],"Text":"on","Confidence":86.96815},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.38648}],"Text":"1460","Confidence":80.81607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5149}],"Text":"variables","Confidence":76.69032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.457466}],"Text":"changed","Confidence":74.987564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.28675}],"Text":"ta","Confidence":74.458244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.33797}],"Text":"filtered","Confidence":72.224556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.94519}],"Text":"01","Confidence":63.892525},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":96.801704}],"Text":"varisbies","Confidence":62.128624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.26926}],"Text":"ready","Confidence":59.60791},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":93.97618}],"Text":"reporting","Confidence":57.83329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.24788}],"Text":"le","Confidence":53.52308},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.88827}],"Text":"totel","Confidence":52.34934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.89532}],"Text":"hep","Confidence":52.026176}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.556625}],"Text":"selected","Confidence":87.24567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.138306}],"Text":"on","Confidence":86.96815},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.38648}],"Text":"1460","Confidence":80.81607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5149}],"Text":"variables","Confidence":76.69032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.457466}],"Text":"changed","Confidence":74.987564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.28675}],"Text":"ta","Confidence":74.458244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.33797}],"Text":"filtered","Confidence":72.224556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.94519}],"Text":"01","Confidence":63.892525},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":96.801704}],"Text":"varisbies","Confidence":62.128624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.26926}],"Text":"ready","Confidence":59.60791},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":93.97618}],"Text":"reporting","Confidence":57.83329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.24788}],"Text":"le","Confidence":53.52308},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.88827}],"Text":"totel","Confidence":52.34934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.89532}],"Text":"hep","Confidence":52.026176}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 8f9e7d7..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5392}],"Text":"to","Confidence":90.851265},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.9824}],"Text":"1440","Confidence":88.140564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.04099}],"Text":"on","Confidence":87.36106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.65129}],"Text":"selected","Confidence":84.572365},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.583565}],"Text":"1450","Confidence":83.08498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":96.84352}],"Text":"reporting","Confidence":77.904655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53877}],"Text":"filtered","Confidence":77.2887},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.41154}],"Text":"1460","Confidence":75.381516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":95.41977}],"Text":"ready","Confidence":67.9384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.29415}],"Text":"changed","Confidence":64.357285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.26993}],"Text":"total","Confidence":62.443993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"J","Confidence":94.09404}],"Text":"ju","Confidence":58.658264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.59518}],"Text":"our","Confidence":55.94548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.51588}],"Text":"se","Confidence":52.474373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.535515}],"Text":"varieties","Confidence":52.232265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.01172}],"Text":"mu","Confidence":52.101074}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(16_16).json index e5b7a5c..e27b99b 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.23545}],"Text":"sate","Confidence":61.2007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.68789}],"Text":"cr","Confidence":50.588936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.34632}],"Text":"se","Confidence":50.383526}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.23545}],"Text":"sate","Confidence":61.2007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.68789}],"Text":"cr","Confidence":50.588936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.34632}],"Text":"se","Confidence":50.383526}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 1f4ff88..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.296}],"Text":"selected","Confidence":89.22586},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52611}],"Text":"1460","Confidence":88.800224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.55382}],"Text":"on","Confidence":88.20236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.446365}],"Text":"filtered","Confidence":84.99681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.27391}],"Text":"changed","Confidence":82.69673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.36386}],"Text":"help","Confidence":76.21335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.33624}],"Text":"fie","Confidence":68.60976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.42957}],"Text":"total","Confidence":67.17911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":94.97372}],"Text":"au","Confidence":64.815994},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.44691}],"Text":"16","Confidence":61.128334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.98912}],"Text":"sey","Confidence":59.54505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.085655}],"Text":"reedy","Confidence":55.460354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Y","Confidence":95.20178}],"Text":"yui","Confidence":54.862587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.12105}],"Text":"bas","Confidence":54.501022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.21435}],"Text":"reporting","Confidence":54.111523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.38408}],"Text":"connected","Confidence":53.618652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.31641}],"Text":"se","Confidence":53.12905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.50786}],"Text":"as","Confidence":51.84111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.002}],"Text":"fe","Confidence":51.013977}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(20_20).json index b9749a8..5d24f2d 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.7273}],"Text":"on","Confidence":91.09111},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.88107}],"Text":"1460","Confidence":84.50618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.43302}],"Text":"changed","Confidence":80.412445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.515144}],"Text":"selected","Confidence":64.70637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.472374}],"Text":"total","Confidence":57.595592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.57102}],"Text":"reporting","Confidence":55.74523}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.7273}],"Text":"on","Confidence":91.09111},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.88107}],"Text":"1460","Confidence":84.50618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.43302}],"Text":"changed","Confidence":80.412445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.515144}],"Text":"selected","Confidence":64.70637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.472374}],"Text":"total","Confidence":57.595592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":97.57102}],"Text":"reporting","Confidence":55.74523}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index d0990f6..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.28096}],"Text":"changed","Confidence":87.158134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.82342}],"Text":"on","Confidence":84.76421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49175}],"Text":"total","Confidence":82.146515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.43111}],"Text":"reporting","Confidence":72.7655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.13987}],"Text":"ready","Confidence":64.86815},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.40511}],"Text":"16","Confidence":60.835808},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.18086}],"Text":"140","Confidence":58.784645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.40203}],"Text":"stee","Confidence":56.886192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":97.38848}],"Text":"ws","Confidence":56.66919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":94.610275}],"Text":"sine","Confidence":55.382465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.83355}],"Text":"cr","Confidence":54.786194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.50365}],"Text":"ae","Confidence":54.52553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":93.155846}],"Text":"fs","Confidence":52.09091}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(24_24).json index 116d3b3..c6f7727 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.59229}],"Text":"ii","Confidence":55.598316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.13986}],"Text":"ll","Confidence":51.370934}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.59229}],"Text":"ii","Confidence":55.598316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.13986}],"Text":"ll","Confidence":51.370934}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(10%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(20%).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(40%).json index daa397c..fd491d9 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.295876}],"Text":"ze","Confidence":77.21529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":96.41325}],"Text":"uy","Confidence":68.24581},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.07146}],"Text":"mutadata","Confidence":61.757248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.40382}],"Text":"editor","Confidence":58.362465}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.295876}],"Text":"ze","Confidence":77.21529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":96.41325}],"Text":"uy","Confidence":68.24581},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.07146}],"Text":"mutadata","Confidence":61.757248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.40382}],"Text":"editor","Confidence":58.362465}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(50%).json index 9e312e3..5077de3 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.72403}],"Text":"wre","Confidence":68.67936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":92.924706}],"Text":"dead","Confidence":50.47293}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":96.72403}],"Text":"wre","Confidence":68.67936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":92.924706}],"Text":"dead","Confidence":50.47293}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(70%).json index c6b36ac..e0813ba 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48302}],"Text":"to","Confidence":94.563805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.44505}],"Text":"changed","Confidence":91.668175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.319336}],"Text":"on","Confidence":91.54801},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.93063}],"Text":"1460","Confidence":89.50275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.053314}],"Text":"sate","Confidence":86.791504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.889984}],"Text":"evert","Confidence":82.66549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.60967}],"Text":"er","Confidence":79.442566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.50241}],"Text":"botte","Confidence":77.86726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54962}],"Text":"total","Confidence":75.13655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.134735}],"Text":"ine","Confidence":72.94316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.52993}],"Text":"ready","Confidence":71.20012},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":96.8824}],"Text":"glase","Confidence":69.59364},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.99983}],"Text":"operaton","Confidence":69.12568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":95.579445}],"Text":"reporting","Confidence":69.056114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49282}],"Text":"bette","Confidence":67.796616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":97.8642}],"Text":"groups","Confidence":67.0388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.4172}],"Text":"slate","Confidence":66.882614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.33027}],"Text":"state","Confidence":66.04848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":97.01309}],"Text":"ure","Confidence":65.911026},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.13874}],"Text":"lre","Confidence":64.71708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.890205}],"Text":"glass","Confidence":63.80543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.81779}],"Text":"dune","Confidence":63.724533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.688385}],"Text":"tre","Confidence":62.8187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.80333}],"Text":"varsbles","Confidence":62.58191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.323524}],"Text":"cs","Confidence":62.493973},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":95.80712}],"Text":"01","Confidence":62.141552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.63161}],"Text":"ws","Confidence":60.804188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":94.354485}],"Text":"une","Confidence":60.481377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.56856}],"Text":"varabies","Confidence":58.84918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":94.64204}],"Text":"gor","Confidence":58.014732},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.867645}],"Text":"09","Confidence":56.68757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.3085}],"Text":"cas","Confidence":54.69136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.261246}],"Text":"cos","Confidence":53.895485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.516106}],"Text":"cr","Confidence":53.575333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":93.44383}],"Text":"de","Confidence":53.269962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.27556}],"Text":"me","Confidence":52.425423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.5268}],"Text":"car","Confidence":52.290916},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.803375}],"Text":"verabler","Confidence":52.202244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":92.899086}],"Text":"uy","Confidence":50.293625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.13681}],"Text":"tive","Confidence":50.133064}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48302}],"Text":"to","Confidence":94.563805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.44505}],"Text":"changed","Confidence":91.668175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.319336}],"Text":"on","Confidence":91.54801},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.93063}],"Text":"1460","Confidence":89.50275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.053314}],"Text":"sate","Confidence":86.791504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.889984}],"Text":"evert","Confidence":82.66549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.60967}],"Text":"er","Confidence":79.442566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.50241}],"Text":"botte","Confidence":77.86726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54962}],"Text":"total","Confidence":75.13655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.134735}],"Text":"ine","Confidence":72.94316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.52993}],"Text":"ready","Confidence":71.20012},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":96.8824}],"Text":"glase","Confidence":69.59364},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.99983}],"Text":"operaton","Confidence":69.12568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":95.579445}],"Text":"reporting","Confidence":69.056114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49282}],"Text":"bette","Confidence":67.796616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":97.8642}],"Text":"groups","Confidence":67.0388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.4172}],"Text":"slate","Confidence":66.882614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.33027}],"Text":"state","Confidence":66.04848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":97.01309}],"Text":"ure","Confidence":65.911026},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.13874}],"Text":"lre","Confidence":64.71708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.890205}],"Text":"glass","Confidence":63.80543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.81779}],"Text":"dune","Confidence":63.724533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.688385}],"Text":"tre","Confidence":62.8187},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.80333}],"Text":"varsbles","Confidence":62.58191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.323524}],"Text":"cs","Confidence":62.493973},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":95.80712}],"Text":"01","Confidence":62.141552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.63161}],"Text":"ws","Confidence":60.804188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":94.354485}],"Text":"une","Confidence":60.481377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.56856}],"Text":"varabies","Confidence":58.84918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":94.64204}],"Text":"gor","Confidence":58.014732},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.867645}],"Text":"09","Confidence":56.68757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.3085}],"Text":"cas","Confidence":54.69136},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.261246}],"Text":"cos","Confidence":53.895485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.516106}],"Text":"cr","Confidence":53.575333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":93.44383}],"Text":"de","Confidence":53.269962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.27556}],"Text":"me","Confidence":52.425423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.5268}],"Text":"car","Confidence":52.290916},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.803375}],"Text":"verabler","Confidence":52.202244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":92.899086}],"Text":"uy","Confidence":50.293625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.13681}],"Text":"tive","Confidence":50.133064}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(80%).json index 141c31c..fbafaf6 100644 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.0049}],"Text":"evert","Confidence":93.02149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.46312}],"Text":"connected","Confidence":89.02983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.217995}],"Text":"on","Confidence":88.96046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.11835}],"Text":"une","Confidence":84.328606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.89496}],"Text":"changed","Confidence":82.764175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.32148}],"Text":"selected","Confidence":82.561325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.4959}],"Text":"to","Confidence":77.73746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.32303}],"Text":"fie","Confidence":77.146034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.76584}],"Text":"carves","Confidence":76.66046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"J","Confidence":96.56732}],"Text":"ji","Confidence":75.971245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.44115}],"Text":"ine","Confidence":75.088005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.2358}],"Text":"suse","Confidence":74.361946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.23676}],"Text":"help","Confidence":74.06288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.41729}],"Text":"tl","Confidence":73.178986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.92221}],"Text":"if","Confidence":72.39196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":98.9491}],"Text":"bote","Confidence":70.666336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.42733}],"Text":"variabler","Confidence":70.01169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.51958}],"Text":"classes","Confidence":68.97319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.31698}],"Text":"bette","Confidence":68.00697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.13603}],"Text":"it","Confidence":65.952225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.68858}],"Text":"name","Confidence":65.56329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":96.45345}],"Text":"bethe","Confidence":65.54594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.18261}],"Text":"beatie","Confidence":64.69131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.799065}],"Text":"ove","Confidence":63.59344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.228745}],"Text":"sate","Confidence":63.542866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.046036}],"Text":"beate","Confidence":63.529327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.72516}],"Text":"gr","Confidence":63.504745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.84477}],"Text":"cu","Confidence":63.059887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.1135}],"Text":"botte","Confidence":61.60535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.355675}],"Text":"al","Confidence":60.489704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.48364}],"Text":"car","Confidence":59.06022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.09772}],"Text":"evs","Confidence":58.68401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.7135}],"Text":"cir","Confidence":58.513393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":94.464905}],"Text":"cove","Confidence":57.968315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.14261}],"Text":"tree","Confidence":57.52502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.49833}],"Text":"eg","Confidence":57.33101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.01053}],"Text":"tre","Confidence":56.707417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":97.48326}],"Text":"nene","Confidence":56.706444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":94.4459}],"Text":"ws","Confidence":55.889786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":93.62312}],"Text":"hoes","Confidence":55.361855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.58605}],"Text":"our","Confidence":55.102367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.488304}],"Text":"tine","Confidence":54.376854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.170364}],"Text":"cos","Confidence":54.224716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.866394}],"Text":"ste","Confidence":53.892357},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.64136}],"Text":"01","Confidence":53.460197},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.16049}],"Text":"molws","Confidence":53.460197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.34301}],"Text":"downy","Confidence":52.620117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.468666}],"Text":"state","Confidence":52.127094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.449104}],"Text":"kon","Confidence":51.355034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.77865}],"Text":"ions","Confidence":51.20499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.02195}],"Text":"cur","Confidence":51.15367}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.0049}],"Text":"evert","Confidence":93.02149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.46312}],"Text":"connected","Confidence":89.02983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.217995}],"Text":"on","Confidence":88.96046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.11835}],"Text":"une","Confidence":84.328606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":97.89496}],"Text":"changed","Confidence":82.764175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.32148}],"Text":"selected","Confidence":82.561325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.4959}],"Text":"to","Confidence":77.73746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":97.32303}],"Text":"fie","Confidence":77.146034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.76584}],"Text":"carves","Confidence":76.66046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"J","Confidence":96.56732}],"Text":"ji","Confidence":75.971245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.44115}],"Text":"ine","Confidence":75.088005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.2358}],"Text":"suse","Confidence":74.361946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.23676}],"Text":"help","Confidence":74.06288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201C","Confidence":98.41729}],"Text":"tl","Confidence":73.178986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.92221}],"Text":"if","Confidence":72.39196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":98.9491}],"Text":"bote","Confidence":70.666336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.42733}],"Text":"variabler","Confidence":70.01169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.51958}],"Text":"classes","Confidence":68.97319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.31698}],"Text":"bette","Confidence":68.00697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.13603}],"Text":"it","Confidence":65.952225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.68858}],"Text":"name","Confidence":65.56329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":96.45345}],"Text":"bethe","Confidence":65.54594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.18261}],"Text":"beatie","Confidence":64.69131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.799065}],"Text":"ove","Confidence":63.59344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.228745}],"Text":"sate","Confidence":63.542866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":95.046036}],"Text":"beate","Confidence":63.529327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":95.72516}],"Text":"gr","Confidence":63.504745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.84477}],"Text":"cu","Confidence":63.059887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.1135}],"Text":"botte","Confidence":61.60535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.355675}],"Text":"al","Confidence":60.489704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.48364}],"Text":"car","Confidence":59.06022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.09772}],"Text":"evs","Confidence":58.68401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.7135}],"Text":"cir","Confidence":58.513393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":94.464905}],"Text":"cove","Confidence":57.968315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.14261}],"Text":"tree","Confidence":57.52502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.49833}],"Text":"eg","Confidence":57.33101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.01053}],"Text":"tre","Confidence":56.707417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":97.48326}],"Text":"nene","Confidence":56.706444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":94.4459}],"Text":"ws","Confidence":55.889786},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":93.62312}],"Text":"hoes","Confidence":55.361855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.58605}],"Text":"our","Confidence":55.102367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.488304}],"Text":"tine","Confidence":54.376854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.170364}],"Text":"cos","Confidence":54.224716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.866394}],"Text":"ste","Confidence":53.892357},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.64136}],"Text":"01","Confidence":53.460197},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.16049}],"Text":"molws","Confidence":53.460197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":94.34301}],"Text":"downy","Confidence":52.620117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.468666}],"Text":"state","Confidence":52.127094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.449104}],"Text":"kon","Confidence":51.355034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":93.77865}],"Text":"ions","Confidence":51.20499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.02195}],"Text":"cur","Confidence":51.15367}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(90%).json deleted file mode 100644 index b638c61..0000000 --- a/Examples/testdata/results/zrs_MetadataEditor_variables_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.453735}],"Text":"00","Confidence":70.67505},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":94.12694}],"Text":"01","Confidence":58.888565}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Kapur).json index c1003fa..51522dd 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573715}],"Text":"based","Confidence":96.99268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57481}],"Text":"data","Confidence":96.973724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57402}],"Text":"be","Confidence":96.95206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57111}],"Text":"can","Confidence":96.94414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57132}],"Text":"report","Confidence":96.94149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.565094}],"Text":"analysis","Confidence":96.93012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57438}],"Text":"that","Confidence":96.89368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572685}],"Text":"diagram","Confidence":96.881874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57356}],"Text":"processed","Confidence":96.79572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55174}],"Text":"the","Confidence":96.79143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572754}],"Text":"period","Confidence":96.78313},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56941}],"Text":"templates","Confidence":96.73708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.53254}],"Text":"preview","Confidence":96.727776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.543}],"Text":"template","Confidence":96.72108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574394}],"Text":"shown","Confidence":96.70803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55769}],"Text":"on","Confidence":96.66473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574234}],"Text":"theme","Confidence":96.66413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57145}],"Text":"formula","Confidence":96.6635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.510506}],"Text":"class","Confidence":96.573524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5744}],"Text":"efficiency","Confidence":96.46782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.497055}],"Text":"reports","Confidence":96.45706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57205}],"Text":"model","Confidence":96.40444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57419}],"Text":"perform","Confidence":96.347824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.5653}],"Text":"historic","Confidence":96.34647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56075}],"Text":"new","Confidence":96.31698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573296}],"Text":"defined","Confidence":96.305405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54664}],"Text":"in","Confidence":96.23639},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57339}],"Text":"13","Confidence":96.2242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569115}],"Text":"to","Confidence":96.21566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57426}],"Text":"and","Confidence":96.070435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43014}],"Text":"this","Confidence":96.01095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568954}],"Text":"tables","Confidence":95.972466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.42254}],"Text":"groups","Confidence":95.957794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55795}],"Text":"is","Confidence":95.76328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.51771}],"Text":"hour","Confidence":95.41691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.531685}],"Text":"or","Confidence":95.130325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56956}],"Text":"formulas","Confidence":95.130325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573044}],"Text":"models","Confidence":94.71396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.24178}],"Text":"higher","Confidence":94.69248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57361}],"Text":"an","Confidence":94.39174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.21512}],"Text":"normalised","Confidence":93.414276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39092}],"Text":"archives","Confidence":93.26401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.385185}],"Text":"eur","Confidence":93.09764},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92762}],"Text":"equipmert","Confidence":92.40983},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.03778}],"Text":"costs","Confidence":92.103},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.86862}],"Text":"04","Confidence":91.88166},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.49302}],"Text":"03","Confidence":91.86568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56515}],"Text":"allow","Confidence":91.30142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.27623}],"Text":"lower","Confidence":89.875626},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"8","Confidence":98.38722}],"Text":"080","Confidence":84.85658},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4632}],"Text":"18","Confidence":83.557014},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.84837}],"Text":"24","Confidence":82.27442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53041}],"Text":"formulas","Confidence":80.4973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.48506}],"Text":"for","Confidence":80.4973},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.99782}],"Text":"ok","Confidence":78.98474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.206436}],"Text":"name","Confidence":75.97149},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":98.35374}],"Text":"36","Confidence":75.97129},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":97.9121}],"Text":"32","Confidence":74.89424},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.2379}],"Text":"24","Confidence":74.6765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.574}],"Text":"contains","Confidence":73.81888},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.534935}],"Text":"16","Confidence":72.99784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.45107}],"Text":"dans","Confidence":68.1575},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.03724}],"Text":"104","Confidence":66.41436},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":96.12319}],"Text":"35","Confidence":63.61581},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.43305}],"Text":"men","Confidence":61.031387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.61131}],"Text":"cancel","Confidence":60.52903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.32381}],"Text":"eur","Confidence":60.41569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.42046}],"Text":"ela","Confidence":55.321632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.44025}],"Text":"from","Confidence":54.081726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.36133}],"Text":"mit","Confidence":53.529316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.23476}],"Text":"init","Confidence":53.218098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.27548}],"Text":"model","Confidence":52.99363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.63203}],"Text":"et","Confidence":50.269783}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573715}],"Text":"based","Confidence":96.99268},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57481}],"Text":"data","Confidence":96.973724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57402}],"Text":"be","Confidence":96.95206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57111}],"Text":"can","Confidence":96.94414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57132}],"Text":"report","Confidence":96.94149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.565094}],"Text":"analysis","Confidence":96.93012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57438}],"Text":"that","Confidence":96.89368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572685}],"Text":"diagram","Confidence":96.881874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57356}],"Text":"processed","Confidence":96.79572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55174}],"Text":"the","Confidence":96.79143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572754}],"Text":"period","Confidence":96.78313},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56941}],"Text":"templates","Confidence":96.73708},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.53254}],"Text":"preview","Confidence":96.727776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.543}],"Text":"template","Confidence":96.72108},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574394}],"Text":"shown","Confidence":96.70803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55769}],"Text":"on","Confidence":96.66473},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574234}],"Text":"theme","Confidence":96.66413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57145}],"Text":"formula","Confidence":96.6635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.510506}],"Text":"class","Confidence":96.573524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5744}],"Text":"efficiency","Confidence":96.46782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.497055}],"Text":"reports","Confidence":96.45706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57205}],"Text":"model","Confidence":96.40444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57419}],"Text":"perform","Confidence":96.347824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.5653}],"Text":"historic","Confidence":96.34647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56075}],"Text":"new","Confidence":96.31698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573296}],"Text":"defined","Confidence":96.305405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54664}],"Text":"in","Confidence":96.23639},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57339}],"Text":"13","Confidence":96.2242},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569115}],"Text":"to","Confidence":96.21566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57426}],"Text":"and","Confidence":96.070435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.43014}],"Text":"this","Confidence":96.01095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568954}],"Text":"tables","Confidence":95.972466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.42254}],"Text":"groups","Confidence":95.957794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55795}],"Text":"is","Confidence":95.76328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.51771}],"Text":"hour","Confidence":95.41691},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.531685}],"Text":"or","Confidence":95.130325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56956}],"Text":"formulas","Confidence":95.130325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573044}],"Text":"models","Confidence":94.71396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.24178}],"Text":"higher","Confidence":94.69248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57361}],"Text":"an","Confidence":94.39174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.21512}],"Text":"normalised","Confidence":93.414276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.39092}],"Text":"archives","Confidence":93.26401},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.385185}],"Text":"eur","Confidence":93.09764},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.92762}],"Text":"equipmert","Confidence":92.40983},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.03778}],"Text":"costs","Confidence":92.103},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.86862}],"Text":"04","Confidence":91.88166},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.49302}],"Text":"03","Confidence":91.86568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56515}],"Text":"allow","Confidence":91.30142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.27623}],"Text":"lower","Confidence":89.875626},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"8","Confidence":98.38722}],"Text":"080","Confidence":84.85658},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4632}],"Text":"18","Confidence":83.557014},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.84837}],"Text":"24","Confidence":82.27442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53041}],"Text":"formulas","Confidence":80.4973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.48506}],"Text":"for","Confidence":80.4973},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.99782}],"Text":"ok","Confidence":78.98474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.206436}],"Text":"name","Confidence":75.97149},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":98.35374}],"Text":"36","Confidence":75.97129},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":97.9121}],"Text":"32","Confidence":74.89424},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.2379}],"Text":"24","Confidence":74.6765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.574}],"Text":"contains","Confidence":73.81888},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.534935}],"Text":"16","Confidence":72.99784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.45107}],"Text":"dans","Confidence":68.1575},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.03724}],"Text":"104","Confidence":66.41436},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":96.12319}],"Text":"35","Confidence":63.61581},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.43305}],"Text":"men","Confidence":61.031387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.61131}],"Text":"cancel","Confidence":60.52903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.32381}],"Text":"eur","Confidence":60.41569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.42046}],"Text":"ela","Confidence":55.321632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.44025}],"Text":"from","Confidence":54.081726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.36133}],"Text":"mit","Confidence":53.529316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.23476}],"Text":"init","Confidence":53.218098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.27548}],"Text":"model","Confidence":52.99363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.63203}],"Text":"et","Confidence":50.269783}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(OTSU).json index ef7f9b2..8613693 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.569}],"Text":"based","Confidence":96.973885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57451}],"Text":"the","Confidence":96.96379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56507}],"Text":"in","Confidence":96.955505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569214}],"Text":"data","Confidence":96.912834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56687}],"Text":"class","Confidence":96.89285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57179}],"Text":"formula","Confidence":96.87705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55879}],"Text":"can","Confidence":96.870834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574615}],"Text":"be","Confidence":96.870834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56385}],"Text":"period","Confidence":96.85509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.567245}],"Text":"perform","Confidence":96.824684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574036}],"Text":"shown","Confidence":96.80342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574684}],"Text":"analysis","Confidence":96.80315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57326}],"Text":"model","Confidence":96.78415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57222}],"Text":"contains","Confidence":96.782394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53851}],"Text":"processed","Confidence":96.76961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56623}],"Text":"is","Confidence":96.75697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56486}],"Text":"hour","Confidence":96.74993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574005}],"Text":"report","Confidence":96.74655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57403}],"Text":"on","Confidence":96.74299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57204}],"Text":"historic","Confidence":96.741104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573845}],"Text":"that","Confidence":96.72337},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.570915}],"Text":"13","Confidence":96.72253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57454}],"Text":"for","Confidence":96.72053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56623}],"Text":"and","Confidence":96.662506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574844}],"Text":"this","Confidence":96.64497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55492}],"Text":"reports","Confidence":96.62792},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56919}],"Text":"groups","Confidence":96.563675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56394}],"Text":"template","Confidence":96.553696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50621}],"Text":"efficiency","Confidence":96.53994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.5}],"Text":"preview","Confidence":96.49999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57424}],"Text":"theme","Confidence":96.473724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49157}],"Text":"tables","Confidence":96.44098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57432}],"Text":"costs","Confidence":96.37921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.564445}],"Text":"defined","Confidence":96.3745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570366}],"Text":"formulas","Confidence":96.058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.39929}],"Text":"or","Confidence":95.79502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57074}],"Text":"to","Confidence":95.73195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574265}],"Text":"an","Confidence":94.176155},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.39725}],"Text":"03","Confidence":93.96447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57213}],"Text":"templates","Confidence":93.426674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57318}],"Text":"models","Confidence":91.78321},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.26099}],"Text":"04","Confidence":91.44322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50814}],"Text":"diagram","Confidence":91.41649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57242}],"Text":"period","Confidence":90.911995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56538}],"Text":"equipment","Confidence":86.44819},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.01526}],"Text":"formulas","Confidence":85.059654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56866}],"Text":"allow","Confidence":85.04865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57463}],"Text":"archives","Confidence":83.59543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.01419}],"Text":"te","Confidence":79.09935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.01716}],"Text":"normalised","Confidence":75.135056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.06237}],"Text":"mod","Confidence":55.895138}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.569}],"Text":"based","Confidence":96.973885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57451}],"Text":"the","Confidence":96.96379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56507}],"Text":"in","Confidence":96.955505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569214}],"Text":"data","Confidence":96.912834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56687}],"Text":"class","Confidence":96.89285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57179}],"Text":"formula","Confidence":96.87705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55879}],"Text":"can","Confidence":96.870834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574615}],"Text":"be","Confidence":96.870834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56385}],"Text":"period","Confidence":96.85509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.567245}],"Text":"perform","Confidence":96.824684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574036}],"Text":"shown","Confidence":96.80342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574684}],"Text":"analysis","Confidence":96.80315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57326}],"Text":"model","Confidence":96.78415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57222}],"Text":"contains","Confidence":96.782394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53851}],"Text":"processed","Confidence":96.76961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56623}],"Text":"is","Confidence":96.75697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56486}],"Text":"hour","Confidence":96.74993},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574005}],"Text":"report","Confidence":96.74655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57403}],"Text":"on","Confidence":96.74299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57204}],"Text":"historic","Confidence":96.741104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573845}],"Text":"that","Confidence":96.72337},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.570915}],"Text":"13","Confidence":96.72253},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57454}],"Text":"for","Confidence":96.72053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56623}],"Text":"and","Confidence":96.662506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574844}],"Text":"this","Confidence":96.64497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55492}],"Text":"reports","Confidence":96.62792},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56919}],"Text":"groups","Confidence":96.563675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56394}],"Text":"template","Confidence":96.553696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50621}],"Text":"efficiency","Confidence":96.53994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.5}],"Text":"preview","Confidence":96.49999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57424}],"Text":"theme","Confidence":96.473724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49157}],"Text":"tables","Confidence":96.44098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57432}],"Text":"costs","Confidence":96.37921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.564445}],"Text":"defined","Confidence":96.3745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570366}],"Text":"formulas","Confidence":96.058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.39929}],"Text":"or","Confidence":95.79502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57074}],"Text":"to","Confidence":95.73195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574265}],"Text":"an","Confidence":94.176155},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.39725}],"Text":"03","Confidence":93.96447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57213}],"Text":"templates","Confidence":93.426674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57318}],"Text":"models","Confidence":91.78321},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.26099}],"Text":"04","Confidence":91.44322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.50814}],"Text":"diagram","Confidence":91.41649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57242}],"Text":"period","Confidence":90.911995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56538}],"Text":"equipment","Confidence":86.44819},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.01526}],"Text":"formulas","Confidence":85.059654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56866}],"Text":"allow","Confidence":85.04865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57463}],"Text":"archives","Confidence":83.59543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.01419}],"Text":"te","Confidence":79.09935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.01716}],"Text":"normalised","Confidence":75.135056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.06237}],"Text":"mod","Confidence":55.895138}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 8ab08a7..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.39208}],"Text":"10","Confidence":53.7446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":93.3603}],"Text":"ud","Confidence":53.522106}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(04_04).json index a6b9412..00970df 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53126}],"Text":"template","Confidence":92.03087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.40843}],"Text":"10","Confidence":88.50523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.12657}],"Text":"report","Confidence":79.886024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.674614}],"Text":"class","Confidence":69.72231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.54953}],"Text":"dat","Confidence":62.37904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.58147}],"Text":"data","Confidence":56.604877}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53126}],"Text":"template","Confidence":92.03087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.40843}],"Text":"10","Confidence":88.50523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.12657}],"Text":"report","Confidence":79.886024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":95.674614}],"Text":"class","Confidence":69.72231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.54953}],"Text":"dat","Confidence":62.37904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.58147}],"Text":"data","Confidence":56.604877}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 76b9ba4..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.47326}],"Text":"report","Confidence":93.4092},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.976234}],"Text":"ased","Confidence":92.83366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.40809}],"Text":"class","Confidence":88.8566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56914}],"Text":"template","Confidence":82.11093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.557816}],"Text":"efficiency","Confidence":76.48252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":92.872444}],"Text":"bi","Confidence":50.107124}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(08_08).json index de6e937..a77e3ae 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57268}],"Text":"and","Confidence":96.94212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55014}],"Text":"in","Confidence":96.850525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57437}],"Text":"be","Confidence":96.848816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573296}],"Text":"shown","Confidence":96.845276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56942}],"Text":"based","Confidence":96.72127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57397}],"Text":"or","Confidence":96.66423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54264}],"Text":"an","Confidence":96.596725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.54397}],"Text":"historic","Confidence":96.43816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57252}],"Text":"data","Confidence":96.340034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56464}],"Text":"can","Confidence":96.325775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56892}],"Text":"period","Confidence":95.98541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56798}],"Text":"efficiency","Confidence":95.73695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.38165}],"Text":"report","Confidence":95.67159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54547}],"Text":"is","Confidence":95.29449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53648}],"Text":"defined","Confidence":94.53233},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572975}],"Text":"processed","Confidence":93.90041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.53671}],"Text":"groups","Confidence":93.887375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55937}],"Text":"the","Confidence":93.15402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56896}],"Text":"diagram","Confidence":92.20511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.528725}],"Text":"class","Confidence":90.396545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56816}],"Text":"template","Confidence":89.1958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.284325}],"Text":"on","Confidence":87.99028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56389}],"Text":"eur","Confidence":87.29855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53503}],"Text":"normalised","Confidence":87.2671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.04774}],"Text":"dass","Confidence":86.6388},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.45132}],"Text":"24","Confidence":79.31914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.29089}],"Text":"nome","Confidence":75.73429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.19655}],"Text":"currant","Confidence":73.37584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.05863}],"Text":"name","Confidence":72.4104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55896}],"Text":"efficiency","Confidence":71.23207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.66796}],"Text":"current","Confidence":70.886826},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.91853}],"Text":"15","Confidence":68.19192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.44473}],"Text":"eu","Confidence":62.366585},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.8577}],"Text":"24","Confidence":61.305298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5659}],"Text":"formulas","Confidence":61.11935},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.04781}],"Text":"16","Confidence":58.334694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":93.861534}],"Text":"he","Confidence":57.03073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":93.79282}],"Text":"he","Confidence":56.549744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.9718}],"Text":"cu","Confidence":55.862804},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.88437}],"Text":"14","Confidence":55.669632},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.977165}],"Text":"to","Confidence":54.927364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.4885}],"Text":"eur","Confidence":54.06282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57402}],"Text":"model","Confidence":52.65652},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.71244}],"Text":"eficheney","Confidence":52.460983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.51588}],"Text":"ll","Confidence":52.17639}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57268}],"Text":"and","Confidence":96.94212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55014}],"Text":"in","Confidence":96.850525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57437}],"Text":"be","Confidence":96.848816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573296}],"Text":"shown","Confidence":96.845276},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56942}],"Text":"based","Confidence":96.72127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57397}],"Text":"or","Confidence":96.66423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54264}],"Text":"an","Confidence":96.596725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.54397}],"Text":"historic","Confidence":96.43816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57252}],"Text":"data","Confidence":96.340034},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56464}],"Text":"can","Confidence":96.325775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56892}],"Text":"period","Confidence":95.98541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56798}],"Text":"efficiency","Confidence":95.73695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.38165}],"Text":"report","Confidence":95.67159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54547}],"Text":"is","Confidence":95.29449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53648}],"Text":"defined","Confidence":94.53233},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572975}],"Text":"processed","Confidence":93.90041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.53671}],"Text":"groups","Confidence":93.887375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55937}],"Text":"the","Confidence":93.15402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56896}],"Text":"diagram","Confidence":92.20511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.528725}],"Text":"class","Confidence":90.396545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56816}],"Text":"template","Confidence":89.1958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.284325}],"Text":"on","Confidence":87.99028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56389}],"Text":"eur","Confidence":87.29855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.53503}],"Text":"normalised","Confidence":87.2671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.04774}],"Text":"dass","Confidence":86.6388},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.45132}],"Text":"24","Confidence":79.31914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.29089}],"Text":"nome","Confidence":75.73429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.19655}],"Text":"currant","Confidence":73.37584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":96.05863}],"Text":"name","Confidence":72.4104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55896}],"Text":"efficiency","Confidence":71.23207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.66796}],"Text":"current","Confidence":70.886826},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.91853}],"Text":"15","Confidence":68.19192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.44473}],"Text":"eu","Confidence":62.366585},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.8577}],"Text":"24","Confidence":61.305298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5659}],"Text":"formulas","Confidence":61.11935},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.04781}],"Text":"16","Confidence":58.334694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":93.861534}],"Text":"he","Confidence":57.03073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":93.79282}],"Text":"he","Confidence":56.549744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":94.9718}],"Text":"cu","Confidence":55.862804},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.88437}],"Text":"14","Confidence":55.669632},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.977165}],"Text":"to","Confidence":54.927364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.4885}],"Text":"eur","Confidence":54.06282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57402}],"Text":"model","Confidence":52.65652},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.71244}],"Text":"eficheney","Confidence":52.460983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.51588}],"Text":"ll","Confidence":52.17639}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 75eca80..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56741}],"Text":"based","Confidence":96.91565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570625}],"Text":"data","Confidence":96.8721},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57379}],"Text":"report","Confidence":96.86324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57458}],"Text":"analysis","Confidence":96.84517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56284}],"Text":"the","Confidence":96.77015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57312}],"Text":"efficiency","Confidence":96.76239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53995}],"Text":"diagram","Confidence":96.74334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55899}],"Text":"on","Confidence":96.72275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57331}],"Text":"this","Confidence":96.72275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56474}],"Text":"in","Confidence":96.7062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55542}],"Text":"is","Confidence":96.68009},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570656}],"Text":"defined","Confidence":96.583755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574036}],"Text":"an","Confidence":96.574524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5666}],"Text":"can","Confidence":96.458176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53816}],"Text":"reports","Confidence":96.35419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.53557}],"Text":"formula","Confidence":96.26404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.45523}],"Text":"class","Confidence":96.18662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56925}],"Text":"and","Confidence":96.17818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57142}],"Text":"historic","Confidence":96.06442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56992}],"Text":"be","Confidence":95.61582},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573204}],"Text":"13","Confidence":95.2891},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.525604}],"Text":"03","Confidence":94.59215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.15846}],"Text":"period","Confidence":94.10924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574486}],"Text":"perform","Confidence":93.768555},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.46391}],"Text":"04","Confidence":93.376816},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.78826}],"Text":"43","Confidence":91.51785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.94706}],"Text":"effic","Confidence":89.77559},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5741}],"Text":"shown","Confidence":89.19973},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.22847}],"Text":"ithe","Confidence":87.59928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57107}],"Text":"model","Confidence":87.55986},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.042725}],"Text":"effich","Confidence":86.93811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57373}],"Text":"formulas","Confidence":86.81785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.75684}],"Text":"sncy","Confidence":84.29793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.530655}],"Text":"template","Confidence":81.98566},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.84172}],"Text":"42","Confidence":81.69803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56517}],"Text":"to","Confidence":81.689354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.21101}],"Text":"eur","Confidence":80.71916},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":98.11771}],"Text":"35","Confidence":80.71916},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.63751}],"Text":"42","Confidence":79.42279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.15501}],"Text":"current","Confidence":74.70784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":95.83065}],"Text":"report","Confidence":70.81455},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.2157}],"Text":"19","Confidence":70.00502},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.286156}],"Text":"eur","Confidence":67.79338},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":94.7949}],"Text":"fur","Confidence":63.564297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":94.16113}],"Text":"sy","Confidence":59.127907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.680695}],"Text":"value","Confidence":59.04184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":94.848785}],"Text":"fic","Confidence":58.29666},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":96.13709}],"Text":"32","Confidence":57.581688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.11313}],"Text":"ihe","Confidence":57.036358}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(12_12).json index 4067a7c..142fae7 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57399}],"Text":"data","Confidence":96.94861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573685}],"Text":"be","Confidence":96.93867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57467}],"Text":"and","Confidence":96.91252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56893}],"Text":"report","Confidence":96.8331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5719}],"Text":"that","Confidence":96.787056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.53848}],"Text":"groups","Confidence":96.7694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.564095}],"Text":"in","Confidence":96.76926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566284}],"Text":"based","Confidence":96.74418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52809}],"Text":"class","Confidence":96.696625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5742}],"Text":"shown","Confidence":96.690735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5526}],"Text":"processed","Confidence":96.630516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.50036}],"Text":"on","Confidence":96.50252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57255}],"Text":"can","Confidence":96.45822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50622}],"Text":"efficiency","Confidence":96.45496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57057}],"Text":"historic","Confidence":96.44983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573074}],"Text":"analysis","Confidence":96.44876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57345}],"Text":"formula","Confidence":96.359436},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.468666}],"Text":"13","Confidence":96.28066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56245}],"Text":"period","Confidence":96.26153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56002}],"Text":"to","Confidence":96.20612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57303}],"Text":"the","Confidence":96.09419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55293}],"Text":"defined","Confidence":96.036804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.563576}],"Text":"archives","Confidence":95.869446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55799}],"Text":"equipment","Confidence":95.869446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57284}],"Text":"an","Confidence":95.75174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.37634}],"Text":"templates","Confidence":95.63441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571915}],"Text":"or","Confidence":94.251816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.565674}],"Text":"diagram","Confidence":93.83692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44911}],"Text":"theme","Confidence":93.622116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51693}],"Text":"is","Confidence":93.29689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56999}],"Text":"template","Confidence":90.48378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.77849}],"Text":"contains","Confidence":89.81302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.50737}],"Text":"allow","Confidence":89.551575},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.93324}],"Text":"effici","Confidence":89.21788},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":97.91}],"Text":"93","Confidence":85.369995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.78776}],"Text":"ihe","Confidence":83.18617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57411}],"Text":"model","Confidence":82.766624},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.40904}],"Text":"03","Confidence":82.6206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.14839}],"Text":"eficieney","Confidence":77.79213},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.266754}],"Text":"04","Confidence":72.99918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57161}],"Text":"models","Confidence":71.749695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.95976}],"Text":"formulas","Confidence":69.9102},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":96.87564}],"Text":"10","Confidence":64.74919},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.412224}],"Text":"ienry","Confidence":62.276596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":94.10131}],"Text":"thistheme","Confidence":58.70918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56534}],"Text":"tables","Confidence":58.3849},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.95862}],"Text":"normalised","Confidence":51.69026}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57399}],"Text":"data","Confidence":96.94861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573685}],"Text":"be","Confidence":96.93867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57467}],"Text":"and","Confidence":96.91252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56893}],"Text":"report","Confidence":96.8331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5719}],"Text":"that","Confidence":96.787056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.53848}],"Text":"groups","Confidence":96.7694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.564095}],"Text":"in","Confidence":96.76926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566284}],"Text":"based","Confidence":96.74418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52809}],"Text":"class","Confidence":96.696625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5742}],"Text":"shown","Confidence":96.690735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5526}],"Text":"processed","Confidence":96.630516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.50036}],"Text":"on","Confidence":96.50252},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57255}],"Text":"can","Confidence":96.45822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50622}],"Text":"efficiency","Confidence":96.45496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57057}],"Text":"historic","Confidence":96.44983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573074}],"Text":"analysis","Confidence":96.44876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57345}],"Text":"formula","Confidence":96.359436},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.468666}],"Text":"13","Confidence":96.28066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56245}],"Text":"period","Confidence":96.26153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56002}],"Text":"to","Confidence":96.20612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57303}],"Text":"the","Confidence":96.09419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55293}],"Text":"defined","Confidence":96.036804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.563576}],"Text":"archives","Confidence":95.869446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55799}],"Text":"equipment","Confidence":95.869446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57284}],"Text":"an","Confidence":95.75174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.37634}],"Text":"templates","Confidence":95.63441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.571915}],"Text":"or","Confidence":94.251816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.565674}],"Text":"diagram","Confidence":93.83692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44911}],"Text":"theme","Confidence":93.622116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51693}],"Text":"is","Confidence":93.29689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56999}],"Text":"template","Confidence":90.48378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.77849}],"Text":"contains","Confidence":89.81302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.50737}],"Text":"allow","Confidence":89.551575},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.93324}],"Text":"effici","Confidence":89.21788},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"9","Confidence":97.91}],"Text":"93","Confidence":85.369995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.78776}],"Text":"ihe","Confidence":83.18617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57411}],"Text":"model","Confidence":82.766624},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.40904}],"Text":"03","Confidence":82.6206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.14839}],"Text":"eficieney","Confidence":77.79213},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.266754}],"Text":"04","Confidence":72.99918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57161}],"Text":"models","Confidence":71.749695},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.95976}],"Text":"formulas","Confidence":69.9102},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":96.87564}],"Text":"10","Confidence":64.74919},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.412224}],"Text":"ienry","Confidence":62.276596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":94.10131}],"Text":"thistheme","Confidence":58.70918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56534}],"Text":"tables","Confidence":58.3849},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.95862}],"Text":"normalised","Confidence":51.69026}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 35f0600..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56124}],"Text":"report","Confidence":96.928665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56395}],"Text":"based","Confidence":96.89647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57413}],"Text":"that","Confidence":96.84487},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55959}],"Text":"data","Confidence":96.77234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.572}],"Text":"in","Confidence":96.74193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56728}],"Text":"the","Confidence":96.74193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57139}],"Text":"templates","Confidence":96.71501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.52744}],"Text":"preview","Confidence":96.69209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.53775}],"Text":"efficiency","Confidence":96.62154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5402}],"Text":"shown","Confidence":96.59589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57467}],"Text":"analysis","Confidence":96.51646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56307}],"Text":"can","Confidence":96.50274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55519}],"Text":"is","Confidence":96.46288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54962}],"Text":"diagram","Confidence":96.41936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57192}],"Text":"defined","Confidence":96.18973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56509}],"Text":"period","Confidence":96.14916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574615}],"Text":"and","Confidence":96.00284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56785}],"Text":"to","Confidence":95.91761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57156}],"Text":"be","Confidence":95.82677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56214}],"Text":"costs","Confidence":95.5839},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.46116}],"Text":"03","Confidence":95.56779},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57475}],"Text":"13","Confidence":95.27163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54673}],"Text":"allow","Confidence":95.10704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.569496}],"Text":"historic","Confidence":94.77628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52319}],"Text":"theme","Confidence":94.31807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.228615}],"Text":"contains","Confidence":94.31807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.53334}],"Text":"formula","Confidence":93.79106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.523994}],"Text":"an","Confidence":93.57879},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52455}],"Text":"class","Confidence":93.5468},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.96415}],"Text":"on","Confidence":92.74902},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.02934}],"Text":"effici","Confidence":91.293846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.72796}],"Text":"the","Confidence":91.09572},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.18504}],"Text":"04","Confidence":90.30812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56157}],"Text":"template","Confidence":88.492805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.567635}],"Text":"effi","Confidence":87.69587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.571945}],"Text":"model","Confidence":86.07233},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.08762}],"Text":"this","Confidence":81.99992},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56079}],"Text":"hour","Confidence":77.084755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.559944}],"Text":"normalised","Confidence":76.79474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57097}],"Text":"tables","Confidence":57.55902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":93.32397}],"Text":"model","Confidence":53.267746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.41484}],"Text":"cass","Confidence":51.19306}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(16_16).json index b1148b0..40b6195 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56888}],"Text":"the","Confidence":96.96069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56828}],"Text":"data","Confidence":96.94678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572784}],"Text":"based","Confidence":96.929565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574524}],"Text":"an","Confidence":96.86931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57201}],"Text":"diagram","Confidence":96.86931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55019}],"Text":"preview","Confidence":96.85137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56128}],"Text":"is","Confidence":96.76991},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57163}],"Text":"groups","Confidence":96.76885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.5721}],"Text":"historic","Confidence":96.7099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.52846}],"Text":"efficiency","Confidence":96.687744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56456}],"Text":"report","Confidence":96.687744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57097}],"Text":"processed","Confidence":96.65914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57176}],"Text":"can","Confidence":96.64841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57441}],"Text":"be","Confidence":96.64841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56326}],"Text":"costs","Confidence":96.639206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56079}],"Text":"period","Confidence":96.6288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56269}],"Text":"on","Confidence":96.604546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57318}],"Text":"this","Confidence":96.604546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574486}],"Text":"archives","Confidence":96.49833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56981}],"Text":"formula","Confidence":96.42706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572136}],"Text":"models","Confidence":96.30695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56305}],"Text":"and","Confidence":96.287346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.469536}],"Text":"in","Confidence":96.286766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.44355}],"Text":"equipment","Confidence":96.10486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.38701}],"Text":"class","Confidence":95.54218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56808}],"Text":"template","Confidence":94.991776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57133}],"Text":"defined","Confidence":94.198975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56718}],"Text":"to","Confidence":94.18407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57343}],"Text":"reports","Confidence":93.94728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.574}],"Text":"hour","Confidence":93.93831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56749}],"Text":"shown","Confidence":93.1306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5568}],"Text":"or","Confidence":92.78615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.564255}],"Text":"tables","Confidence":92.07597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.02962}],"Text":"effici","Confidence":91.678696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52749}],"Text":"tables","Confidence":90.52354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.16395}],"Text":"eur","Confidence":81.23522},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.44767}],"Text":"24","Confidence":73.02643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":96.41397}],"Text":"ul","Confidence":69.17025},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.98225}],"Text":"formutas","Confidence":68.9839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.020615}],"Text":"lie","Confidence":68.12004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.46932}],"Text":"model","Confidence":53.070602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.34119}],"Text":"te","Confidence":52.179966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":92.9517}],"Text":"das","Confidence":50.66187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":92.91229}],"Text":"sen","Confidence":50.386066}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56888}],"Text":"the","Confidence":96.96069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56828}],"Text":"data","Confidence":96.94678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.572784}],"Text":"based","Confidence":96.929565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574524}],"Text":"an","Confidence":96.86931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57201}],"Text":"diagram","Confidence":96.86931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55019}],"Text":"preview","Confidence":96.85137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56128}],"Text":"is","Confidence":96.76991},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57163}],"Text":"groups","Confidence":96.76885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.5721}],"Text":"historic","Confidence":96.7099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.52846}],"Text":"efficiency","Confidence":96.687744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56456}],"Text":"report","Confidence":96.687744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57097}],"Text":"processed","Confidence":96.65914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57176}],"Text":"can","Confidence":96.64841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57441}],"Text":"be","Confidence":96.64841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56326}],"Text":"costs","Confidence":96.639206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56079}],"Text":"period","Confidence":96.6288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56269}],"Text":"on","Confidence":96.604546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57318}],"Text":"this","Confidence":96.604546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574486}],"Text":"archives","Confidence":96.49833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56981}],"Text":"formula","Confidence":96.42706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572136}],"Text":"models","Confidence":96.30695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56305}],"Text":"and","Confidence":96.287346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.469536}],"Text":"in","Confidence":96.286766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.44355}],"Text":"equipment","Confidence":96.10486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.38701}],"Text":"class","Confidence":95.54218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56808}],"Text":"template","Confidence":94.991776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57133}],"Text":"defined","Confidence":94.198975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56718}],"Text":"to","Confidence":94.18407},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57343}],"Text":"reports","Confidence":93.94728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.574}],"Text":"hour","Confidence":93.93831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56749}],"Text":"shown","Confidence":93.1306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5568}],"Text":"or","Confidence":92.78615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.564255}],"Text":"tables","Confidence":92.07597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.02962}],"Text":"effici","Confidence":91.678696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52749}],"Text":"tables","Confidence":90.52354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.16395}],"Text":"eur","Confidence":81.23522},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.44767}],"Text":"24","Confidence":73.02643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":96.41397}],"Text":"ul","Confidence":69.17025},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.98225}],"Text":"formutas","Confidence":68.9839},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.020615}],"Text":"lie","Confidence":68.12004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.46932}],"Text":"model","Confidence":53.070602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.34119}],"Text":"te","Confidence":52.179966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":92.9517}],"Text":"das","Confidence":50.66187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":92.91229}],"Text":"sen","Confidence":50.386066}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index bba9ec7..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57383}],"Text":"based","Confidence":96.953026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56502}],"Text":"on","Confidence":96.95298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.572334}],"Text":"the","Confidence":96.9267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57273}],"Text":"equipment","Confidence":96.83332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57008}],"Text":"groups","Confidence":96.83298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57241}],"Text":"efficiency","Confidence":96.6886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56994}],"Text":"report","Confidence":96.567566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57361}],"Text":"formula","Confidence":96.469765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56547}],"Text":"historic","Confidence":96.400055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56958}],"Text":"be","Confidence":96.37121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.4523}],"Text":"processed","Confidence":96.166115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.447426}],"Text":"archives","Confidence":96.13197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568405}],"Text":"data","Confidence":96.05201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57042}],"Text":"is","Confidence":96.05201},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.549286}],"Text":"13","Confidence":95.96004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.38906}],"Text":"or","Confidence":95.72343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.48756}],"Text":"shown","Confidence":95.60523},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.558914}],"Text":"costs","Confidence":95.12772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.287094}],"Text":"class","Confidence":94.911224},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.08938}],"Text":"04","Confidence":93.62565},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.39891}],"Text":"03","Confidence":92.871124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57353}],"Text":"formulas","Confidence":90.08687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.40578}],"Text":"can","Confidence":89.66455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57267}],"Text":"defined","Confidence":89.57703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.495834}],"Text":"in","Confidence":89.57703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57252}],"Text":"hour","Confidence":88.88289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573296}],"Text":"period","Confidence":88.02202},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5683}],"Text":"canbe","Confidence":86.53623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57405}],"Text":"model","Confidence":86.20712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56955}],"Text":"to","Confidence":81.987305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.95485}],"Text":"an","Confidence":80.258316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.36271}],"Text":"and","Confidence":78.86277},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.04114}],"Text":"effici","Confidence":74.95303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.307846}],"Text":"clas","Confidence":71.02703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.200005}],"Text":"dat","Confidence":67.741295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":95.942665}],"Text":"nthe","Confidence":66.08952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":96.248566}],"Text":"han","Confidence":61.623978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":93.79534}],"Text":"hi","Confidence":56.567387},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.6214}],"Text":"11","Confidence":55.05261},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.5215}],"Text":"eiciency","Confidence":50.107826},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":96.448494}],"Text":"effciency","Confidence":50.028664}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(20_20).json index b84d792..2cf30e2 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56748}],"Text":"data","Confidence":96.97063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57358}],"Text":"the","Confidence":96.956535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.565125}],"Text":"in","Confidence":96.94155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56169}],"Text":"diagram","Confidence":96.93184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.558975}],"Text":"shown","Confidence":96.91281},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57213}],"Text":"based","Confidence":96.90057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57345}],"Text":"class","Confidence":96.86431},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.572586}],"Text":"groups","Confidence":96.86396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55053}],"Text":"preview","Confidence":96.8537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56526}],"Text":"period","Confidence":96.843956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55302}],"Text":"can","Confidence":96.826706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574265}],"Text":"processed","Confidence":96.81256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57471}],"Text":"formula","Confidence":96.76512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.53511}],"Text":"be","Confidence":96.74576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5641}],"Text":"efficiency","Confidence":96.73981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53518}],"Text":"defined","Confidence":96.62907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57025}],"Text":"report","Confidence":96.61482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55102}],"Text":"reports","Confidence":96.51749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.502884}],"Text":"is","Confidence":96.47307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49105}],"Text":"theme","Confidence":96.43736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.4956}],"Text":"and","Confidence":96.3889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5676}],"Text":"to","Confidence":96.235855},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.561966}],"Text":"13","Confidence":96.18002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56875}],"Text":"models","Confidence":96.1565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55686}],"Text":"templates","Confidence":95.94275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41174}],"Text":"on","Confidence":95.882195},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.4977}],"Text":"03","Confidence":95.76525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57085}],"Text":"perform","Confidence":95.718834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574844}],"Text":"this","Confidence":95.59368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56869}],"Text":"template","Confidence":95.59368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.562035}],"Text":"that","Confidence":95.47487},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.41383}],"Text":"04","Confidence":95.46688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57173}],"Text":"analysis","Confidence":95.22806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56858}],"Text":"an","Confidence":95.16499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55702}],"Text":"allow","Confidence":95.02631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.223305}],"Text":"contains","Confidence":94.563156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56577}],"Text":"archives","Confidence":93.28295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":99.149315}],"Text":"the","Confidence":92.67409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57085}],"Text":"historic","Confidence":92.67409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56781}],"Text":"tables","Confidence":92.19797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57312}],"Text":"model","Confidence":91.26983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57247}],"Text":"or","Confidence":90.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54277}],"Text":"formulas","Confidence":90.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57398}],"Text":"anal","Confidence":89.99944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52544}],"Text":"normalised","Confidence":82.285355},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.04227}],"Text":"effici","Confidence":80.15202},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.03695}],"Text":"equipmer","Confidence":66.19412}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56748}],"Text":"data","Confidence":96.97063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57358}],"Text":"the","Confidence":96.956535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.565125}],"Text":"in","Confidence":96.94155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56169}],"Text":"diagram","Confidence":96.93184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.558975}],"Text":"shown","Confidence":96.91281},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57213}],"Text":"based","Confidence":96.90057},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57345}],"Text":"class","Confidence":96.86431},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.572586}],"Text":"groups","Confidence":96.86396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55053}],"Text":"preview","Confidence":96.8537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56526}],"Text":"period","Confidence":96.843956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55302}],"Text":"can","Confidence":96.826706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574265}],"Text":"processed","Confidence":96.81256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57471}],"Text":"formula","Confidence":96.76512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.53511}],"Text":"be","Confidence":96.74576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5641}],"Text":"efficiency","Confidence":96.73981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53518}],"Text":"defined","Confidence":96.62907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57025}],"Text":"report","Confidence":96.61482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55102}],"Text":"reports","Confidence":96.51749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.502884}],"Text":"is","Confidence":96.47307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49105}],"Text":"theme","Confidence":96.43736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.4956}],"Text":"and","Confidence":96.3889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5676}],"Text":"to","Confidence":96.235855},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.561966}],"Text":"13","Confidence":96.18002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56875}],"Text":"models","Confidence":96.1565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55686}],"Text":"templates","Confidence":95.94275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41174}],"Text":"on","Confidence":95.882195},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.4977}],"Text":"03","Confidence":95.76525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57085}],"Text":"perform","Confidence":95.718834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574844}],"Text":"this","Confidence":95.59368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56869}],"Text":"template","Confidence":95.59368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.562035}],"Text":"that","Confidence":95.47487},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.41383}],"Text":"04","Confidence":95.46688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57173}],"Text":"analysis","Confidence":95.22806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56858}],"Text":"an","Confidence":95.16499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55702}],"Text":"allow","Confidence":95.02631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.223305}],"Text":"contains","Confidence":94.563156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56577}],"Text":"archives","Confidence":93.28295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":99.149315}],"Text":"the","Confidence":92.67409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57085}],"Text":"historic","Confidence":92.67409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56781}],"Text":"tables","Confidence":92.19797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57312}],"Text":"model","Confidence":91.26983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57247}],"Text":"or","Confidence":90.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54277}],"Text":"formulas","Confidence":90.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57398}],"Text":"anal","Confidence":89.99944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.52544}],"Text":"normalised","Confidence":82.285355},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.04227}],"Text":"effici","Confidence":80.15202},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.03695}],"Text":"equipmer","Confidence":66.19412}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index bc30a24..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570244}],"Text":"based","Confidence":96.929085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56168}],"Text":"class","Confidence":96.90755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57075}],"Text":"on","Confidence":96.834595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54756}],"Text":"data","Confidence":96.83293},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53958}],"Text":"shown","Confidence":96.77706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57365}],"Text":"the","Confidence":96.74689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55976}],"Text":"to","Confidence":96.6608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57275}],"Text":"reports","Confidence":96.654495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57173}],"Text":"report","Confidence":96.65013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57195}],"Text":"can","Confidence":96.54578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.573685}],"Text":"be","Confidence":96.54578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49594}],"Text":"in","Confidence":96.471565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.521736}],"Text":"this","Confidence":96.46592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57245}],"Text":"for","Confidence":96.46149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56811}],"Text":"efficiency","Confidence":96.417534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.538536}],"Text":"theme","Confidence":96.3084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5748}],"Text":"formula","Confidence":96.24038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56496}],"Text":"and","Confidence":96.132416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.423996}],"Text":"diagram","Confidence":95.96799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57472}],"Text":"perform","Confidence":95.9662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56878}],"Text":"period","Confidence":95.962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5711}],"Text":"is","Confidence":95.9481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54}],"Text":"that","Confidence":95.887146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56989}],"Text":"allow","Confidence":95.786674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5609}],"Text":"defined","Confidence":95.7269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.574356}],"Text":"models","Confidence":95.32829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57337}],"Text":"historic","Confidence":95.10882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57093}],"Text":"contains","Confidence":94.78811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56763}],"Text":"template","Confidence":94.77607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574394}],"Text":"period","Confidence":94.72002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57075}],"Text":"templates","Confidence":94.68279},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.915344}],"Text":"the","Confidence":92.40739},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57445}],"Text":"an","Confidence":92.080894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57425}],"Text":"analysis","Confidence":91.90216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5629}],"Text":"tables","Confidence":91.218544},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.04161}],"Text":"effici","Confidence":89.03022},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03904}],"Text":"madel","Confidence":86.05336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57441}],"Text":"formulas","Confidence":70.1053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":93.63057}],"Text":"hl","Confidence":55.41398}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(24_24).json index 577afaa..6ed1925 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57419}],"Text":"data","Confidence":96.9677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.568504}],"Text":"based","Confidence":96.96437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56323}],"Text":"on","Confidence":96.94265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573814}],"Text":"reports","Confidence":96.939285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5748}],"Text":"this","Confidence":96.93345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57458}],"Text":"formula","Confidence":96.899124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55636}],"Text":"can","Confidence":96.894485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57445}],"Text":"report","Confidence":96.85884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556725}],"Text":"the","Confidence":96.83168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.545654}],"Text":"in","Confidence":96.819565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57353}],"Text":"defined","Confidence":96.81765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.533714}],"Text":"be","Confidence":96.73598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574524}],"Text":"formulas","Confidence":96.73269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57267}],"Text":"groups","Confidence":96.717896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.565216}],"Text":"archives","Confidence":96.69607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5572}],"Text":"for","Confidence":96.68354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57402}],"Text":"contains","Confidence":96.64553},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57388}],"Text":"13","Confidence":96.604126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50529}],"Text":"efficiency","Confidence":96.537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574455}],"Text":"processed","Confidence":96.49479},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46396}],"Text":"that","Confidence":96.247696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55236}],"Text":"period","Confidence":96.15347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.44071}],"Text":"analysis","Confidence":96.084984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571945}],"Text":"allow","Confidence":95.99222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54532}],"Text":"theme","Confidence":95.75474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574}],"Text":"perform","Confidence":95.711555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.38544}],"Text":"class","Confidence":95.59498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56872}],"Text":"equipment","Confidence":95.16684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56613}],"Text":"templates","Confidence":95.12119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56706}],"Text":"tables","Confidence":95.00881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57432}],"Text":"models","Confidence":95.00699},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.17585}],"Text":"03","Confidence":94.23096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573875}],"Text":"template","Confidence":93.93738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.496864}],"Text":"is","Confidence":93.299095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57272}],"Text":"or","Confidence":93.15577},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.89149}],"Text":"04","Confidence":92.24042},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.930664}],"Text":"effici","Confidence":92.16641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55603}],"Text":"period","Confidence":92.05507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.549034}],"Text":"model","Confidence":90.31898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.560196}],"Text":"formulas","Confidence":90.22316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.4599}],"Text":"to","Confidence":89.2193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.58156}],"Text":"an","Confidence":88.97068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.651436}],"Text":"lass","Confidence":83.56006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.058395}],"Text":"shown","Confidence":74.5969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.1143}],"Text":"the","Confidence":72.800125},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.95613}],"Text":"efciency","Confidence":68.54247},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":98.0473}],"Text":"hisoric","Confidence":60.796997},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.02379}],"Text":"nommalised","Confidence":59.64876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":95.67808}],"Text":"ze","Confidence":57.999428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":93.46666}],"Text":"hl","Confidence":54.266624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.988976}],"Text":"eficiency","Confidence":54.071808},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.97468}],"Text":"eficieney","Confidence":52.63641}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57419}],"Text":"data","Confidence":96.9677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.568504}],"Text":"based","Confidence":96.96437},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56323}],"Text":"on","Confidence":96.94265},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573814}],"Text":"reports","Confidence":96.939285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5748}],"Text":"this","Confidence":96.93345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57458}],"Text":"formula","Confidence":96.899124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55636}],"Text":"can","Confidence":96.894485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57445}],"Text":"report","Confidence":96.85884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556725}],"Text":"the","Confidence":96.83168},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.545654}],"Text":"in","Confidence":96.819565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57353}],"Text":"defined","Confidence":96.81765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.533714}],"Text":"be","Confidence":96.73598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574524}],"Text":"formulas","Confidence":96.73269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57267}],"Text":"groups","Confidence":96.717896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.565216}],"Text":"archives","Confidence":96.69607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5572}],"Text":"for","Confidence":96.68354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57402}],"Text":"contains","Confidence":96.64553},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57388}],"Text":"13","Confidence":96.604126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50529}],"Text":"efficiency","Confidence":96.537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574455}],"Text":"processed","Confidence":96.49479},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46396}],"Text":"that","Confidence":96.247696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55236}],"Text":"period","Confidence":96.15347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.44071}],"Text":"analysis","Confidence":96.084984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571945}],"Text":"allow","Confidence":95.99222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54532}],"Text":"theme","Confidence":95.75474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574}],"Text":"perform","Confidence":95.711555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.38544}],"Text":"class","Confidence":95.59498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56872}],"Text":"equipment","Confidence":95.16684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56613}],"Text":"templates","Confidence":95.12119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56706}],"Text":"tables","Confidence":95.00881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57432}],"Text":"models","Confidence":95.00699},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.17585}],"Text":"03","Confidence":94.23096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573875}],"Text":"template","Confidence":93.93738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.496864}],"Text":"is","Confidence":93.299095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57272}],"Text":"or","Confidence":93.15577},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.89149}],"Text":"04","Confidence":92.24042},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.930664}],"Text":"effici","Confidence":92.16641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55603}],"Text":"period","Confidence":92.05507},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.549034}],"Text":"model","Confidence":90.31898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.560196}],"Text":"formulas","Confidence":90.22316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.4599}],"Text":"to","Confidence":89.2193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.58156}],"Text":"an","Confidence":88.97068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.651436}],"Text":"lass","Confidence":83.56006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.058395}],"Text":"shown","Confidence":74.5969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":96.1143}],"Text":"the","Confidence":72.800125},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.95613}],"Text":"efciency","Confidence":68.54247},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"h","Confidence":98.0473}],"Text":"hisoric","Confidence":60.796997},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.02379}],"Text":"nommalised","Confidence":59.64876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":95.67808}],"Text":"ze","Confidence":57.999428},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":93.46666}],"Text":"hl","Confidence":54.266624},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.988976}],"Text":"eficiency","Confidence":54.071808},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.97468}],"Text":"eficieney","Confidence":52.63641}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(0%).json deleted file mode 100644 index c70a9c2..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57351}],"Text":"report","Confidence":96.62081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.551414}],"Text":"based","Confidence":96.56027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.52635}],"Text":"formula","Confidence":96.42285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.45606}],"Text":"costs","Confidence":96.04469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.573715}],"Text":"efficiency","Confidence":95.49501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.41481}],"Text":"hour","Confidence":91.388565},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.28546}],"Text":"38","Confidence":86.82639},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"7","Confidence":99.42723}],"Text":"7014","Confidence":80.540825},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.334465}],"Text":"13","Confidence":80.540825},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.165565}],"Text":"0311201413","Confidence":76.276985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.48541}],"Text":"cd","Confidence":64.228714},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.49634}],"Text":"05","Confidence":62.439453}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(10%).json deleted file mode 100644 index f9616b6..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52951}],"Text":"report","Confidence":96.68573},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54506}],"Text":"defined","Confidence":96.59576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.566925}],"Text":"based","Confidence":96.57491},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55944}],"Text":"diagram","Confidence":96.539246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56083}],"Text":"formula","Confidence":96.51449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55529}],"Text":"hi","Confidence":96.47748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.565605}],"Text":"efficiency","Confidence":96.465805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56478}],"Text":"in","Confidence":96.43482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52089}],"Text":"dats","Confidence":96.4226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.476295}],"Text":"the","Confidence":96.334076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.545746}],"Text":"new","Confidence":96.29033},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54712}],"Text":"can","Confidence":96.279175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54851}],"Text":"on","Confidence":96.14439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.49603}],"Text":"data","Confidence":96.09141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44131}],"Text":"this","Confidence":96.08915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5495}],"Text":"template","Confidence":96.06124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.572845}],"Text":"theme","Confidence":96.01929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56878}],"Text":"and","Confidence":95.68281},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5577}],"Text":"for","Confidence":95.65672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56897}],"Text":"be","Confidence":95.53759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.4695}],"Text":"costs","Confidence":95.1211},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.506935}],"Text":"groups","Confidence":94.884636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.570465}],"Text":"analysis","Confidence":93.89425},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.23171}],"Text":"00","Confidence":93.22392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55923}],"Text":"is","Confidence":93.21554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56922}],"Text":"shown","Confidence":92.123886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.9315}],"Text":"class","Confidence":92.05813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56132}],"Text":"an","Confidence":90.47522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.52672}],"Text":"hour","Confidence":90.28465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.526146}],"Text":"perform","Confidence":89.247284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57315}],"Text":"to","Confidence":88.83614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56456}],"Text":"cancel","Confidence":88.35744},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.326256}],"Text":"ntains","Confidence":88.07025},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.32103}],"Text":"3b","Confidence":88.02976},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.63133}],"Text":"hcur","Confidence":87.51984},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.92251}],"Text":"formulas","Confidence":85.72909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.50601}],"Text":"period","Confidence":85.16161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.596085}],"Text":"ok","Confidence":83.17257},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.562675}],"Text":"2014","Confidence":82.82657},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.543686}],"Text":"13","Confidence":82.82657},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56561}],"Text":"11","Confidence":81.1416},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.45552}],"Text":"04","Confidence":81.1416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.86193}],"Text":"effi","Confidence":80.01345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":97.13679}],"Text":"rts","Confidence":79.957535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56897}],"Text":"period","Confidence":78.710144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.514885}],"Text":"clase","Confidence":76.864586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.49365}],"Text":"or","Confidence":75.20458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54584}],"Text":"pi","Confidence":71.959724},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Q","Confidence":95.86635}],"Text":"quipment","Confidence":71.06447},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.61879}],"Text":"efficie","Confidence":69.594406},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.2906}],"Text":"03","Confidence":67.64293},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.97038}],"Text":"efficr","Confidence":66.79439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57301}],"Text":"formulas","Confidence":66.57845},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.38726}],"Text":"13","Confidence":66.1723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57359}],"Text":"thet","Confidence":60.749725},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.009834}],"Text":"nomalised","Confidence":59.11548},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":94.060684}],"Text":"sfficien","Confidence":58.424793}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(20%).json index 0ded83e..730fcc3 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.572586}],"Text":"the","Confidence":96.91654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57475}],"Text":"that","Confidence":96.90909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57065}],"Text":"defined","Confidence":96.872765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57112}],"Text":"based","Confidence":96.86413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57096}],"Text":"data","Confidence":96.84332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57185}],"Text":"class","Confidence":96.829094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54693}],"Text":"template","Confidence":96.828514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5384}],"Text":"in","Confidence":96.768776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.562065}],"Text":"be","Confidence":96.68426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56709}],"Text":"this","Confidence":96.62226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55739}],"Text":"on","Confidence":96.61639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.569244}],"Text":"equipment","Confidence":96.571884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56533}],"Text":"can","Confidence":96.495544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55793}],"Text":"costs","Confidence":96.46947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55708}],"Text":"processed","Confidence":96.370964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54992}],"Text":"formula","Confidence":96.33596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55637}],"Text":"templates","Confidence":96.335236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.527374}],"Text":"contains","Confidence":96.32386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.521454}],"Text":"report","Confidence":96.32233},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572716}],"Text":"models","Confidence":96.27963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568954}],"Text":"theme","Confidence":96.21355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53461}],"Text":"and","Confidence":96.2023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.563866}],"Text":"for","Confidence":95.89464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55619}],"Text":"cancel","Confidence":95.8931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56435}],"Text":"allow","Confidence":95.89274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.400635}],"Text":"hour","Confidence":95.80443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.37741}],"Text":"efficiency","Confidence":95.64187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57218}],"Text":"tables","Confidence":95.32983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53009}],"Text":"period","Confidence":95.32781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.566986}],"Text":"reports","Confidence":95.1221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56009}],"Text":"an","Confidence":95.10806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.545105}],"Text":"formulas","Confidence":95.07666},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.50367}],"Text":"03","Confidence":94.04264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54677}],"Text":"is","Confidence":93.29104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.41688}],"Text":"groups","Confidence":93.25649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56987}],"Text":"diagram","Confidence":93.15303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50288}],"Text":"new","Confidence":92.93758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567406}],"Text":"to","Confidence":91.93894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57278}],"Text":"historic","Confidence":91.90133},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.75062}],"Text":"04","Confidence":87.8908},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57242}],"Text":"shown","Confidence":86.15503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540665}],"Text":"archives","Confidence":86.08806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57042}],"Text":"analysis","Confidence":85.656456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55907}],"Text":"preview","Confidence":83.90464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558235}],"Text":"perform","Confidence":83.44391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57267}],"Text":"model","Confidence":80.705925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56704}],"Text":"or","Confidence":77.61941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56834}],"Text":"formulas","Confidence":77.61941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.64855}],"Text":"ck","Confidence":76.53988},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.01974}],"Text":"efficiercy","Confidence":74.37206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.03261}],"Text":"nomalised","Confidence":73.04065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47451}],"Text":"cle","Confidence":70.783},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.46839}],"Text":"13","Confidence":68.55748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":96.04403}],"Text":"higher","Confidence":65.06042},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48619}],"Text":"13","Confidence":64.04744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.23153}],"Text":"ml","Confidence":59.6207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.662994}],"Text":"oo","Confidence":57.38287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.74948}],"Text":"tower","Confidence":56.24634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":94.63304}],"Text":"lout","Confidence":54.537247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":95.19566}],"Text":"name","Confidence":54.27692}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.572586}],"Text":"the","Confidence":96.91654},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57475}],"Text":"that","Confidence":96.90909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57065}],"Text":"defined","Confidence":96.872765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57112}],"Text":"based","Confidence":96.86413},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57096}],"Text":"data","Confidence":96.84332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57185}],"Text":"class","Confidence":96.829094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54693}],"Text":"template","Confidence":96.828514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5384}],"Text":"in","Confidence":96.768776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.562065}],"Text":"be","Confidence":96.68426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56709}],"Text":"this","Confidence":96.62226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55739}],"Text":"on","Confidence":96.61639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.569244}],"Text":"equipment","Confidence":96.571884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56533}],"Text":"can","Confidence":96.495544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55793}],"Text":"costs","Confidence":96.46947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55708}],"Text":"processed","Confidence":96.370964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54992}],"Text":"formula","Confidence":96.33596},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55637}],"Text":"templates","Confidence":96.335236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.527374}],"Text":"contains","Confidence":96.32386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.521454}],"Text":"report","Confidence":96.32233},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572716}],"Text":"models","Confidence":96.27963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568954}],"Text":"theme","Confidence":96.21355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53461}],"Text":"and","Confidence":96.2023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.563866}],"Text":"for","Confidence":95.89464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55619}],"Text":"cancel","Confidence":95.8931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56435}],"Text":"allow","Confidence":95.89274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.400635}],"Text":"hour","Confidence":95.80443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.37741}],"Text":"efficiency","Confidence":95.64187},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57218}],"Text":"tables","Confidence":95.32983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.53009}],"Text":"period","Confidence":95.32781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.566986}],"Text":"reports","Confidence":95.1221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56009}],"Text":"an","Confidence":95.10806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.545105}],"Text":"formulas","Confidence":95.07666},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.50367}],"Text":"03","Confidence":94.04264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54677}],"Text":"is","Confidence":93.29104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.41688}],"Text":"groups","Confidence":93.25649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56987}],"Text":"diagram","Confidence":93.15303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50288}],"Text":"new","Confidence":92.93758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567406}],"Text":"to","Confidence":91.93894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57278}],"Text":"historic","Confidence":91.90133},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.75062}],"Text":"04","Confidence":87.8908},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57242}],"Text":"shown","Confidence":86.15503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540665}],"Text":"archives","Confidence":86.08806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57042}],"Text":"analysis","Confidence":85.656456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55907}],"Text":"preview","Confidence":83.90464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.558235}],"Text":"perform","Confidence":83.44391},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57267}],"Text":"model","Confidence":80.705925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56704}],"Text":"or","Confidence":77.61941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56834}],"Text":"formulas","Confidence":77.61941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.64855}],"Text":"ck","Confidence":76.53988},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.01974}],"Text":"efficiercy","Confidence":74.37206},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.03261}],"Text":"nomalised","Confidence":73.04065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47451}],"Text":"cle","Confidence":70.783},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.46839}],"Text":"13","Confidence":68.55748},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":96.04403}],"Text":"higher","Confidence":65.06042},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48619}],"Text":"13","Confidence":64.04744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.23153}],"Text":"ml","Confidence":59.6207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.662994}],"Text":"oo","Confidence":57.38287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.74948}],"Text":"tower","Confidence":56.24634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":94.63304}],"Text":"lout","Confidence":54.537247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":95.19566}],"Text":"name","Confidence":54.27692}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(40%).json index 8240d9e..4b65e12 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574165}],"Text":"analysis","Confidence":97.00685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5722}],"Text":"the","Confidence":97.000916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56779}],"Text":"this","Confidence":96.9745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57442}],"Text":"data","Confidence":96.96554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57266}],"Text":"can","Confidence":96.95731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574646}],"Text":"be","Confidence":96.94944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57137}],"Text":"is","Confidence":96.93587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56111}],"Text":"based","Confidence":96.926605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5705}],"Text":"report","Confidence":96.901245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57461}],"Text":"theme","Confidence":96.87681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55681}],"Text":"that","Confidence":96.86803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56855}],"Text":"class","Confidence":96.8318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56071}],"Text":"efficiency","Confidence":96.81399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56949}],"Text":"on","Confidence":96.80683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57155}],"Text":"hour","Confidence":96.783745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57281}],"Text":"in","Confidence":96.779236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57415}],"Text":"for","Confidence":96.76083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.558136}],"Text":"costs","Confidence":96.75706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57336}],"Text":"defined","Confidence":96.74983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5553}],"Text":"template","Confidence":96.743614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53386}],"Text":"models","Confidence":96.73704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5724}],"Text":"diagram","Confidence":96.70133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52666}],"Text":"templates","Confidence":96.686615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573166}],"Text":"model","Confidence":96.65902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52063}],"Text":"archives","Confidence":96.63246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.53736}],"Text":"historic","Confidence":96.63115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56109}],"Text":"reports","Confidence":96.61173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57472}],"Text":"new","Confidence":96.59697},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.527626}],"Text":"13","Confidence":96.543625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57261}],"Text":"period","Confidence":96.48137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.49302}],"Text":"preview","Confidence":96.381195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55551}],"Text":"formula","Confidence":96.280685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573425}],"Text":"to","Confidence":96.2171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57464}],"Text":"and","Confidence":96.20595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56293}],"Text":"cancel","Confidence":96.20198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57461}],"Text":"processed","Confidence":96.06246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57363}],"Text":"period","Confidence":96.03185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56711}],"Text":"tables","Confidence":95.87492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.571205}],"Text":"groups","Confidence":95.82812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574486}],"Text":"shown","Confidence":95.62314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.26478}],"Text":"lower","Confidence":94.85343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.260025}],"Text":"ok","Confidence":94.82019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.553894}],"Text":"or","Confidence":93.92855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573586}],"Text":"formulas","Confidence":93.92855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.17023}],"Text":"currant","Confidence":93.23854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573364}],"Text":"perform","Confidence":93.17516},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04279}],"Text":"formulas","Confidence":92.84411},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564354}],"Text":"an","Confidence":92.4675},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.038605}],"Text":"cortains","Confidence":91.66186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.78854}],"Text":"nama","Confidence":91.45589},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.50719}],"Text":"04","Confidence":91.3622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50375}],"Text":"equipment","Confidence":90.82011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.74945}],"Text":"name","Confidence":84.24614},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.8843}],"Text":"24","Confidence":84.07159},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.50186}],"Text":"33","Confidence":83.48041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57434}],"Text":"allow","Confidence":83.079834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.00587}],"Text":"higher","Confidence":80.36421},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.03345}],"Text":"valua","Confidence":79.234146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.90403}],"Text":"formula","Confidence":78.32822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.2994}],"Text":"eur","Confidence":77.093704},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"0","Confidence":97.56834}],"Text":"03","Confidence":73.93088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.014435}],"Text":"ass","Confidence":72.10106},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":95.66874}],"Text":"22","Confidence":69.68117},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"G","Confidence":98.008934}],"Text":"g10","Confidence":68.63506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.38414}],"Text":"gio","Confidence":68.21359},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.80803}],"Text":"tuh","Confidence":64.01405},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.17921}],"Text":"15","Confidence":62.657433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.22321}],"Text":"init","Confidence":59.562485},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.95292}],"Text":"02458","Confidence":59.519688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.49637}],"Text":"normalised","Confidence":55.599373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.489296}],"Text":"cur","Confidence":54.42508},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.39072}],"Text":"ciass","Confidence":51.53946},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.73899}],"Text":"imit","Confidence":50.801945},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":93.76752}],"Text":"42","Confidence":50.13118}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574165}],"Text":"analysis","Confidence":97.00685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5722}],"Text":"the","Confidence":97.000916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56779}],"Text":"this","Confidence":96.9745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57442}],"Text":"data","Confidence":96.96554},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57266}],"Text":"can","Confidence":96.95731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.574646}],"Text":"be","Confidence":96.94944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57137}],"Text":"is","Confidence":96.93587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56111}],"Text":"based","Confidence":96.926605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5705}],"Text":"report","Confidence":96.901245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57461}],"Text":"theme","Confidence":96.87681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55681}],"Text":"that","Confidence":96.86803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56855}],"Text":"class","Confidence":96.8318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.56071}],"Text":"efficiency","Confidence":96.81399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56949}],"Text":"on","Confidence":96.80683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57155}],"Text":"hour","Confidence":96.783745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57281}],"Text":"in","Confidence":96.779236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57415}],"Text":"for","Confidence":96.76083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.558136}],"Text":"costs","Confidence":96.75706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57336}],"Text":"defined","Confidence":96.74983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5553}],"Text":"template","Confidence":96.743614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53386}],"Text":"models","Confidence":96.73704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5724}],"Text":"diagram","Confidence":96.70133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52666}],"Text":"templates","Confidence":96.686615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573166}],"Text":"model","Confidence":96.65902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52063}],"Text":"archives","Confidence":96.63246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.53736}],"Text":"historic","Confidence":96.63115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56109}],"Text":"reports","Confidence":96.61173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57472}],"Text":"new","Confidence":96.59697},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.527626}],"Text":"13","Confidence":96.543625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57261}],"Text":"period","Confidence":96.48137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.49302}],"Text":"preview","Confidence":96.381195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55551}],"Text":"formula","Confidence":96.280685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573425}],"Text":"to","Confidence":96.2171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57464}],"Text":"and","Confidence":96.20595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56293}],"Text":"cancel","Confidence":96.20198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57461}],"Text":"processed","Confidence":96.06246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57363}],"Text":"period","Confidence":96.03185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56711}],"Text":"tables","Confidence":95.87492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.571205}],"Text":"groups","Confidence":95.82812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574486}],"Text":"shown","Confidence":95.62314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.26478}],"Text":"lower","Confidence":94.85343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.260025}],"Text":"ok","Confidence":94.82019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.553894}],"Text":"or","Confidence":93.92855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573586}],"Text":"formulas","Confidence":93.92855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.17023}],"Text":"currant","Confidence":93.23854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573364}],"Text":"perform","Confidence":93.17516},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04279}],"Text":"formulas","Confidence":92.84411},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.564354}],"Text":"an","Confidence":92.4675},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.038605}],"Text":"cortains","Confidence":91.66186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":98.78854}],"Text":"nama","Confidence":91.45589},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.50719}],"Text":"04","Confidence":91.3622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.50375}],"Text":"equipment","Confidence":90.82011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.74945}],"Text":"name","Confidence":84.24614},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.8843}],"Text":"24","Confidence":84.07159},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.50186}],"Text":"33","Confidence":83.48041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57434}],"Text":"allow","Confidence":83.079834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.00587}],"Text":"higher","Confidence":80.36421},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":97.03345}],"Text":"valua","Confidence":79.234146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.90403}],"Text":"formula","Confidence":78.32822},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.2994}],"Text":"eur","Confidence":77.093704},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"0","Confidence":97.56834}],"Text":"03","Confidence":73.93088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.014435}],"Text":"ass","Confidence":72.10106},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":95.66874}],"Text":"22","Confidence":69.68117},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"G","Confidence":98.008934}],"Text":"g10","Confidence":68.63506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.38414}],"Text":"gio","Confidence":68.21359},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.80803}],"Text":"tuh","Confidence":64.01405},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.17921}],"Text":"15","Confidence":62.657433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.22321}],"Text":"init","Confidence":59.562485},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":96.95292}],"Text":"02458","Confidence":59.519688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.49637}],"Text":"normalised","Confidence":55.599373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.489296}],"Text":"cur","Confidence":54.42508},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.39072}],"Text":"ciass","Confidence":51.53946},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.73899}],"Text":"imit","Confidence":50.801945},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":93.76752}],"Text":"42","Confidence":50.13118}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(50%).json index 16f0f87..7f58953 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57348}],"Text":"based","Confidence":97.00659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.569}],"Text":"report","Confidence":96.982994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57178}],"Text":"on","Confidence":96.97516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57196}],"Text":"efficiency","Confidence":96.96047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56454}],"Text":"this","Confidence":96.95178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56655}],"Text":"new","Confidence":96.95142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57319}],"Text":"template","Confidence":96.9451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56326}],"Text":"the","Confidence":96.942856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56322}],"Text":"processed","Confidence":96.942505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5743}],"Text":"for","Confidence":96.93818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56234}],"Text":"preview","Confidence":96.936386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56665}],"Text":"that","Confidence":96.9318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572395}],"Text":"class","Confidence":96.93106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56208}],"Text":"or","Confidence":96.93011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5575}],"Text":"groups","Confidence":96.902504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57471}],"Text":"defined","Confidence":96.90161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57493}],"Text":"analysis","Confidence":96.89465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56367}],"Text":"data","Confidence":96.88749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57365}],"Text":"templates","Confidence":96.88656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57333}],"Text":"costs","Confidence":96.87968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56243}],"Text":"diagram","Confidence":96.86356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.549805}],"Text":"theme","Confidence":96.84862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57061}],"Text":"and","Confidence":96.84813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.547195}],"Text":"can","Confidence":96.826256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57404}],"Text":"shown","Confidence":96.82572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570175}],"Text":"formulas","Confidence":96.80875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57342}],"Text":"formulas","Confidence":96.69736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57404}],"Text":"be","Confidence":96.654015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55542}],"Text":"formula","Confidence":96.61967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56459}],"Text":"in","Confidence":96.50273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5009}],"Text":"contains","Confidence":96.49761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56225}],"Text":"period","Confidence":96.45499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52677}],"Text":"an","Confidence":96.35992},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5611}],"Text":"reports","Confidence":96.31431},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.5408}],"Text":"13","Confidence":96.29159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55172}],"Text":"is","Confidence":96.279434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56675}],"Text":"archives","Confidence":96.218445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57151}],"Text":"perform","Confidence":96.20911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.565994}],"Text":"equipment","Confidence":96.1483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57391}],"Text":"to","Confidence":96.032936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.553894}],"Text":"tables","Confidence":95.88926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56553}],"Text":"allow","Confidence":95.85192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57334}],"Text":"period","Confidence":95.83092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56225}],"Text":"eur","Confidence":95.26539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.49755}],"Text":"hour","Confidence":95.191216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57168}],"Text":"models","Confidence":94.864235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55465}],"Text":"historic","Confidence":94.472855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.24968}],"Text":"lower","Confidence":93.27477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55547}],"Text":"normalised","Confidence":92.88435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57095}],"Text":"model","Confidence":92.66363},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.448586}],"Text":"35","Confidence":84.77826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.7905}],"Text":"te","Confidence":84.53346},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.5313}],"Text":"eua","Confidence":82.79576},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.43503}],"Text":"04","Confidence":82.04518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.246475}],"Text":"name","Confidence":80.72534},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.3508}],"Text":"1b","Confidence":79.869644},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.721405}],"Text":"24","Confidence":77.04981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.19403}],"Text":"namo","Confidence":76.17374},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.78776}],"Text":"dideur","Confidence":75.94206},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.370346}],"Text":"03","Confidence":74.71777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47274}],"Text":"chess","Confidence":73.97538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.36481}],"Text":"cur","Confidence":73.557556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.31983}],"Text":"16","Confidence":72.858826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.236496}],"Text":"conc","Confidence":70.74024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.764694}],"Text":"higher","Confidence":70.35284},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u20AC","Confidence":98.345436}],"Text":"ur","Confidence":67.037964},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":95.23465}],"Text":"24","Confidence":66.64255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.009964}],"Text":"valua","Confidence":65.06977},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.94064}],"Text":"16","Confidence":64.5845},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.0345}],"Text":"32","Confidence":64.326515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.504105}],"Text":"den","Confidence":64.294815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":94.80021}],"Text":"rua","Confidence":63.60147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.76372}],"Text":"tans","Confidence":63.34604},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"7","Confidence":94.68256}],"Text":"74","Confidence":62.77797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.700745}],"Text":"far","Confidence":57.599686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.73067}],"Text":"fett","Confidence":56.114677},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.712135}],"Text":"16","Confidence":55.984955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.32976}],"Text":"bit","Confidence":55.043087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":93.26599}],"Text":"32","Confidence":52.861935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.227356}],"Text":"tmceecy","Confidence":52.591473},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":93.02239}],"Text":"40","Confidence":51.156734},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":94.99391}],"Text":"uaast","Confidence":50.63411}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57348}],"Text":"based","Confidence":97.00659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.569}],"Text":"report","Confidence":96.982994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57178}],"Text":"on","Confidence":96.97516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57196}],"Text":"efficiency","Confidence":96.96047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56454}],"Text":"this","Confidence":96.95178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56655}],"Text":"new","Confidence":96.95142},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57319}],"Text":"template","Confidence":96.9451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56326}],"Text":"the","Confidence":96.942856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56322}],"Text":"processed","Confidence":96.942505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5743}],"Text":"for","Confidence":96.93818},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56234}],"Text":"preview","Confidence":96.936386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56665}],"Text":"that","Confidence":96.9318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572395}],"Text":"class","Confidence":96.93106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56208}],"Text":"or","Confidence":96.93011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5575}],"Text":"groups","Confidence":96.902504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57471}],"Text":"defined","Confidence":96.90161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57493}],"Text":"analysis","Confidence":96.89465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56367}],"Text":"data","Confidence":96.88749},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57365}],"Text":"templates","Confidence":96.88656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57333}],"Text":"costs","Confidence":96.87968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56243}],"Text":"diagram","Confidence":96.86356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.549805}],"Text":"theme","Confidence":96.84862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57061}],"Text":"and","Confidence":96.84813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.547195}],"Text":"can","Confidence":96.826256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57404}],"Text":"shown","Confidence":96.82572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.570175}],"Text":"formulas","Confidence":96.80875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57342}],"Text":"formulas","Confidence":96.69736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57404}],"Text":"be","Confidence":96.654015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.55542}],"Text":"formula","Confidence":96.61967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56459}],"Text":"in","Confidence":96.50273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5009}],"Text":"contains","Confidence":96.49761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56225}],"Text":"period","Confidence":96.45499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52677}],"Text":"an","Confidence":96.35992},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5611}],"Text":"reports","Confidence":96.31431},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.5408}],"Text":"13","Confidence":96.29159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55172}],"Text":"is","Confidence":96.279434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56675}],"Text":"archives","Confidence":96.218445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57151}],"Text":"perform","Confidence":96.20911},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.565994}],"Text":"equipment","Confidence":96.1483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57391}],"Text":"to","Confidence":96.032936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.553894}],"Text":"tables","Confidence":95.88926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56553}],"Text":"allow","Confidence":95.85192},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57334}],"Text":"period","Confidence":95.83092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56225}],"Text":"eur","Confidence":95.26539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.49755}],"Text":"hour","Confidence":95.191216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57168}],"Text":"models","Confidence":94.864235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55465}],"Text":"historic","Confidence":94.472855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.24968}],"Text":"lower","Confidence":93.27477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.55547}],"Text":"normalised","Confidence":92.88435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57095}],"Text":"model","Confidence":92.66363},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.448586}],"Text":"35","Confidence":84.77826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.7905}],"Text":"te","Confidence":84.53346},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.5313}],"Text":"eua","Confidence":82.79576},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.43503}],"Text":"04","Confidence":82.04518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":97.246475}],"Text":"name","Confidence":80.72534},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.3508}],"Text":"1b","Confidence":79.869644},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.721405}],"Text":"24","Confidence":77.04981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.19403}],"Text":"namo","Confidence":76.17374},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.78776}],"Text":"dideur","Confidence":75.94206},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.370346}],"Text":"03","Confidence":74.71777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47274}],"Text":"chess","Confidence":73.97538},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.36481}],"Text":"cur","Confidence":73.557556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.31983}],"Text":"16","Confidence":72.858826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":96.236496}],"Text":"conc","Confidence":70.74024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.764694}],"Text":"higher","Confidence":70.35284},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u20AC","Confidence":98.345436}],"Text":"ur","Confidence":67.037964},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":95.23465}],"Text":"24","Confidence":66.64255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.009964}],"Text":"valua","Confidence":65.06977},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":94.94064}],"Text":"16","Confidence":64.5845},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.0345}],"Text":"32","Confidence":64.326515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.504105}],"Text":"den","Confidence":64.294815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":94.80021}],"Text":"rua","Confidence":63.60147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.76372}],"Text":"tans","Confidence":63.34604},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"7","Confidence":94.68256}],"Text":"74","Confidence":62.77797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.700745}],"Text":"far","Confidence":57.599686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":93.73067}],"Text":"fett","Confidence":56.114677},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":93.712135}],"Text":"16","Confidence":55.984955},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.32976}],"Text":"bit","Confidence":55.043087},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":93.26599}],"Text":"32","Confidence":52.861935},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.227356}],"Text":"tmceecy","Confidence":52.591473},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":93.02239}],"Text":"40","Confidence":51.156734},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":94.99391}],"Text":"uaast","Confidence":50.63411}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(70%).json index f551ea4..d006685 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57464}],"Text":"the","Confidence":96.9745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57239}],"Text":"class","Confidence":96.97216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.569885}],"Text":"on","Confidence":96.9378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56653}],"Text":"defined","Confidence":96.93315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56585}],"Text":"this","Confidence":96.91295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55842}],"Text":"in","Confidence":96.90895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5742}],"Text":"analysis","Confidence":96.90889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56715}],"Text":"based","Confidence":96.898994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55807}],"Text":"can","Confidence":96.884125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5563}],"Text":"period","Confidence":96.88181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56555}],"Text":"perform","Confidence":96.86989},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55276}],"Text":"be","Confidence":96.869286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.570435}],"Text":"model","Confidence":96.85776},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56199}],"Text":"13","Confidence":96.82712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57271}],"Text":"data","Confidence":96.819115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57423}],"Text":"theme","Confidence":96.76662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5618}],"Text":"to","Confidence":96.72738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57139}],"Text":"reports","Confidence":96.72238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.528915}],"Text":"preview","Confidence":96.702415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57378}],"Text":"shown","Confidence":96.7005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.555595}],"Text":"formula","Confidence":96.69311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57169}],"Text":"report","Confidence":96.6869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56474}],"Text":"processed","Confidence":96.66574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.51738}],"Text":"hour","Confidence":96.62164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57211}],"Text":"contains","Confidence":96.560295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57429}],"Text":"that","Confidence":96.52641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573555}],"Text":"models","Confidence":96.39058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.52397}],"Text":"efficiency","Confidence":96.384674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57429}],"Text":"costs","Confidence":96.36631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56722}],"Text":"tables","Confidence":96.351685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.572876}],"Text":"historic","Confidence":96.265495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.444435}],"Text":"or","Confidence":96.11103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574165}],"Text":"for","Confidence":96.09566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56839}],"Text":"diagram","Confidence":95.98914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53651}],"Text":"and","Confidence":95.98914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573}],"Text":"formulas","Confidence":95.70968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5407}],"Text":"is","Confidence":95.08622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57107}],"Text":"groups","Confidence":94.98114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571014}],"Text":"an","Confidence":94.62887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.545456}],"Text":"template","Confidence":94.55038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.566315}],"Text":"equipment","Confidence":94.09716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574875}],"Text":"archives","Confidence":94.05799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56039}],"Text":"templates","Confidence":93.50201},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.85114}],"Text":"04","Confidence":91.957985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"period","Confidence":91.69759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5721}],"Text":"allow","Confidence":89.640465},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.03749}],"Text":"formulas","Confidence":89.03643},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.43691}],"Text":"03","Confidence":88.39774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.84588}],"Text":"te","Confidence":84.92116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03269}],"Text":"mom","Confidence":76.54355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.85048}],"Text":"pree","Confidence":63.953365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.434906}],"Text":"cuss","Confidence":58.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.071}],"Text":"fen","Confidence":54.279007}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57464}],"Text":"the","Confidence":96.9745},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57239}],"Text":"class","Confidence":96.97216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.569885}],"Text":"on","Confidence":96.9378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56653}],"Text":"defined","Confidence":96.93315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56585}],"Text":"this","Confidence":96.91295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55842}],"Text":"in","Confidence":96.90895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5742}],"Text":"analysis","Confidence":96.90889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56715}],"Text":"based","Confidence":96.898994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55807}],"Text":"can","Confidence":96.884125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5563}],"Text":"period","Confidence":96.88181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56555}],"Text":"perform","Confidence":96.86989},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.55276}],"Text":"be","Confidence":96.869286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.570435}],"Text":"model","Confidence":96.85776},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56199}],"Text":"13","Confidence":96.82712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57271}],"Text":"data","Confidence":96.819115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57423}],"Text":"theme","Confidence":96.76662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5618}],"Text":"to","Confidence":96.72738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57139}],"Text":"reports","Confidence":96.72238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.528915}],"Text":"preview","Confidence":96.702415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57378}],"Text":"shown","Confidence":96.7005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.555595}],"Text":"formula","Confidence":96.69311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57169}],"Text":"report","Confidence":96.6869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56474}],"Text":"processed","Confidence":96.66574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.51738}],"Text":"hour","Confidence":96.62164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57211}],"Text":"contains","Confidence":96.560295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57429}],"Text":"that","Confidence":96.52641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573555}],"Text":"models","Confidence":96.39058},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.52397}],"Text":"efficiency","Confidence":96.384674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57429}],"Text":"costs","Confidence":96.36631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56722}],"Text":"tables","Confidence":96.351685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.572876}],"Text":"historic","Confidence":96.265495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.444435}],"Text":"or","Confidence":96.11103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574165}],"Text":"for","Confidence":96.09566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56839}],"Text":"diagram","Confidence":95.98914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53651}],"Text":"and","Confidence":95.98914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573}],"Text":"formulas","Confidence":95.70968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5407}],"Text":"is","Confidence":95.08622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57107}],"Text":"groups","Confidence":94.98114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571014}],"Text":"an","Confidence":94.62887},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.545456}],"Text":"template","Confidence":94.55038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.566315}],"Text":"equipment","Confidence":94.09716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574875}],"Text":"archives","Confidence":94.05799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56039}],"Text":"templates","Confidence":93.50201},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.85114}],"Text":"04","Confidence":91.957985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"period","Confidence":91.69759},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5721}],"Text":"allow","Confidence":89.640465},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.03749}],"Text":"formulas","Confidence":89.03643},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.43691}],"Text":"03","Confidence":88.39774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.84588}],"Text":"te","Confidence":84.92116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03269}],"Text":"mom","Confidence":76.54355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":94.85048}],"Text":"pree","Confidence":63.953365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.434906}],"Text":"cuss","Confidence":58.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":95.071}],"Text":"fen","Confidence":54.279007}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(80%).json index 059ee57..d026a52 100644 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.567924}],"Text":"based","Confidence":96.9617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57342}],"Text":"reports","Confidence":96.91137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55645}],"Text":"model","Confidence":96.89514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567665}],"Text":"on","Confidence":96.86104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5726}],"Text":"templates","Confidence":96.85517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573715}],"Text":"that","Confidence":96.85517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57372}],"Text":"the","Confidence":96.81386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.562675}],"Text":"in","Confidence":96.81386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.542206}],"Text":"this","Confidence":96.7917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574394}],"Text":"for","Confidence":96.78747},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57239}],"Text":"analysis","Confidence":96.784676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57348}],"Text":"template","Confidence":96.767105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57198}],"Text":"report","Confidence":96.73828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.549736}],"Text":"and","Confidence":96.68878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5742}],"Text":"costs","Confidence":96.65277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54611}],"Text":"period","Confidence":96.63239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56139}],"Text":"historic","Confidence":96.62846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50936}],"Text":"theme","Confidence":96.565544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.504166}],"Text":"is","Confidence":96.529175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574776}],"Text":"class","Confidence":96.49811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55057}],"Text":"an","Confidence":96.491776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.502144}],"Text":"preview","Confidence":96.46905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574036}],"Text":"efficiency","Confidence":96.42625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57042}],"Text":"defined","Confidence":96.4159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.48704}],"Text":"hour","Confidence":96.40928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56905}],"Text":"formula","Confidence":96.27625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57416}],"Text":"data","Confidence":96.24752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55039}],"Text":"perform","Confidence":96.18513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56257}],"Text":"contains","Confidence":95.98489},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573784}],"Text":"13","Confidence":95.97551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54192}],"Text":"formulas","Confidence":95.60592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54767}],"Text":"groups","Confidence":95.47271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54459}],"Text":"can","Confidence":95.3795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54332}],"Text":"archi","Confidence":95.12095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57379}],"Text":"models","Confidence":95.096375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571785}],"Text":"allow","Confidence":95.01648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57416}],"Text":"period","Confidence":94.80095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55903}],"Text":"to","Confidence":92.42638},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.61804}],"Text":"04","Confidence":90.326294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.565544}],"Text":"or","Confidence":88.70664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57108}],"Text":"be","Confidence":88.54454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56455}],"Text":"shown","Confidence":88.54454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56666}],"Text":"canbe","Confidence":85.464966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.464935}],"Text":"inefficiency","Confidence":84.01708},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.8785}],"Text":"03","Confidence":82.874855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.06003}],"Text":"of","Confidence":82.37614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201E","Confidence":96.441086}],"Text":"the","Confidence":75.08758},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.265526}],"Text":"ormul","Confidence":59.858696}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.567924}],"Text":"based","Confidence":96.9617},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57342}],"Text":"reports","Confidence":96.91137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55645}],"Text":"model","Confidence":96.89514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.567665}],"Text":"on","Confidence":96.86104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5726}],"Text":"templates","Confidence":96.85517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573715}],"Text":"that","Confidence":96.85517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57372}],"Text":"the","Confidence":96.81386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.562675}],"Text":"in","Confidence":96.81386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.542206}],"Text":"this","Confidence":96.7917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574394}],"Text":"for","Confidence":96.78747},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57239}],"Text":"analysis","Confidence":96.784676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57348}],"Text":"template","Confidence":96.767105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57198}],"Text":"report","Confidence":96.73828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.549736}],"Text":"and","Confidence":96.68878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5742}],"Text":"costs","Confidence":96.65277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54611}],"Text":"period","Confidence":96.63239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56139}],"Text":"historic","Confidence":96.62846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50936}],"Text":"theme","Confidence":96.565544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.504166}],"Text":"is","Confidence":96.529175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574776}],"Text":"class","Confidence":96.49811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55057}],"Text":"an","Confidence":96.491776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.502144}],"Text":"preview","Confidence":96.46905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574036}],"Text":"efficiency","Confidence":96.42625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57042}],"Text":"defined","Confidence":96.4159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.48704}],"Text":"hour","Confidence":96.40928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56905}],"Text":"formula","Confidence":96.27625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57416}],"Text":"data","Confidence":96.24752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55039}],"Text":"perform","Confidence":96.18513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56257}],"Text":"contains","Confidence":95.98489},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.573784}],"Text":"13","Confidence":95.97551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54192}],"Text":"formulas","Confidence":95.60592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54767}],"Text":"groups","Confidence":95.47271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54459}],"Text":"can","Confidence":95.3795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54332}],"Text":"archi","Confidence":95.12095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57379}],"Text":"models","Confidence":95.096375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571785}],"Text":"allow","Confidence":95.01648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57416}],"Text":"period","Confidence":94.80095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55903}],"Text":"to","Confidence":92.42638},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.61804}],"Text":"04","Confidence":90.326294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.565544}],"Text":"or","Confidence":88.70664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57108}],"Text":"be","Confidence":88.54454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56455}],"Text":"shown","Confidence":88.54454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56666}],"Text":"canbe","Confidence":85.464966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.464935}],"Text":"inefficiency","Confidence":84.01708},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.8785}],"Text":"03","Confidence":82.874855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.06003}],"Text":"of","Confidence":82.37614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201E","Confidence":96.441086}],"Text":"the","Confidence":75.08758},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.265526}],"Text":"ormul","Confidence":59.858696}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(90%).json deleted file mode 100644 index cec7e84..0000000 --- a/Examples/testdata/results/zrs_REPORTS_EfficencyClass_009.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04153}],"Text":"peseq","Confidence":74.81377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.059746}],"Text":"poo","Confidence":72.47576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.64976}],"Text":"leo","Confidence":66.50398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"U","Confidence":95.06243}],"Text":"ue","Confidence":65.43704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.45118}],"Text":"ad","Confidence":65.394135},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":94.50591}],"Text":"ssep","Confidence":61.54139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.444916}],"Text":"more","Confidence":58.76934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":94.011116}],"Text":"odes","Confidence":58.07783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":94.37631}],"Text":"sey","Confidence":56.682606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":93.95654}],"Text":"bp","Confidence":56.612556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.32078}],"Text":"su","Confidence":53.245438},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"u","Confidence":97.21098}],"Text":"umuuod","Confidence":52.346977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"J","Confidence":98.18734}],"Text":"jo","Confidence":50.762367},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.59819}],"Text":"poped","Confidence":50.21757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.65713}],"Text":"eur","Confidence":50.009895}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Kapur).json index 3f680a1..480f3b4 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573524}],"Text":"data","Confidence":96.990845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57432}],"Text":"standard","Confidence":96.970436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5734}],"Text":"the","Confidence":96.95139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56516}],"Text":"create","Confidence":96.941315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56957}],"Text":"that","Confidence":96.93713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570274}],"Text":"of","Confidence":96.9052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565094}],"Text":"types","Confidence":96.9052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57249}],"Text":"two","Confidence":96.904854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57453}],"Text":"for","Confidence":96.89825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57259}],"Text":"and","Confidence":96.87086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574814}],"Text":"cyclic","Confidence":96.86449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573044}],"Text":"those","Confidence":96.83427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57435}],"Text":"this","Confidence":96.83283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.546074}],"Text":"analysis","Confidence":96.82251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57023}],"Text":"packer","Confidence":96.814735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57491}],"Text":"price","Confidence":96.79981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57295}],"Text":"is","Confidence":96.76871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56919}],"Text":"trend","Confidence":96.768036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53751}],"Text":"shown","Confidence":96.76262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.53668}],"Text":"machine","Confidence":96.756775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.549416}],"Text":"template","Confidence":96.746346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56939}],"Text":"relative","Confidence":96.725525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56852}],"Text":"historian","Confidence":96.65564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53909}],"Text":"report","Confidence":96.651505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.547905}],"Text":"based","Confidence":96.64777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52102}],"Text":"in","Confidence":96.64713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56907}],"Text":"theme","Confidence":96.64198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51988}],"Text":"preview","Confidence":96.63918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54418}],"Text":"pm","Confidence":96.638985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569466}],"Text":"theme","Confidence":96.63204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5185}],"Text":"reports","Confidence":96.62952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57376}],"Text":"calculate","Confidence":96.6286},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57344}],"Text":"07","Confidence":96.60774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571045}],"Text":"are","Confidence":96.55919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52521}],"Text":"values","Confidence":96.555534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57358}],"Text":"new","Confidence":96.4641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573395}],"Text":"aggregation","Confidence":96.425064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56579}],"Text":"with","Confidence":96.3209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"production","Confidence":96.29501},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.482414}],"Text":"07","Confidence":96.22077},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57068}],"Text":"on","Confidence":96.11665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57374}],"Text":"group","Confidence":96.10811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.45719}],"Text":"equipment","Confidence":96.05084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.518036}],"Text":"groups","Confidence":96.04684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.553795}],"Text":"templates","Confidence":95.74029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.33356}],"Text":"there","Confidence":95.3349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57409}],"Text":"tables","Confidence":95.31543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57425}],"Text":"selection","Confidence":95.2671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57436}],"Text":"data","Confidence":94.795784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57284}],"Text":"values","Confidence":94.58105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57447}],"Text":"period","Confidence":94.557846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57234}],"Text":"modeling","Confidence":94.44375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57376}],"Text":"filler","Confidence":94.315056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55463}],"Text":"variable","Confidence":93.30216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56257}],"Text":"extended","Confidence":93.245255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.564674}],"Text":"distribution","Confidence":93.15353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57415}],"Text":"perform","Confidence":93.04098},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03924}],"Text":"aggregated","Confidence":92.34769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.36815}],"Text":"name","Confidence":91.80752},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.821526}],"Text":"10","Confidence":91.75067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49365}],"Text":"charts","Confidence":91.23808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572655}],"Text":"counters","Confidence":91.23597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.99901}],"Text":"equipmert","Confidence":90.49659},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.769295}],"Text":"zad_gbl","Confidence":88.99443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573235}],"Text":"fitter","Confidence":87.64079},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.81898}],"Text":"ok","Confidence":77.73282},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.428055}],"Text":"filtering","Confidence":74.91749},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.02873}],"Text":"labeller","Confidence":73.18083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.93131}],"Text":"al","Confidence":61.98575},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.35992}],"Text":"commampton","Confidence":56.442047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":93.98748}],"Text":"wan","Confidence":52.914497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.54833}],"Text":"cancel","Confidence":51.513916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48984}],"Text":"reve","Confidence":51.01217}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573524}],"Text":"data","Confidence":96.990845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57432}],"Text":"standard","Confidence":96.970436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5734}],"Text":"the","Confidence":96.95139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56516}],"Text":"create","Confidence":96.941315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56957}],"Text":"that","Confidence":96.93713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570274}],"Text":"of","Confidence":96.9052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565094}],"Text":"types","Confidence":96.9052},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57249}],"Text":"two","Confidence":96.904854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57453}],"Text":"for","Confidence":96.89825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57259}],"Text":"and","Confidence":96.87086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574814}],"Text":"cyclic","Confidence":96.86449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573044}],"Text":"those","Confidence":96.83427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57435}],"Text":"this","Confidence":96.83283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.546074}],"Text":"analysis","Confidence":96.82251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57023}],"Text":"packer","Confidence":96.814735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57491}],"Text":"price","Confidence":96.79981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57295}],"Text":"is","Confidence":96.76871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56919}],"Text":"trend","Confidence":96.768036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53751}],"Text":"shown","Confidence":96.76262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.53668}],"Text":"machine","Confidence":96.756775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.549416}],"Text":"template","Confidence":96.746346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56939}],"Text":"relative","Confidence":96.725525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56852}],"Text":"historian","Confidence":96.65564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53909}],"Text":"report","Confidence":96.651505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.547905}],"Text":"based","Confidence":96.64777},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52102}],"Text":"in","Confidence":96.64713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56907}],"Text":"theme","Confidence":96.64198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51988}],"Text":"preview","Confidence":96.63918},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54418}],"Text":"pm","Confidence":96.638985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569466}],"Text":"theme","Confidence":96.63204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5185}],"Text":"reports","Confidence":96.62952},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57376}],"Text":"calculate","Confidence":96.6286},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57344}],"Text":"07","Confidence":96.60774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.571045}],"Text":"are","Confidence":96.55919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.52521}],"Text":"values","Confidence":96.555534},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57358}],"Text":"new","Confidence":96.4641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573395}],"Text":"aggregation","Confidence":96.425064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56579}],"Text":"with","Confidence":96.3209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"production","Confidence":96.29501},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.482414}],"Text":"07","Confidence":96.22077},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57068}],"Text":"on","Confidence":96.11665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57374}],"Text":"group","Confidence":96.10811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.45719}],"Text":"equipment","Confidence":96.05084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.518036}],"Text":"groups","Confidence":96.04684},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.553795}],"Text":"templates","Confidence":95.74029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.33356}],"Text":"there","Confidence":95.3349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57409}],"Text":"tables","Confidence":95.31543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57425}],"Text":"selection","Confidence":95.2671},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57436}],"Text":"data","Confidence":94.795784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57284}],"Text":"values","Confidence":94.58105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57447}],"Text":"period","Confidence":94.557846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57234}],"Text":"modeling","Confidence":94.44375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57376}],"Text":"filler","Confidence":94.315056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55463}],"Text":"variable","Confidence":93.30216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56257}],"Text":"extended","Confidence":93.245255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.564674}],"Text":"distribution","Confidence":93.15353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57415}],"Text":"perform","Confidence":93.04098},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.03924}],"Text":"aggregated","Confidence":92.34769},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.36815}],"Text":"name","Confidence":91.80752},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.821526}],"Text":"10","Confidence":91.75067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49365}],"Text":"charts","Confidence":91.23808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572655}],"Text":"counters","Confidence":91.23597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.99901}],"Text":"equipmert","Confidence":90.49659},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.769295}],"Text":"zad_gbl","Confidence":88.99443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.573235}],"Text":"fitter","Confidence":87.64079},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.81898}],"Text":"ok","Confidence":77.73282},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.428055}],"Text":"filtering","Confidence":74.91749},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.02873}],"Text":"labeller","Confidence":73.18083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.93131}],"Text":"al","Confidence":61.98575},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.35992}],"Text":"commampton","Confidence":56.442047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":93.98748}],"Text":"wan","Confidence":52.914497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.54833}],"Text":"cancel","Confidence":51.513916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48984}],"Text":"reve","Confidence":51.01217}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(OTSU).json index 3ff5541..217f582 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57406}],"Text":"of","Confidence":96.98223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56581}],"Text":"on","Confidence":96.96069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57412}],"Text":"create","Confidence":96.93394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56089}],"Text":"data","Confidence":96.92621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57444}],"Text":"cyclic","Confidence":96.92602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574715}],"Text":"and","Confidence":96.9256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570694}],"Text":"based","Confidence":96.915634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57402}],"Text":"that","Confidence":96.90923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57369}],"Text":"machine","Confidence":96.8433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572334}],"Text":"two","Confidence":96.841415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57108}],"Text":"theme","Confidence":96.752304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.565155}],"Text":"with","Confidence":96.72314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55385}],"Text":"aggregated","Confidence":96.71119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54073}],"Text":"analysis","Confidence":96.70625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54793}],"Text":"reports","Confidence":96.65451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.535805}],"Text":"is","Confidence":96.64267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.51535}],"Text":"group","Confidence":96.60743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57423}],"Text":"for","Confidence":96.603035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57342}],"Text":"standard","Confidence":96.5943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.51049}],"Text":"the","Confidence":96.57342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.563446}],"Text":"packer","Confidence":96.56694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56571}],"Text":"those","Confidence":96.53888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54196}],"Text":"equipment","Confidence":96.47563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56478}],"Text":"groups","Confidence":96.46716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51902}],"Text":"trend","Confidence":96.44545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56713}],"Text":"pm","Confidence":96.3901},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.572426}],"Text":"07","Confidence":96.3901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5498}],"Text":"theme","Confidence":96.32001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56258}],"Text":"report","Confidence":96.19694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57151}],"Text":"variable","Confidence":96.17945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56961}],"Text":"this","Confidence":96.096794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570076}],"Text":"data","Confidence":96.09295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56753}],"Text":"templates","Confidence":96.02445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5714}],"Text":"aggregation","Confidence":96.02098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54588}],"Text":"shown","Confidence":95.97248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573074}],"Text":"values","Confidence":95.85059},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5548}],"Text":"production","Confidence":95.784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49303}],"Text":"types","Confidence":95.31137},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57036}],"Text":"07","Confidence":95.27533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57204}],"Text":"historian","Confidence":95.26578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57367}],"Text":"tables","Confidence":95.064186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.27206}],"Text":"in","Confidence":94.9044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.29318}],"Text":"counters","Confidence":94.80016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57321}],"Text":"template","Confidence":94.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.412674}],"Text":"values","Confidence":94.346855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56998}],"Text":"price","Confidence":94.05308},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.41766}],"Text":"10","Confidence":93.78693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573875}],"Text":"distribution","Confidence":93.36787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.480675}],"Text":"extended","Confidence":93.30209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573586}],"Text":"relative","Confidence":93.28874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57351}],"Text":"perform","Confidence":93.26371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55754}],"Text":"calculate","Confidence":91.63638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572624}],"Text":"filler","Confidence":91.5326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573425}],"Text":"are","Confidence":90.5512},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.040634}],"Text":"modeling","Confidence":90.26672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.55264}],"Text":"there","Confidence":89.868515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5145}],"Text":"selection","Confidence":86.83988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57451}],"Text":"associate","Confidence":85.830574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04145}],"Text":"fitering","Confidence":84.8409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572}],"Text":"charts","Confidence":84.64018},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.01535}],"Text":"fikering","Confidence":81.91687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5665}],"Text":"period","Confidence":79.16071},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.8993}],"Text":"zad_gblsenergy","Confidence":74.07182},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.7773}],"Text":"10772016","Confidence":68.343445},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.57568}],"Text":"zad_gbloenergy","Confidence":54.353645}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57406}],"Text":"of","Confidence":96.98223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56581}],"Text":"on","Confidence":96.96069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57412}],"Text":"create","Confidence":96.93394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56089}],"Text":"data","Confidence":96.92621},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57444}],"Text":"cyclic","Confidence":96.92602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574715}],"Text":"and","Confidence":96.9256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570694}],"Text":"based","Confidence":96.915634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57402}],"Text":"that","Confidence":96.90923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57369}],"Text":"machine","Confidence":96.8433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572334}],"Text":"two","Confidence":96.841415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57108}],"Text":"theme","Confidence":96.752304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.565155}],"Text":"with","Confidence":96.72314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55385}],"Text":"aggregated","Confidence":96.71119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54073}],"Text":"analysis","Confidence":96.70625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54793}],"Text":"reports","Confidence":96.65451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.535805}],"Text":"is","Confidence":96.64267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.51535}],"Text":"group","Confidence":96.60743},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57423}],"Text":"for","Confidence":96.603035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57342}],"Text":"standard","Confidence":96.5943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.51049}],"Text":"the","Confidence":96.57342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.563446}],"Text":"packer","Confidence":96.56694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56571}],"Text":"those","Confidence":96.53888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54196}],"Text":"equipment","Confidence":96.47563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56478}],"Text":"groups","Confidence":96.46716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51902}],"Text":"trend","Confidence":96.44545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56713}],"Text":"pm","Confidence":96.3901},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.572426}],"Text":"07","Confidence":96.3901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5498}],"Text":"theme","Confidence":96.32001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56258}],"Text":"report","Confidence":96.19694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57151}],"Text":"variable","Confidence":96.17945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56961}],"Text":"this","Confidence":96.096794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570076}],"Text":"data","Confidence":96.09295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56753}],"Text":"templates","Confidence":96.02445},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5714}],"Text":"aggregation","Confidence":96.02098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54588}],"Text":"shown","Confidence":95.97248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573074}],"Text":"values","Confidence":95.85059},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5548}],"Text":"production","Confidence":95.784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49303}],"Text":"types","Confidence":95.31137},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57036}],"Text":"07","Confidence":95.27533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57204}],"Text":"historian","Confidence":95.26578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57367}],"Text":"tables","Confidence":95.064186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.27206}],"Text":"in","Confidence":94.9044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.29318}],"Text":"counters","Confidence":94.80016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57321}],"Text":"template","Confidence":94.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.412674}],"Text":"values","Confidence":94.346855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56998}],"Text":"price","Confidence":94.05308},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.41766}],"Text":"10","Confidence":93.78693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573875}],"Text":"distribution","Confidence":93.36787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.480675}],"Text":"extended","Confidence":93.30209},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573586}],"Text":"relative","Confidence":93.28874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57351}],"Text":"perform","Confidence":93.26371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55754}],"Text":"calculate","Confidence":91.63638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.572624}],"Text":"filler","Confidence":91.5326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573425}],"Text":"are","Confidence":90.5512},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.040634}],"Text":"modeling","Confidence":90.26672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.55264}],"Text":"there","Confidence":89.868515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5145}],"Text":"selection","Confidence":86.83988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57451}],"Text":"associate","Confidence":85.830574},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04145}],"Text":"fitering","Confidence":84.8409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572}],"Text":"charts","Confidence":84.64018},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.01535}],"Text":"fikering","Confidence":81.91687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5665}],"Text":"period","Confidence":79.16071},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.8993}],"Text":"zad_gblsenergy","Confidence":74.07182},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":95.7773}],"Text":"10772016","Confidence":68.343445},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.57568}],"Text":"zad_gbloenergy","Confidence":54.353645}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(04_04).json index 2ecec6d..d464137 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":99.17151}],"Text":"report","Confidence":89.45263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.390175}],"Text":"template","Confidence":89.45263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.428}],"Text":"based","Confidence":79.191505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.21215}],"Text":"this","Confidence":75.18652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.329895}],"Text":"cyclic","Confidence":74.23711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54436}],"Text":"data","Confidence":74.23711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56981}],"Text":"machine","Confidence":73.662155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.611275}],"Text":"of","Confidence":73.073425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.9299}],"Text":"cycincidata","Confidence":71.52123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":95.382866}],"Text":"variable","Confidence":67.680084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44149}],"Text":"trend","Confidence":61.216873}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":99.17151}],"Text":"report","Confidence":89.45263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.390175}],"Text":"template","Confidence":89.45263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.428}],"Text":"based","Confidence":79.191505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.21215}],"Text":"this","Confidence":75.18652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.329895}],"Text":"cyclic","Confidence":74.23711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54436}],"Text":"data","Confidence":74.23711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56981}],"Text":"machine","Confidence":73.662155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":96.611275}],"Text":"of","Confidence":73.073425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.9299}],"Text":"cycincidata","Confidence":71.52123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":95.382866}],"Text":"variable","Confidence":67.680084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44149}],"Text":"trend","Confidence":61.216873}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 7fbb073..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5283}],"Text":"the","Confidence":96.6981},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56429}],"Text":"theme","Confidence":96.35815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57465}],"Text":"report","Confidence":95.90127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572876}],"Text":"template","Confidence":95.65898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57354}],"Text":"per","Confidence":94.12151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.569786}],"Text":"product","Confidence":92.62899},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.796196}],"Text":"fand","Confidence":89.78912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54449}],"Text":"cyclic","Confidence":89.37337},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.08705}],"Text":"price","Confidence":88.81076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572296}],"Text":"those","Confidence":87.183846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.41342}],"Text":"that","Confidence":87.06882},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.60435}],"Text":"is\u0027shown","Confidence":84.985535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.43854}],"Text":"historian","Confidence":84.53003},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.74049}],"Text":"and","Confidence":84.18345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.87615}],"Text":"of","Confidence":82.189804},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.85407}],"Text":"datajand","Confidence":82.04536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.33031}],"Text":"machine","Confidence":81.312126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.31238}],"Text":"they","Confidence":81.186615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.155426}],"Text":"create","Confidence":80.08797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55582}],"Text":"hose","Confidence":77.38226},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.79665}],"Text":"emplates","Confidence":75.68723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.4082}],"Text":"this","Confidence":74.85744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.77686}],"Text":"two","Confidence":74.092026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.2272}],"Text":"create","Confidence":73.59041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.71124}],"Text":"perform","Confidence":73.346924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":96.240875}],"Text":"lab","Confidence":73.12439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.41632}],"Text":"of","Confidence":72.40731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.28042}],"Text":"values","Confidence":70.37645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57086}],"Text":"cyclic","Confidence":65.37921},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.545456}],"Text":"in","Confidence":64.41686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":98.37371}],"Text":"machine","Confidence":63.2935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.956505}],"Text":"ice","Confidence":62.107605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":97.31668}],"Text":"they","Confidence":61.663166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.73388}],"Text":"ihe","Confidence":59.499084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.21815}],"Text":"mon","Confidence":56.541676},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":93.78397}],"Text":"geier","Confidence":56.487823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":92.9892}],"Text":"fice","Confidence":50.924362},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.99952}],"Text":"datas","Confidence":50.28851}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(08_08).json index ad62d97..27a91cb 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56914}],"Text":"machine","Confidence":96.97075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.562294}],"Text":"of","Confidence":96.87549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54777}],"Text":"charts","Confidence":96.8344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57421}],"Text":"cyclic","Confidence":96.789764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57357}],"Text":"data","Confidence":96.76555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56021}],"Text":"templates","Confidence":96.6658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.520744}],"Text":"shown","Confidence":96.60097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573944}],"Text":"and","Confidence":96.55873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49302}],"Text":"is","Confidence":96.45114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5715}],"Text":"equipment","Confidence":96.12432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.432014}],"Text":"report","Confidence":96.02411},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5496}],"Text":"with","Confidence":95.89301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.510735}],"Text":"in","Confidence":95.6682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572784}],"Text":"that","Confidence":95.59122},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56318}],"Text":"two","Confidence":95.404816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.33385}],"Text":"this","Confidence":95.33693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.317215}],"Text":"the","Confidence":95.22049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.568794}],"Text":"historian","Confidence":94.76231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54016}],"Text":"theme","Confidence":94.533936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.50572}],"Text":"analysis","Confidence":94.521545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.1312}],"Text":"types","Confidence":93.918434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.533264}],"Text":"those","Confidence":93.30153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57269}],"Text":"perform","Confidence":93.25079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.47508}],"Text":"values","Confidence":93.190834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.47938}],"Text":"based","Confidence":93.091446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.554756}],"Text":"selection","Confidence":92.64075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.565056}],"Text":"variable","Confidence":92.064415},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.027435}],"Text":"agaregated","Confidence":91.24808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74134}],"Text":"on","Confidence":91.18936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.574394}],"Text":"group","Confidence":90.75176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.565674}],"Text":"aggregated","Confidence":89.055756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51179}],"Text":"aggregation","Confidence":86.7469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.42801}],"Text":"production","Confidence":85.49071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.637184}],"Text":"vith","Confidence":81.59903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.539375}],"Text":"analysis","Confidence":81.49624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45629}],"Text":"template","Confidence":80.706604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.72924}],"Text":"create","Confidence":77.10469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57432}],"Text":"price","Confidence":73.41095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.501366}],"Text":"values","Confidence":73.41095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.3958}],"Text":"distribution","Confidence":69.59481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53906}],"Text":"filtering","Confidence":69.31531},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.93035}],"Text":"labsller","Confidence":67.5065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.114944}],"Text":"the","Confidence":63.362225},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.95816}],"Text":"labeller","Confidence":62.331425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.9668}],"Text":"packer","Confidence":61.940838}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56914}],"Text":"machine","Confidence":96.97075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.562294}],"Text":"of","Confidence":96.87549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54777}],"Text":"charts","Confidence":96.8344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57421}],"Text":"cyclic","Confidence":96.789764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57357}],"Text":"data","Confidence":96.76555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56021}],"Text":"templates","Confidence":96.6658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.520744}],"Text":"shown","Confidence":96.60097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573944}],"Text":"and","Confidence":96.55873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49302}],"Text":"is","Confidence":96.45114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5715}],"Text":"equipment","Confidence":96.12432},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.432014}],"Text":"report","Confidence":96.02411},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5496}],"Text":"with","Confidence":95.89301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.510735}],"Text":"in","Confidence":95.6682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572784}],"Text":"that","Confidence":95.59122},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56318}],"Text":"two","Confidence":95.404816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.33385}],"Text":"this","Confidence":95.33693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.317215}],"Text":"the","Confidence":95.22049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.568794}],"Text":"historian","Confidence":94.76231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54016}],"Text":"theme","Confidence":94.533936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.50572}],"Text":"analysis","Confidence":94.521545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.1312}],"Text":"types","Confidence":93.918434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.533264}],"Text":"those","Confidence":93.30153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57269}],"Text":"perform","Confidence":93.25079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.47508}],"Text":"values","Confidence":93.190834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.47938}],"Text":"based","Confidence":93.091446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.554756}],"Text":"selection","Confidence":92.64075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.565056}],"Text":"variable","Confidence":92.064415},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.027435}],"Text":"agaregated","Confidence":91.24808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74134}],"Text":"on","Confidence":91.18936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.574394}],"Text":"group","Confidence":90.75176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.565674}],"Text":"aggregated","Confidence":89.055756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51179}],"Text":"aggregation","Confidence":86.7469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.42801}],"Text":"production","Confidence":85.49071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.637184}],"Text":"vith","Confidence":81.59903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.539375}],"Text":"analysis","Confidence":81.49624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45629}],"Text":"template","Confidence":80.706604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.72924}],"Text":"create","Confidence":77.10469},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57432}],"Text":"price","Confidence":73.41095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.501366}],"Text":"values","Confidence":73.41095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.3958}],"Text":"distribution","Confidence":69.59481},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53906}],"Text":"filtering","Confidence":69.31531},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.93035}],"Text":"labsller","Confidence":67.5065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.114944}],"Text":"the","Confidence":63.362225},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.95816}],"Text":"labeller","Confidence":62.331425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.9668}],"Text":"packer","Confidence":61.940838}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 5085b87..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57368}],"Text":"that","Confidence":96.97044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574554}],"Text":"cyclic","Confidence":96.93904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56772}],"Text":"machine","Confidence":96.91881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57306}],"Text":"historian","Confidence":96.896576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.572845}],"Text":"of","Confidence":96.891525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55773}],"Text":"are","Confidence":96.856766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53295}],"Text":"two","Confidence":96.73064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56855}],"Text":"create","Confidence":96.715706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55228}],"Text":"and","Confidence":96.64031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.541275}],"Text":"ter","Confidence":96.58584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57315}],"Text":"aggregated","Confidence":96.4271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55696}],"Text":"types","Confidence":96.39333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50519}],"Text":"theme","Confidence":96.35325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573654}],"Text":"analysis","Confidence":96.3357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57102}],"Text":"this","Confidence":96.309456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.41025}],"Text":"trend","Confidence":95.87174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572395}],"Text":"data","Confidence":95.8346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.38445}],"Text":"equipment","Confidence":95.691154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57375}],"Text":"those","Confidence":95.54406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.565}],"Text":"report","Confidence":95.45247},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5673}],"Text":"templates","Confidence":94.54238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52881}],"Text":"theme","Confidence":93.97066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54219}],"Text":"extended","Confidence":93.10225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.43202}],"Text":"distribution","Confidence":92.51377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.99846}],"Text":"zad_gbl","Confidence":91.61734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.55066}],"Text":"data","Confidence":90.82625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.76519}],"Text":"modeling","Confidence":84.356316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57283}],"Text":"packer","Confidence":82.93093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.31966}],"Text":"ithe","Confidence":82.240555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":96.88054}],"Text":"re","Confidence":78.16376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57323}],"Text":"associate","Confidence":73.0199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57056}],"Text":"templates","Confidence":70.81615},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.42049}],"Text":"4736","Confidence":66.20062},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"5","Confidence":94.26121}],"Text":"53","Confidence":59.828453},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":93.741806}],"Text":"35","Confidence":56.192665},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":93.03735}],"Text":"great\u00E9","Confidence":51.261482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":92.98398}],"Text":"ca","Confidence":50.887856},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":94.6599}],"Text":"2146","Confidence":50.207367}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(12_12).json index 75802f0..25863e3 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57411}],"Text":"this","Confidence":97.00225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57023}],"Text":"of","Confidence":96.99162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573906}],"Text":"price","Confidence":96.968704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56598}],"Text":"with","Confidence":96.96184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5747}],"Text":"analysis","Confidence":96.95674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573235}],"Text":"data","Confidence":96.95328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57487}],"Text":"cyclic","Confidence":96.921974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57141}],"Text":"the","Confidence":96.892075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.5712}],"Text":"group","Confidence":96.88961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57451}],"Text":"and","Confidence":96.87851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56533}],"Text":"machine","Confidence":96.86324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5734}],"Text":"values","Confidence":96.85228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.548645}],"Text":"theme","Confidence":96.84054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56749}],"Text":"templates","Confidence":96.82941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57276}],"Text":"selection","Confidence":96.82463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55796}],"Text":"historian","Confidence":96.773506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57445}],"Text":"equipment","Confidence":96.76008},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56457}],"Text":"that","Confidence":96.75944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53442}],"Text":"are","Confidence":96.74092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57438}],"Text":"associate","Confidence":96.71753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.566}],"Text":"extended","Confidence":96.54369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.502785}],"Text":"report","Confidence":96.51608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50355}],"Text":"aggregation","Confidence":96.388626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57308}],"Text":"theme","Confidence":96.265015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57461}],"Text":"relative","Confidence":96.22396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.455124}],"Text":"those","Confidence":96.18589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"production","Confidence":96.07134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54235}],"Text":"create","Confidence":95.83533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55403}],"Text":"perform","Confidence":95.82562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.44314}],"Text":"pm","Confidence":95.49176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"aggregated","Confidence":95.45919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44282}],"Text":"template","Confidence":95.14},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56575}],"Text":"packer","Confidence":94.16208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.292946}],"Text":"new","Confidence":93.42458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.53371}],"Text":"counters","Confidence":93.17959},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.95658}],"Text":"07","Confidence":92.69607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57434}],"Text":"values","Confidence":91.53109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56988}],"Text":"two","Confidence":91.4046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.25399}],"Text":"types","Confidence":91.4046},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57054}],"Text":"07","Confidence":91.24693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.551384}],"Text":"trend","Confidence":90.86589},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02404}],"Text":"zad_gbl","Confidence":90.6387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56355}],"Text":"filler","Confidence":89.82205},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.005646}],"Text":"zad_gbl","Confidence":86.35129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52289}],"Text":"variable","Confidence":81.42833},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.18657}],"Text":"101772015","Confidence":75.98719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":96.40174}],"Text":"there","Confidence":74.81218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56687}],"Text":"the","Confidence":73.800934},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.99845}],"Text":"zad_gblsenergy","Confidence":68.47553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56436}],"Text":"distribution","Confidence":65.94483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.66459}],"Text":"standard","Confidence":62.652107},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":92.87248}],"Text":"101772016","Confidence":50.107388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.15534}],"Text":"be","Confidence":50.002308}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57411}],"Text":"this","Confidence":97.00225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57023}],"Text":"of","Confidence":96.99162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573906}],"Text":"price","Confidence":96.968704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56598}],"Text":"with","Confidence":96.96184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5747}],"Text":"analysis","Confidence":96.95674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573235}],"Text":"data","Confidence":96.95328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57487}],"Text":"cyclic","Confidence":96.921974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57141}],"Text":"the","Confidence":96.892075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.5712}],"Text":"group","Confidence":96.88961},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57451}],"Text":"and","Confidence":96.87851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56533}],"Text":"machine","Confidence":96.86324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5734}],"Text":"values","Confidence":96.85228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.548645}],"Text":"theme","Confidence":96.84054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56749}],"Text":"templates","Confidence":96.82941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57276}],"Text":"selection","Confidence":96.82463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.55796}],"Text":"historian","Confidence":96.773506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57445}],"Text":"equipment","Confidence":96.76008},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56457}],"Text":"that","Confidence":96.75944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53442}],"Text":"are","Confidence":96.74092},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57438}],"Text":"associate","Confidence":96.71753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.566}],"Text":"extended","Confidence":96.54369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.502785}],"Text":"report","Confidence":96.51608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50355}],"Text":"aggregation","Confidence":96.388626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57308}],"Text":"theme","Confidence":96.265015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57461}],"Text":"relative","Confidence":96.22396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.455124}],"Text":"those","Confidence":96.18589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57467}],"Text":"production","Confidence":96.07134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54235}],"Text":"create","Confidence":95.83533},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55403}],"Text":"perform","Confidence":95.82562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.44314}],"Text":"pm","Confidence":95.49176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"aggregated","Confidence":95.45919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.44282}],"Text":"template","Confidence":95.14},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56575}],"Text":"packer","Confidence":94.16208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.292946}],"Text":"new","Confidence":93.42458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.53371}],"Text":"counters","Confidence":93.17959},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.95658}],"Text":"07","Confidence":92.69607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57434}],"Text":"values","Confidence":91.53109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56988}],"Text":"two","Confidence":91.4046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.25399}],"Text":"types","Confidence":91.4046},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57054}],"Text":"07","Confidence":91.24693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.551384}],"Text":"trend","Confidence":90.86589},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02404}],"Text":"zad_gbl","Confidence":90.6387},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56355}],"Text":"filler","Confidence":89.82205},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.005646}],"Text":"zad_gbl","Confidence":86.35129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52289}],"Text":"variable","Confidence":81.42833},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.18657}],"Text":"101772015","Confidence":75.98719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":96.40174}],"Text":"there","Confidence":74.81218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56687}],"Text":"the","Confidence":73.800934},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.99845}],"Text":"zad_gblsenergy","Confidence":68.47553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56436}],"Text":"distribution","Confidence":65.94483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":94.66459}],"Text":"standard","Confidence":62.652107},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":92.87248}],"Text":"101772016","Confidence":50.107388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.15534}],"Text":"be","Confidence":50.002308}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 8f40e36..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57262}],"Text":"the","Confidence":96.99884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56874}],"Text":"create","Confidence":96.98117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5743}],"Text":"this","Confidence":96.97835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57413}],"Text":"those","Confidence":96.960335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57033}],"Text":"are","Confidence":96.92433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573204}],"Text":"theme","Confidence":96.912575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57291}],"Text":"price","Confidence":96.90902},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57005}],"Text":"standard","Confidence":96.88959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55412}],"Text":"of","Confidence":96.87884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572136}],"Text":"and","Confidence":96.857635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5736}],"Text":"counters","Confidence":96.79288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53619}],"Text":"trend","Confidence":96.75329},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57421}],"Text":"two","Confidence":96.708275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.521805}],"Text":"data","Confidence":96.65266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54933}],"Text":"production","Confidence":96.6336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57339}],"Text":"with","Confidence":96.55504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57326}],"Text":"aggregated","Confidence":96.54803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56721}],"Text":"historian","Confidence":96.481384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57014}],"Text":"templates","Confidence":96.47022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57226}],"Text":"that","Confidence":96.30308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.536476}],"Text":"report","Confidence":96.24061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55966}],"Text":"theme","Confidence":96.128716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.41373}],"Text":"report","Confidence":95.89608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.55636}],"Text":"equipment","Confidence":95.53584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52837}],"Text":"types","Confidence":95.18713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57417}],"Text":"analysis","Confidence":95.027054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.44903}],"Text":"values","Confidence":94.293526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53754}],"Text":"template","Confidence":93.41585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54132}],"Text":"perform","Confidence":93.259094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.01304}],"Text":"there","Confidence":93.091286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.548325}],"Text":"distribution","Confidence":92.74343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.537476}],"Text":"associate","Confidence":92.02905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.509186}],"Text":"new","Confidence":90.537926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57402}],"Text":"values","Confidence":89.16799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.274765}],"Text":"oft","Confidence":89.029625},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.12082}],"Text":"es","Confidence":57.56439},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":93.44946}],"Text":"34","Confidence":54.146263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":93.271645}],"Text":"nm","Confidence":50.237217}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(16_16).json index 1adc684..97696c8 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57439}],"Text":"the","Confidence":97.01505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57434}],"Text":"this","Confidence":97.0054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57307}],"Text":"of","Confidence":96.99835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57017}],"Text":"that","Confidence":96.99119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569565}],"Text":"data","Confidence":96.96498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57428}],"Text":"those","Confidence":96.95756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5708}],"Text":"standard","Confidence":96.95456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56466}],"Text":"create","Confidence":96.9526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57038}],"Text":"and","Confidence":96.946365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56342}],"Text":"based","Confidence":96.943985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"are","Confidence":96.909966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.571266}],"Text":"theme","Confidence":96.88214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5732}],"Text":"cyclic","Confidence":96.85379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55034}],"Text":"is","Confidence":96.852394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57452}],"Text":"with","Confidence":96.848434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5495}],"Text":"equipment","Confidence":96.84652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56754}],"Text":"historian","Confidence":96.828705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572464}],"Text":"distribution","Confidence":96.816536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57342}],"Text":"analysis","Confidence":96.75196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574326}],"Text":"aggregated","Confidence":96.72886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57487}],"Text":"production","Confidence":96.72635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53162}],"Text":"trend","Confidence":96.72131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57389}],"Text":"pm","Confidence":96.71355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.543175}],"Text":"two","Confidence":96.66474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57221}],"Text":"aggregation","Confidence":96.619965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572876}],"Text":"extended","Confidence":96.60686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57446}],"Text":"group","Confidence":96.59962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56505}],"Text":"templates","Confidence":96.56717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5725}],"Text":"theme","Confidence":96.56007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.504974}],"Text":"preview","Confidence":96.53482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57076}],"Text":"on","Confidence":96.5172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574745}],"Text":"price","Confidence":96.46218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.49368}],"Text":"values","Confidence":96.455795},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.566925}],"Text":"07","Confidence":96.45075},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57032}],"Text":"07","Confidence":96.450134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.489975}],"Text":"relative","Confidence":96.42985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.50651}],"Text":"in","Confidence":96.38678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51429}],"Text":"shown","Confidence":96.353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.539474}],"Text":"variable","Confidence":96.333694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54234}],"Text":"reports","Confidence":96.30734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.47182}],"Text":"machine","Confidence":96.30271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56437}],"Text":"for","Confidence":96.23492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56981}],"Text":"values","Confidence":96.08635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567055}],"Text":"types","Confidence":95.78928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57321}],"Text":"counters","Confidence":95.73211},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573074}],"Text":"packer","Confidence":95.64141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573265}],"Text":"selection","Confidence":95.581024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55516}],"Text":"template","Confidence":94.992226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57416}],"Text":"associate","Confidence":94.54246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.144745}],"Text":"there","Confidence":94.01324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57478}],"Text":"data","Confidence":94.011406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57168}],"Text":"calculate","Confidence":92.34631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.35397}],"Text":"new","Confidence":92.031235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.51876}],"Text":"report","Confidence":92.031235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.851135}],"Text":"report","Confidence":91.957954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57206}],"Text":"perform","Confidence":90.99789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47336}],"Text":"charts","Confidence":90.207565},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.92405}],"Text":"fitering","Confidence":89.29658},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02813}],"Text":"zad_gbl","Confidence":84.10618},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.58188}],"Text":"distibution","Confidence":75.023384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55544}],"Text":"groups","Confidence":64.59342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":95.28176}],"Text":"fon","Confidence":63.223526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.657906}],"Text":"ve","Confidence":62.605316},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u00BB","Confidence":98.27009}],"Text":"labeller","Confidence":59.164803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5556}],"Text":"modeling","Confidence":58.79192},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.884476}],"Text":"vartable","Confidence":57.80816},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.09577}],"Text":"10","Confidence":57.75291}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57439}],"Text":"the","Confidence":97.01505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57434}],"Text":"this","Confidence":97.0054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57307}],"Text":"of","Confidence":96.99835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57017}],"Text":"that","Confidence":96.99119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569565}],"Text":"data","Confidence":96.96498},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57428}],"Text":"those","Confidence":96.95756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5708}],"Text":"standard","Confidence":96.95456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56466}],"Text":"create","Confidence":96.9526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57038}],"Text":"and","Confidence":96.946365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56342}],"Text":"based","Confidence":96.943985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573845}],"Text":"are","Confidence":96.909966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.571266}],"Text":"theme","Confidence":96.88214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5732}],"Text":"cyclic","Confidence":96.85379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55034}],"Text":"is","Confidence":96.852394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57452}],"Text":"with","Confidence":96.848434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.5495}],"Text":"equipment","Confidence":96.84652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56754}],"Text":"historian","Confidence":96.828705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572464}],"Text":"distribution","Confidence":96.816536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57342}],"Text":"analysis","Confidence":96.75196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574326}],"Text":"aggregated","Confidence":96.72886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57487}],"Text":"production","Confidence":96.72635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53162}],"Text":"trend","Confidence":96.72131},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57389}],"Text":"pm","Confidence":96.71355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.543175}],"Text":"two","Confidence":96.66474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57221}],"Text":"aggregation","Confidence":96.619965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572876}],"Text":"extended","Confidence":96.60686},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57446}],"Text":"group","Confidence":96.59962},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56505}],"Text":"templates","Confidence":96.56717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5725}],"Text":"theme","Confidence":96.56007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.504974}],"Text":"preview","Confidence":96.53482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57076}],"Text":"on","Confidence":96.5172},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574745}],"Text":"price","Confidence":96.46218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.49368}],"Text":"values","Confidence":96.455795},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.566925}],"Text":"07","Confidence":96.45075},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57032}],"Text":"07","Confidence":96.450134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.489975}],"Text":"relative","Confidence":96.42985},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.50651}],"Text":"in","Confidence":96.38678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.51429}],"Text":"shown","Confidence":96.353},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.539474}],"Text":"variable","Confidence":96.333694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54234}],"Text":"reports","Confidence":96.30734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.47182}],"Text":"machine","Confidence":96.30271},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56437}],"Text":"for","Confidence":96.23492},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56981}],"Text":"values","Confidence":96.08635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567055}],"Text":"types","Confidence":95.78928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57321}],"Text":"counters","Confidence":95.73211},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573074}],"Text":"packer","Confidence":95.64141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573265}],"Text":"selection","Confidence":95.581024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55516}],"Text":"template","Confidence":94.992226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57416}],"Text":"associate","Confidence":94.54246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.144745}],"Text":"there","Confidence":94.01324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57478}],"Text":"data","Confidence":94.011406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57168}],"Text":"calculate","Confidence":92.34631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":99.35397}],"Text":"new","Confidence":92.031235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.51876}],"Text":"report","Confidence":92.031235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.851135}],"Text":"report","Confidence":91.957954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57206}],"Text":"perform","Confidence":90.99789},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47336}],"Text":"charts","Confidence":90.207565},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.92405}],"Text":"fitering","Confidence":89.29658},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02813}],"Text":"zad_gbl","Confidence":84.10618},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.58188}],"Text":"distibution","Confidence":75.023384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55544}],"Text":"groups","Confidence":64.59342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":95.28176}],"Text":"fon","Confidence":63.223526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":94.657906}],"Text":"ve","Confidence":62.605316},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u00BB","Confidence":98.27009}],"Text":"labeller","Confidence":59.164803},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5556}],"Text":"modeling","Confidence":58.79192},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.884476}],"Text":"vartable","Confidence":57.80816},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.09577}],"Text":"10","Confidence":57.75291}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 19f5116..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573166}],"Text":"the","Confidence":97.012115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57463}],"Text":"this","Confidence":97.00394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56418}],"Text":"that","Confidence":96.937614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57327}],"Text":"of","Confidence":96.92838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57438}],"Text":"create","Confidence":96.89641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574715}],"Text":"those","Confidence":96.868454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.570694}],"Text":"distribution","Confidence":96.846214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57463}],"Text":"with","Confidence":96.83936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573654}],"Text":"theme","Confidence":96.81866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56824}],"Text":"data","Confidence":96.80837},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57089}],"Text":"counters","Confidence":96.745155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57291}],"Text":"standard","Confidence":96.72531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56855}],"Text":"templates","Confidence":96.695045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.549614}],"Text":"extended","Confidence":96.69191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57449}],"Text":"machine","Confidence":96.69148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.52303}],"Text":"is","Confidence":96.66121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56439}],"Text":"and","Confidence":96.660645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.569756}],"Text":"analysis","Confidence":96.620674},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51442}],"Text":"trend","Confidence":96.60093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57426}],"Text":"cyclic","Confidence":96.59848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57415}],"Text":"aggregated","Confidence":96.545845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57209}],"Text":"historian","Confidence":96.52664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"production","Confidence":96.51572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.49819}],"Text":"pm","Confidence":96.48736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55637}],"Text":"types","Confidence":96.47754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5621}],"Text":"two","Confidence":96.455605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57466}],"Text":"data","Confidence":96.4392},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57067}],"Text":"variable","Confidence":96.4257},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57169}],"Text":"theme","Confidence":96.39855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.48209}],"Text":"based","Confidence":96.374664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.47569}],"Text":"are","Confidence":96.32987},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.51848}],"Text":"07","Confidence":96.30733},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53913}],"Text":"shown","Confidence":96.301765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.50404}],"Text":"in","Confidence":96.301765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54586}],"Text":"aggregation","Confidence":96.294174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51353}],"Text":"equipment","Confidence":96.27858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57464}],"Text":"group","Confidence":96.27302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57194}],"Text":"relative","Confidence":96.1649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.51913}],"Text":"there","Confidence":96.1346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57139}],"Text":"associate","Confidence":96.13342},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.496086}],"Text":"report","Confidence":96.13244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574165}],"Text":"price","Confidence":96.0025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57351}],"Text":"values","Confidence":95.68446},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56703}],"Text":"07","Confidence":95.43485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573364}],"Text":"values","Confidence":94.067986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573296}],"Text":"perform","Confidence":93.74396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56337}],"Text":"tables","Confidence":93.28204},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.9417}],"Text":"zad_gbl","Confidence":92.43901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.544655}],"Text":"selection","Confidence":90.68234},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.03795}],"Text":"fitering","Confidence":89.95877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56878}],"Text":"packer","Confidence":87.680824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.54936}],"Text":"modeling","Confidence":87.574104},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.44456}],"Text":"10","Confidence":87.16862},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"-","Confidence":98.58697}],"Text":"-filler","Confidence":86.76696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56129}],"Text":"charts","Confidence":82.60913},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.11323}],"Text":"oft","Confidence":71.97028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":95.0753}],"Text":"ij","Confidence":65.5271},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.99898}],"Text":"zad_gblaenergy","Confidence":65.056335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.52937}],"Text":"groups","Confidence":63.631824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":96.63003}],"Text":"fam","Confidence":62.991894},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.01565}],"Text":"labeller","Confidence":61.620266}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(20_20).json index f71aa66..470959f 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572205}],"Text":"the","Confidence":97.005455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573456}],"Text":"that","Confidence":96.99919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57435}],"Text":"create","Confidence":96.99333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57438}],"Text":"this","Confidence":96.974464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56854}],"Text":"is","Confidence":96.95752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.572365}],"Text":"group","Confidence":96.95154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573456}],"Text":"production","Confidence":96.94831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5743}],"Text":"with","Confidence":96.94795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.562126}],"Text":"and","Confidence":96.930466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57377}],"Text":"are","Confidence":96.92701},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56759}],"Text":"on","Confidence":96.91611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57331}],"Text":"of","Confidence":96.9098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56331}],"Text":"types","Confidence":96.875206},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55804}],"Text":"07","Confidence":96.856606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573555}],"Text":"those","Confidence":96.85005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.571335}],"Text":"based","Confidence":96.83819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54684}],"Text":"data","Confidence":96.82787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57452}],"Text":"machine","Confidence":96.77478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52437}],"Text":"cyclic","Confidence":96.6706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57088}],"Text":"historian","Confidence":96.65941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57338}],"Text":"aggregation","Confidence":96.638824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57429}],"Text":"aggregated","Confidence":96.54289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5599}],"Text":"groups","Confidence":96.49348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57392}],"Text":"equipment","Confidence":96.49133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57425}],"Text":"variable","Confidence":96.46514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.49349}],"Text":"report","Confidence":96.45443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.4863}],"Text":"reports","Confidence":96.4041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57237}],"Text":"templates","Confidence":96.38153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55961}],"Text":"perform","Confidence":96.38061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.517914}],"Text":"theme","Confidence":96.362915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56933}],"Text":"theme","Confidence":96.36019},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53466}],"Text":"07","Confidence":96.31549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57051}],"Text":"relative","Confidence":96.308174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.473816}],"Text":"trend","Confidence":96.2866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57399}],"Text":"values","Confidence":96.25536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565414}],"Text":"template","Confidence":96.21632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5733}],"Text":"values","Confidence":96.216194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570114}],"Text":"pm","Confidence":96.12029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.554306}],"Text":"in","Confidence":96.07669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57434}],"Text":"analysis","Confidence":96.07589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57261}],"Text":"data","Confidence":96.0212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56919}],"Text":"distribution","Confidence":96.01374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56911}],"Text":"tables","Confidence":95.69969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56954}],"Text":"for","Confidence":95.383224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57296}],"Text":"counters","Confidence":95.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.563736}],"Text":"standard","Confidence":95.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54876}],"Text":"shown","Confidence":95.33979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.291916}],"Text":"there","Confidence":95.04341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53519}],"Text":"two","Confidence":94.531555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574234}],"Text":"price","Confidence":93.9503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55021}],"Text":"selection","Confidence":93.89738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57214}],"Text":"charts","Confidence":93.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54703}],"Text":"period","Confidence":92.59597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.85339}],"Text":"zad_gbl","Confidence":91.97373},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.74236}],"Text":"fitering","Confidence":80.98591},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.01726}],"Text":"labeller","Confidence":77.22636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56012}],"Text":"mod","Confidence":76.37377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.029816}],"Text":"zad_gblwenergy","Confidence":76.15394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56989}],"Text":"filler","Confidence":75.94486},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.06811}],"Text":"10","Confidence":73.2419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.89757}],"Text":"had","Confidence":66.81127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56844}],"Text":"filer","Confidence":66.115845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57417}],"Text":"associate","Confidence":61.655495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.618095}],"Text":"wm","Confidence":51.273636}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572205}],"Text":"the","Confidence":97.005455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573456}],"Text":"that","Confidence":96.99919},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57435}],"Text":"create","Confidence":96.99333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57438}],"Text":"this","Confidence":96.974464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56854}],"Text":"is","Confidence":96.95752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.572365}],"Text":"group","Confidence":96.95154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573456}],"Text":"production","Confidence":96.94831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5743}],"Text":"with","Confidence":96.94795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.562126}],"Text":"and","Confidence":96.930466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57377}],"Text":"are","Confidence":96.92701},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56759}],"Text":"on","Confidence":96.91611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57331}],"Text":"of","Confidence":96.9098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56331}],"Text":"types","Confidence":96.875206},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55804}],"Text":"07","Confidence":96.856606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.573555}],"Text":"those","Confidence":96.85005},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.571335}],"Text":"based","Confidence":96.83819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.54684}],"Text":"data","Confidence":96.82787},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57452}],"Text":"machine","Confidence":96.77478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.52437}],"Text":"cyclic","Confidence":96.6706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57088}],"Text":"historian","Confidence":96.65941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57338}],"Text":"aggregation","Confidence":96.638824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57429}],"Text":"aggregated","Confidence":96.54289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5599}],"Text":"groups","Confidence":96.49348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57392}],"Text":"equipment","Confidence":96.49133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57425}],"Text":"variable","Confidence":96.46514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.49349}],"Text":"report","Confidence":96.45443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.4863}],"Text":"reports","Confidence":96.4041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57237}],"Text":"templates","Confidence":96.38153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55961}],"Text":"perform","Confidence":96.38061},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.517914}],"Text":"theme","Confidence":96.362915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56933}],"Text":"theme","Confidence":96.36019},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.53466}],"Text":"07","Confidence":96.31549},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57051}],"Text":"relative","Confidence":96.308174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.473816}],"Text":"trend","Confidence":96.2866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57399}],"Text":"values","Confidence":96.25536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565414}],"Text":"template","Confidence":96.21632},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.5733}],"Text":"values","Confidence":96.216194},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570114}],"Text":"pm","Confidence":96.12029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.554306}],"Text":"in","Confidence":96.07669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57434}],"Text":"analysis","Confidence":96.07589},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57261}],"Text":"data","Confidence":96.0212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56919}],"Text":"distribution","Confidence":96.01374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56911}],"Text":"tables","Confidence":95.69969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56954}],"Text":"for","Confidence":95.383224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57296}],"Text":"counters","Confidence":95.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.563736}],"Text":"standard","Confidence":95.37433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54876}],"Text":"shown","Confidence":95.33979},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.291916}],"Text":"there","Confidence":95.04341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53519}],"Text":"two","Confidence":94.531555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574234}],"Text":"price","Confidence":93.9503},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55021}],"Text":"selection","Confidence":93.89738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57214}],"Text":"charts","Confidence":93.14702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54703}],"Text":"period","Confidence":92.59597},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.85339}],"Text":"zad_gbl","Confidence":91.97373},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":98.74236}],"Text":"fitering","Confidence":80.98591},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.01726}],"Text":"labeller","Confidence":77.22636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56012}],"Text":"mod","Confidence":76.37377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.029816}],"Text":"zad_gblwenergy","Confidence":76.15394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56989}],"Text":"filler","Confidence":75.94486},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.06811}],"Text":"10","Confidence":73.2419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.89757}],"Text":"had","Confidence":66.81127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56844}],"Text":"filer","Confidence":66.115845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57417}],"Text":"associate","Confidence":61.655495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":93.618095}],"Text":"wm","Confidence":51.273636}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 94f84b9..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57303}],"Text":"with","Confidence":97.003746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57244}],"Text":"cyclic","Confidence":96.97102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57303}],"Text":"for","Confidence":96.97041},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57251}],"Text":"the","Confidence":96.961296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57446}],"Text":"variable","Confidence":96.95482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5715}],"Text":"based","Confidence":96.952774},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57358}],"Text":"price","Confidence":96.94842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57239}],"Text":"reports","Confidence":96.94427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56375}],"Text":"theme","Confidence":96.94212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56979}],"Text":"those","Confidence":96.94212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57473}],"Text":"relative","Confidence":96.941635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5626}],"Text":"extended","Confidence":96.93819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57461}],"Text":"this","Confidence":96.92067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55985}],"Text":"on","Confidence":96.90917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55805}],"Text":"historian","Confidence":96.90637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55471}],"Text":"data","Confidence":96.88299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56972}],"Text":"aggregation","Confidence":96.87541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55531}],"Text":"that","Confidence":96.87049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.573906}],"Text":"create","Confidence":96.87049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5747}],"Text":"machine","Confidence":96.862144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.544815}],"Text":"pm","Confidence":96.81372},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.558235}],"Text":"and","Confidence":96.807396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57411}],"Text":"aggregated","Confidence":96.776855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5385}],"Text":"of","Confidence":96.76946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57377}],"Text":"equipment","Confidence":96.76307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570496}],"Text":"production","Confidence":96.75901},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.534615}],"Text":"group","Confidence":96.70427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568954}],"Text":"trend","Confidence":96.6755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572876}],"Text":"values","Confidence":96.66157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57399}],"Text":"analysis","Confidence":96.6614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55926}],"Text":"theme","Confidence":96.6206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57447}],"Text":"selection","Confidence":96.61047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57426}],"Text":"distribution","Confidence":96.50289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.4924}],"Text":"values","Confidence":96.44682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572075}],"Text":"are","Confidence":96.37833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56797}],"Text":"two","Confidence":96.37833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56152}],"Text":"standard","Confidence":96.3332},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573494}],"Text":"perform","Confidence":96.32949},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57314}],"Text":"groups","Confidence":96.29862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54827}],"Text":"shown","Confidence":96.23874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54944}],"Text":"in","Confidence":96.23874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57325}],"Text":"associate","Confidence":96.22661},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5742}],"Text":"data","Confidence":96.18246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45012}],"Text":"templates","Confidence":96.15081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.501495}],"Text":"is","Confidence":96.12994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.427734}],"Text":"there","Confidence":95.99415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57193}],"Text":"types","Confidence":95.94826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57463}],"Text":"period","Confidence":95.934685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56927}],"Text":"report","Confidence":95.81463},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53361}],"Text":"template","Confidence":95.52394},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.29437}],"Text":"07","Confidence":95.060616},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.55795}],"Text":"07","Confidence":94.43149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5556}],"Text":"charts","Confidence":91.67631},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.5706}],"Text":"packer","Confidence":91.57105},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.001015}],"Text":"zad_gbl","Confidence":91.47794},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.9871}],"Text":"calculate","Confidence":90.78428},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.01429}],"Text":"zad_gblwenergy","Confidence":90.24102},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04129}],"Text":"fitering","Confidence":90.083275},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.00618}],"Text":"data-","Confidence":86.91165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55998}],"Text":"tables","Confidence":85.88649},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.03404}],"Text":"labeiter","Confidence":78.915215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":94.15896}],"Text":"um","Confidence":59.1127},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":97.06228}],"Text":"wu","Confidence":53.934063}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(24_24).json index 4f69790..d1ca4a1 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57443}],"Text":"the","Confidence":97.014084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572464}],"Text":"and","Confidence":96.987885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572296}],"Text":"that","Confidence":96.982544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56594}],"Text":"standard","Confidence":96.96157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57101}],"Text":"of","Confidence":96.95601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57166}],"Text":"variable","Confidence":96.952866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568565}],"Text":"data","Confidence":96.95078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57428}],"Text":"with","Confidence":96.93907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57399}],"Text":"create","Confidence":96.91178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57394}],"Text":"machine","Confidence":96.89701},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574394}],"Text":"equi","Confidence":96.88806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5714}],"Text":"those","Confidence":96.88275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56117}],"Text":"aggregation","Confidence":96.86272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573586}],"Text":"for","Confidence":96.83326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56684}],"Text":"cyclic","Confidence":96.828125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.567055}],"Text":"price","Confidence":96.80781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56187}],"Text":"equipment","Confidence":96.774254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56929}],"Text":"aggregated","Confidence":96.69562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57468}],"Text":"production","Confidence":96.688705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57468}],"Text":"group","Confidence":96.68649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.525894}],"Text":"are","Confidence":96.68126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57397}],"Text":"this","Confidence":96.63871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56665}],"Text":"theme","Confidence":96.63871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.573135}],"Text":"historian","Confidence":96.594696},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55603}],"Text":"07","Confidence":96.58811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56951}],"Text":"reports","Confidence":96.572075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56852}],"Text":"perform","Confidence":96.56816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.544174}],"Text":"values","Confidence":96.52882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53244}],"Text":"is","Confidence":96.497246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56635}],"Text":"based","Confidence":96.450645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57439}],"Text":"report","Confidence":96.427444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5685}],"Text":"selection","Confidence":96.36923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57333}],"Text":"analysis","Confidence":96.34093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57067}],"Text":"trend","Confidence":96.33068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56447}],"Text":"associate","Confidence":96.326965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.562965}],"Text":"in","Confidence":96.27603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55697}],"Text":"two","Confidence":96.0988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57153}],"Text":"types","Confidence":96.0988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"period","Confidence":96.000565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.41472}],"Text":"relative","Confidence":95.90301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572685}],"Text":"theme","Confidence":95.823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.566505}],"Text":"distribution","Confidence":95.815605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56913}],"Text":"values","Confidence":95.50978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51012}],"Text":"data","Confidence":95.19182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55476}],"Text":"on","Confidence":94.50958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.19178}],"Text":"there","Confidence":94.34248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572685}],"Text":"shown","Confidence":94.03529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.41047}],"Text":"tables","Confidence":93.219124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48169}],"Text":"template","Confidence":92.46854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.22631}],"Text":"pm","Confidence":92.13786},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.95273}],"Text":"istorian","Confidence":92.073845},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.001144}],"Text":"zad_gbl","Confidence":92.00951},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.23701}],"Text":"10","Confidence":89.79446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57096}],"Text":"modeling","Confidence":86.818886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569244}],"Text":"templates","Confidence":85.35395},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02752}],"Text":"zad_gblwenergy","Confidence":84.26688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.531944}],"Text":"filler","Confidence":83.04509},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.01823}],"Text":"chatts","Confidence":74.84378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56228}],"Text":"calculate","Confidence":71.12156},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.14741}],"Text":"vaiable","Confidence":67.208374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.987274}],"Text":"ne","Confidence":64.910904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56954}],"Text":"counters","Confidence":62.36014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.15569}],"Text":"booed","Confidence":61.87318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570465}],"Text":"packer","Confidence":59.825928},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.01012}],"Text":"207","Confidence":59.782585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.0448}],"Text":"hed","Confidence":59.234615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":93.80838}],"Text":"me","Confidence":56.658638},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.04162}],"Text":"laboller","Confidence":52.37356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5588}],"Text":"charts","Confidence":50.133102}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57443}],"Text":"the","Confidence":97.014084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572464}],"Text":"and","Confidence":96.987885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572296}],"Text":"that","Confidence":96.982544},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56594}],"Text":"standard","Confidence":96.96157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57101}],"Text":"of","Confidence":96.95601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57166}],"Text":"variable","Confidence":96.952866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568565}],"Text":"data","Confidence":96.95078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57428}],"Text":"with","Confidence":96.93907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57399}],"Text":"create","Confidence":96.91178},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57394}],"Text":"machine","Confidence":96.89701},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574394}],"Text":"equi","Confidence":96.88806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.5714}],"Text":"those","Confidence":96.88275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56117}],"Text":"aggregation","Confidence":96.86272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573586}],"Text":"for","Confidence":96.83326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56684}],"Text":"cyclic","Confidence":96.828125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.567055}],"Text":"price","Confidence":96.80781},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56187}],"Text":"equipment","Confidence":96.774254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56929}],"Text":"aggregated","Confidence":96.69562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57468}],"Text":"production","Confidence":96.688705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57468}],"Text":"group","Confidence":96.68649},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.525894}],"Text":"are","Confidence":96.68126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57397}],"Text":"this","Confidence":96.63871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56665}],"Text":"theme","Confidence":96.63871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.573135}],"Text":"historian","Confidence":96.594696},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55603}],"Text":"07","Confidence":96.58811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56951}],"Text":"reports","Confidence":96.572075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56852}],"Text":"perform","Confidence":96.56816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.544174}],"Text":"values","Confidence":96.52882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53244}],"Text":"is","Confidence":96.497246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56635}],"Text":"based","Confidence":96.450645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57439}],"Text":"report","Confidence":96.427444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5685}],"Text":"selection","Confidence":96.36923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57333}],"Text":"analysis","Confidence":96.34093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57067}],"Text":"trend","Confidence":96.33068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56447}],"Text":"associate","Confidence":96.326965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.562965}],"Text":"in","Confidence":96.27603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55697}],"Text":"two","Confidence":96.0988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57153}],"Text":"types","Confidence":96.0988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"period","Confidence":96.000565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.41472}],"Text":"relative","Confidence":95.90301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572685}],"Text":"theme","Confidence":95.823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.566505}],"Text":"distribution","Confidence":95.815605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56913}],"Text":"values","Confidence":95.50978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51012}],"Text":"data","Confidence":95.19182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55476}],"Text":"on","Confidence":94.50958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.19178}],"Text":"there","Confidence":94.34248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.572685}],"Text":"shown","Confidence":94.03529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.41047}],"Text":"tables","Confidence":93.219124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48169}],"Text":"template","Confidence":92.46854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.22631}],"Text":"pm","Confidence":92.13786},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.95273}],"Text":"istorian","Confidence":92.073845},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.001144}],"Text":"zad_gbl","Confidence":92.00951},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.23701}],"Text":"10","Confidence":89.79446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57096}],"Text":"modeling","Confidence":86.818886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569244}],"Text":"templates","Confidence":85.35395},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.02752}],"Text":"zad_gblwenergy","Confidence":84.26688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.531944}],"Text":"filler","Confidence":83.04509},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.01823}],"Text":"chatts","Confidence":74.84378},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56228}],"Text":"calculate","Confidence":71.12156},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.14741}],"Text":"vaiable","Confidence":67.208374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.987274}],"Text":"ne","Confidence":64.910904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56954}],"Text":"counters","Confidence":62.36014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":98.15569}],"Text":"booed","Confidence":61.87318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.570465}],"Text":"packer","Confidence":59.825928},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":97.01012}],"Text":"207","Confidence":59.782585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":95.0448}],"Text":"hed","Confidence":59.234615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":93.80838}],"Text":"me","Confidence":56.658638},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.04162}],"Text":"laboller","Confidence":52.37356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5588}],"Text":"charts","Confidence":50.133102}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(0%).json deleted file mode 100644 index 17465e6..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.522446}],"Text":"and","Confidence":96.59269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56925}],"Text":"relative","Confidence":96.53137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57393}],"Text":"selection","Confidence":96.45435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.52288}],"Text":"group","Confidence":96.44421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.43624}],"Text":"equipment","Confidence":96.01737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.49474}],"Text":"with","Confidence":95.96753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.4488}],"Text":"aggregation","Confidence":95.80066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.15336}],"Text":"fm","Confidence":94.04207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57132}],"Text":"packer","Confidence":93.29219},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.48013}],"Text":"pm","Confidence":93.191505},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.71039}],"Text":"facker","Confidence":90.972694},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.840454}],"Text":"vanable","Confidence":87.314255},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.52596}],"Text":"10-7","Confidence":86.40773},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.45165}],"Text":"107","Confidence":86.010666},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.56452}],"Text":"2015","Confidence":85.66505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.551956}],"Text":"mach","Confidence":85.38761},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":98.92468}],"Text":"00","Confidence":85.12035},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.54655}],"Text":"2018","Confidence":82.727554},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.7693}],"Text":"zad","Confidence":79.31172},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":98.997284}],"Text":"flier","Confidence":73.668076},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48152}],"Text":"10","Confidence":73.07114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.41839}],"Text":"nec","Confidence":72.874245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.4208}],"Text":"ne","Confidence":68.208664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.30156}],"Text":"historian","Confidence":64.12526},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.16216}],"Text":"07","Confidence":60.1464}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(10%).json deleted file mode 100644 index 019e059..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57036}],"Text":"is","Confidence":96.974724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572876}],"Text":"the","Confidence":96.97026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56808}],"Text":"and","Confidence":96.9307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57332}],"Text":"trend","Confidence":96.90692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.5567}],"Text":"based","Confidence":96.89693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57346}],"Text":"create","Confidence":96.87666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566284}],"Text":"templates","Confidence":96.84439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566505}],"Text":"this","Confidence":96.83738},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573}],"Text":"data","Confidence":96.836525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572044}],"Text":"calculate","Confidence":96.80002},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5355}],"Text":"machine","Confidence":96.74851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57223}],"Text":"analysis","Confidence":96.7376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57334}],"Text":"selection","Confidence":96.72599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.52923}],"Text":"of","Confidence":96.70458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.52804}],"Text":"template","Confidence":96.69628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.53147}],"Text":"on","Confidence":96.68641},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56269}],"Text":"packer","Confidence":96.62348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.53212}],"Text":"data","Confidence":96.617325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57187}],"Text":"values","Confidence":96.601326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.50714}],"Text":"there","Confidence":96.549995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.519135}],"Text":"with","Confidence":96.54941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57291}],"Text":"standard","Confidence":96.53551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56698}],"Text":"price","Confidence":96.49866},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.547066}],"Text":"equipment","Confidence":96.49409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56157}],"Text":"group","Confidence":96.49248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.535416}],"Text":"that","Confidence":96.47875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.49601}],"Text":"report","Confidence":96.47207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57173}],"Text":"cancel","Confidence":96.43804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53967}],"Text":"in","Confidence":96.43022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574265}],"Text":"relative","Confidence":96.418144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56543}],"Text":"variable","Confidence":96.38217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55783}],"Text":"theme","Confidence":96.33582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51951}],"Text":"theme","Confidence":96.28864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.538284}],"Text":"cyclic","Confidence":96.281555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57137}],"Text":"are","Confidence":96.26713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56564}],"Text":"pm","Confidence":96.26702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.573135}],"Text":"historian","Confidence":96.2465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.461426}],"Text":"production","Confidence":96.22997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.43401}],"Text":"new","Confidence":96.0381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57421}],"Text":"tables","Confidence":95.84284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56874}],"Text":"charts","Confidence":95.80089},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.3949}],"Text":"aggregation","Confidence":95.764305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.42553}],"Text":"distribution","Confidence":95.73791},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.3762}],"Text":"00","Confidence":95.63336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57361}],"Text":"for","Confidence":95.452675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55074}],"Text":"shown","Confidence":95.31577},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5278}],"Text":"types","Confidence":94.71653},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":99.457085}],"Text":"07","Confidence":93.961784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53732}],"Text":"those","Confidence":92.51073},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.574455}],"Text":"filler","Confidence":92.46039},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.98543}],"Text":"zad_gbl","Confidence":91.78407},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.04199}],"Text":"madeling","Confidence":90.69409},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04143}],"Text":"filtering","Confidence":88.36723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57144}],"Text":"values","Confidence":86.60896},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.01005}],"Text":"labeller","Confidence":85.87478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54529}],"Text":"preview","Confidence":85.793045},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.27956}],"Text":"arcups","Confidence":85.624054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57205}],"Text":"counters","Confidence":84.21338},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55366}],"Text":"two","Confidence":83.9083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57381}],"Text":"filter","Confidence":83.022095},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":97.51919}],"Text":"sagregated","Confidence":82.63433},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.46783}],"Text":"perform","Confidence":82.51341},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.510155}],"Text":"var","Confidence":82.51111},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.89772}],"Text":"agaregated","Confidence":81.04216},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57387}],"Text":"reports","Confidence":80.80895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57309}],"Text":"associate","Confidence":79.30159},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.3309}],"Text":"ak","Confidence":76.47138},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56216}],"Text":"07","Confidence":74.14434},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"1","Confidence":99.00646}],"Text":"10","Confidence":72.82306},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"2","Confidence":96.015}],"Text":"2ad_gbl","Confidence":72.10502},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.88874}],"Text":"aralysis","Confidence":65.844055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.95404}],"Text":"labelier","Confidence":55.706642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57419}],"Text":"modeling","Confidence":54.913754}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(20%).json index 494e736..84f721b 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57356}],"Text":"based","Confidence":96.99371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57447}],"Text":"that","Confidence":96.99338},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570366}],"Text":"of","Confidence":96.98972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56998}],"Text":"standard","Confidence":96.98177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57365}],"Text":"the","Confidence":96.96083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57361}],"Text":"report","Confidence":96.94612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573364}],"Text":"template","Confidence":96.94251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56988}],"Text":"calculate","Confidence":96.93402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57447}],"Text":"create","Confidence":96.93135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56475}],"Text":"on","Confidence":96.9121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573944}],"Text":"two","Confidence":96.909096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573425}],"Text":"analysis","Confidence":96.906975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55631}],"Text":"and","Confidence":96.89417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57277}],"Text":"data","Confidence":96.85831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57343}],"Text":"with","Confidence":96.85652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56931}],"Text":"this","Confidence":96.84255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56918}],"Text":"historian","Confidence":96.832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573494}],"Text":"values","Confidence":96.797874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56599}],"Text":"types","Confidence":96.788605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.574875}],"Text":"machine","Confidence":96.7883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.569695}],"Text":"packer","Confidence":96.78755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57343}],"Text":"reports","Confidence":96.774025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572525}],"Text":"distribution","Confidence":96.773155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57334}],"Text":"tables","Confidence":96.75505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53315}],"Text":"for","Confidence":96.732056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574265}],"Text":"those","Confidence":96.729324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57172}],"Text":"values","Confidence":96.69929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54168}],"Text":"variable","Confidence":96.66975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.567345}],"Text":"groups","Confidence":96.653175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574615}],"Text":"aggregated","Confidence":96.613106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55308}],"Text":"trend","Confidence":96.611374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.573524}],"Text":"is","Confidence":96.5831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565994}],"Text":"templates","Confidence":96.55885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.543465}],"Text":"selection","Confidence":96.5499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5736}],"Text":"period","Confidence":96.54255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57051}],"Text":"counters","Confidence":96.5258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.566315}],"Text":"pm","Confidence":96.50448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54951}],"Text":"equipment","Confidence":96.48696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568085}],"Text":"price","Confidence":96.44217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.49634}],"Text":"production","Confidence":96.42306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.48828}],"Text":"new","Confidence":96.41795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57279}],"Text":"charts","Confidence":96.387314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57194}],"Text":"shown","Confidence":96.34997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.48177}],"Text":"cyclic","Confidence":96.3223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"are","Confidence":96.31439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56838}],"Text":"there","Confidence":96.268974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45602}],"Text":"theme","Confidence":96.192116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.560585}],"Text":"in","Confidence":96.13366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.566154}],"Text":"cancel","Confidence":96.13007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56754}],"Text":"group","Confidence":96.07766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55307}],"Text":"theme","Confidence":96.06185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56551}],"Text":"modeling","Confidence":95.60405},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57317}],"Text":"07","Confidence":95.55179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56414}],"Text":"preview","Confidence":95.36064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5721}],"Text":"data","Confidence":95.29147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57182}],"Text":"aggregation","Confidence":94.77067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56235}],"Text":"filtering","Confidence":94.35526},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55487}],"Text":"07","Confidence":93.880775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56688}],"Text":"relative","Confidence":93.29311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57446}],"Text":"perform","Confidence":93.23354},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04146}],"Text":"associate","Confidence":93.00357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.568214}],"Text":"filler","Confidence":92.404526},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.9924}],"Text":"zad_gbl","Confidence":91.07884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.01004}],"Text":"exterded","Confidence":90.874664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.66604}],"Text":"ok","Confidence":90.66229},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.01477}],"Text":"aralysis","Confidence":90.65732},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.57477}],"Text":"oata","Confidence":84.910164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57377}],"Text":"filler","Confidence":74.364586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.24057}],"Text":"ac","Confidence":72.91016},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04268}],"Text":"histeriar","Confidence":69.44278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.59328}],"Text":"ker","Confidence":62.152946}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57356}],"Text":"based","Confidence":96.99371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57447}],"Text":"that","Confidence":96.99338},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570366}],"Text":"of","Confidence":96.98972},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56998}],"Text":"standard","Confidence":96.98177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57365}],"Text":"the","Confidence":96.96083},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57361}],"Text":"report","Confidence":96.94612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573364}],"Text":"template","Confidence":96.94251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56988}],"Text":"calculate","Confidence":96.93402},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57447}],"Text":"create","Confidence":96.93135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56475}],"Text":"on","Confidence":96.9121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573944}],"Text":"two","Confidence":96.909096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573425}],"Text":"analysis","Confidence":96.906975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55631}],"Text":"and","Confidence":96.89417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57277}],"Text":"data","Confidence":96.85831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57343}],"Text":"with","Confidence":96.85652},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56931}],"Text":"this","Confidence":96.84255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.56918}],"Text":"historian","Confidence":96.832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.573494}],"Text":"values","Confidence":96.797874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56599}],"Text":"types","Confidence":96.788605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.574875}],"Text":"machine","Confidence":96.7883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.569695}],"Text":"packer","Confidence":96.78755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57343}],"Text":"reports","Confidence":96.774025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572525}],"Text":"distribution","Confidence":96.773155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57334}],"Text":"tables","Confidence":96.75505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53315}],"Text":"for","Confidence":96.732056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.574265}],"Text":"those","Confidence":96.729324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57172}],"Text":"values","Confidence":96.69929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54168}],"Text":"variable","Confidence":96.66975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.567345}],"Text":"groups","Confidence":96.653175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574615}],"Text":"aggregated","Confidence":96.613106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55308}],"Text":"trend","Confidence":96.611374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.573524}],"Text":"is","Confidence":96.5831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565994}],"Text":"templates","Confidence":96.55885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.543465}],"Text":"selection","Confidence":96.5499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5736}],"Text":"period","Confidence":96.54255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57051}],"Text":"counters","Confidence":96.5258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.566315}],"Text":"pm","Confidence":96.50448},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54951}],"Text":"equipment","Confidence":96.48696},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568085}],"Text":"price","Confidence":96.44217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.49634}],"Text":"production","Confidence":96.42306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.48828}],"Text":"new","Confidence":96.41795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57279}],"Text":"charts","Confidence":96.387314},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57194}],"Text":"shown","Confidence":96.34997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.48177}],"Text":"cyclic","Confidence":96.3223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57475}],"Text":"are","Confidence":96.31439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56838}],"Text":"there","Confidence":96.268974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.45602}],"Text":"theme","Confidence":96.192116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.560585}],"Text":"in","Confidence":96.13366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.566154}],"Text":"cancel","Confidence":96.13007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56754}],"Text":"group","Confidence":96.07766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55307}],"Text":"theme","Confidence":96.06185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56551}],"Text":"modeling","Confidence":95.60405},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57317}],"Text":"07","Confidence":95.55179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56414}],"Text":"preview","Confidence":95.36064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5721}],"Text":"data","Confidence":95.29147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57182}],"Text":"aggregation","Confidence":94.77067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56235}],"Text":"filtering","Confidence":94.35526},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.55487}],"Text":"07","Confidence":93.880775},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56688}],"Text":"relative","Confidence":93.29311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57446}],"Text":"perform","Confidence":93.23354},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.04146}],"Text":"associate","Confidence":93.00357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.568214}],"Text":"filler","Confidence":92.404526},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.9924}],"Text":"zad_gbl","Confidence":91.07884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.01004}],"Text":"exterded","Confidence":90.874664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.66604}],"Text":"ok","Confidence":90.66229},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.01477}],"Text":"aralysis","Confidence":90.65732},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.57477}],"Text":"oata","Confidence":84.910164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57377}],"Text":"filler","Confidence":74.364586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.24057}],"Text":"ac","Confidence":72.91016},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04268}],"Text":"histeriar","Confidence":69.44278},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"K","Confidence":94.59328}],"Text":"ker","Confidence":62.152946}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(40%).json index e393917..ba2f18f 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57451}],"Text":"data","Confidence":97.00153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57461}],"Text":"that","Confidence":96.99337},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56908}],"Text":"aggregated","Confidence":96.98354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573906}],"Text":"types","Confidence":96.98126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57297}],"Text":"the","Confidence":96.978294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56736}],"Text":"this","Confidence":96.97151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574356}],"Text":"with","Confidence":96.95106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57205}],"Text":"are","Confidence":96.95067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57109}],"Text":"packer","Confidence":96.945145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57315}],"Text":"production","Confidence":96.93626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57457}],"Text":"theme","Confidence":96.923805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573135}],"Text":"trend","Confidence":96.91096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570366}],"Text":"on","Confidence":96.89152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55473}],"Text":"of","Confidence":96.883125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57457}],"Text":"standard","Confidence":96.87841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5716}],"Text":"groups","Confidence":96.87506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57411}],"Text":"and","Confidence":96.8622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549}],"Text":"is","Confidence":96.84303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57334}],"Text":"historian","Confidence":96.84301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57425}],"Text":"price","Confidence":96.82753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57469}],"Text":"cyclic","Confidence":96.823784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.569984}],"Text":"selection","Confidence":96.79793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57381}],"Text":"associate","Confidence":96.79414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56916}],"Text":"new","Confidence":96.7882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54124}],"Text":"in","Confidence":96.78758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57271}],"Text":"values","Confidence":96.782135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57059}],"Text":"template","Confidence":96.7638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57439}],"Text":"create","Confidence":96.73811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57405}],"Text":"extended","Confidence":96.72528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572945}],"Text":"templates","Confidence":96.72485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57294}],"Text":"those","Confidence":96.71677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55978}],"Text":"reports","Confidence":96.70511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.529076}],"Text":"machine","Confidence":96.70355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57346}],"Text":"distribution","Confidence":96.67156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5737}],"Text":"report","Confidence":96.640785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51838}],"Text":"for","Confidence":96.62863},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.516884}],"Text":"charts","Confidence":96.6182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55558}],"Text":"counters","Confidence":96.60104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51384}],"Text":"analysis","Confidence":96.596855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55902}],"Text":"there","Confidence":96.58816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570885}],"Text":"based","Confidence":96.56394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.53239}],"Text":"pm","Confidence":96.50299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.49969}],"Text":"equipment","Confidence":96.49779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567}],"Text":"theme","Confidence":96.4328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.48404}],"Text":"perform","Confidence":96.38829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56338}],"Text":"aggregation","Confidence":96.34466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55152}],"Text":"variable","Confidence":96.319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5733}],"Text":"period","Confidence":96.23957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569405}],"Text":"cancel","Confidence":96.21042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57113}],"Text":"group","Confidence":96.20272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56831}],"Text":"tables","Confidence":96.19698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57185}],"Text":"values","Confidence":96.196556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57272}],"Text":"07","Confidence":96.114716},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56078}],"Text":"07","Confidence":95.76312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5347}],"Text":"filler","Confidence":95.75536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55189}],"Text":"data","Confidence":95.71996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.38822}],"Text":"shown","Confidence":95.71757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573586}],"Text":"preview","Confidence":95.24935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573166}],"Text":"two","Confidence":93.56547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56986}],"Text":"relative","Confidence":93.29537},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.02863}],"Text":"calculate","Confidence":93.08641},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.95696}],"Text":"labeller","Confidence":92.698746},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.042435}],"Text":"filtering","Confidence":92.463936},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.02606}],"Text":"equipmert","Confidence":89.85428},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.9013}],"Text":"zad_gbl","Confidence":87.3118},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54427}],"Text":"197712015","Confidence":83.57026},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56012}],"Text":"197772015","Confidence":79.381195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.77668}],"Text":"zad_gal","Confidence":76.31368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.36839}],"Text":"name","Confidence":69.60133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":95.43977}],"Text":"zus","Confidence":68.07839},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.96991}],"Text":"220","Confidence":64.09081},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.93153}],"Text":"zad_gsl","Confidence":59.921417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.17935}],"Text":"ter","Confidence":59.255455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.57917}],"Text":"ad","Confidence":55.05417},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.97856}],"Text":"vansble","Confidence":54.971855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52146}],"Text":"modeling","Confidence":53.56411},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.1263}],"Text":"vansbie","Confidence":51.368103},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"7","Confidence":93.760544}],"Text":"7068","Confidence":50.89715}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57451}],"Text":"data","Confidence":97.00153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57461}],"Text":"that","Confidence":96.99337},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56908}],"Text":"aggregated","Confidence":96.98354},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573906}],"Text":"types","Confidence":96.98126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57297}],"Text":"the","Confidence":96.978294},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56736}],"Text":"this","Confidence":96.97151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.574356}],"Text":"with","Confidence":96.95106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57205}],"Text":"are","Confidence":96.95067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57109}],"Text":"packer","Confidence":96.945145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57315}],"Text":"production","Confidence":96.93626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57457}],"Text":"theme","Confidence":96.923805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573135}],"Text":"trend","Confidence":96.91096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.570366}],"Text":"on","Confidence":96.89152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55473}],"Text":"of","Confidence":96.883125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57457}],"Text":"standard","Confidence":96.87841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5716}],"Text":"groups","Confidence":96.87506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57411}],"Text":"and","Confidence":96.8622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.549}],"Text":"is","Confidence":96.84303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57334}],"Text":"historian","Confidence":96.84301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57425}],"Text":"price","Confidence":96.82753},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57469}],"Text":"cyclic","Confidence":96.823784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.569984}],"Text":"selection","Confidence":96.79793},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57381}],"Text":"associate","Confidence":96.79414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56916}],"Text":"new","Confidence":96.7882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54124}],"Text":"in","Confidence":96.78758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57271}],"Text":"values","Confidence":96.782135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57059}],"Text":"template","Confidence":96.7638},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57439}],"Text":"create","Confidence":96.73811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57405}],"Text":"extended","Confidence":96.72528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572945}],"Text":"templates","Confidence":96.72485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57294}],"Text":"those","Confidence":96.71677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55978}],"Text":"reports","Confidence":96.70511},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.529076}],"Text":"machine","Confidence":96.70355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57346}],"Text":"distribution","Confidence":96.67156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.5737}],"Text":"report","Confidence":96.640785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.51838}],"Text":"for","Confidence":96.62863},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.516884}],"Text":"charts","Confidence":96.6182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55558}],"Text":"counters","Confidence":96.60104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.51384}],"Text":"analysis","Confidence":96.596855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55902}],"Text":"there","Confidence":96.58816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.570885}],"Text":"based","Confidence":96.56394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.53239}],"Text":"pm","Confidence":96.50299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.49969}],"Text":"equipment","Confidence":96.49779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567}],"Text":"theme","Confidence":96.4328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.48404}],"Text":"perform","Confidence":96.38829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56338}],"Text":"aggregation","Confidence":96.34466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55152}],"Text":"variable","Confidence":96.319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5733}],"Text":"period","Confidence":96.23957},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569405}],"Text":"cancel","Confidence":96.21042},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57113}],"Text":"group","Confidence":96.20272},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56831}],"Text":"tables","Confidence":96.19698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57185}],"Text":"values","Confidence":96.196556},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57272}],"Text":"07","Confidence":96.114716},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56078}],"Text":"07","Confidence":95.76312},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5347}],"Text":"filler","Confidence":95.75536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55189}],"Text":"data","Confidence":95.71996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.38822}],"Text":"shown","Confidence":95.71757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.573586}],"Text":"preview","Confidence":95.24935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573166}],"Text":"two","Confidence":93.56547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56986}],"Text":"relative","Confidence":93.29537},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.02863}],"Text":"calculate","Confidence":93.08641},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.95696}],"Text":"labeller","Confidence":92.698746},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.042435}],"Text":"filtering","Confidence":92.463936},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.02606}],"Text":"equipmert","Confidence":89.85428},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.9013}],"Text":"zad_gbl","Confidence":87.3118},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.54427}],"Text":"197712015","Confidence":83.57026},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56012}],"Text":"197772015","Confidence":79.381195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.77668}],"Text":"zad_gal","Confidence":76.31368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.36839}],"Text":"name","Confidence":69.60133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":95.43977}],"Text":"zus","Confidence":68.07839},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.96991}],"Text":"220","Confidence":64.09081},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.93153}],"Text":"zad_gsl","Confidence":59.921417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.17935}],"Text":"ter","Confidence":59.255455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.57917}],"Text":"ad","Confidence":55.05417},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.97856}],"Text":"vansble","Confidence":54.971855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.52146}],"Text":"modeling","Confidence":53.56411},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.1263}],"Text":"vansbie","Confidence":51.368103},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"7","Confidence":93.760544}],"Text":"7068","Confidence":50.89715}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(50%).json index e74f453..72545ac 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57352}],"Text":"based","Confidence":97.0141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57366}],"Text":"with","Confidence":96.99883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57114}],"Text":"the","Confidence":96.99795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57453}],"Text":"machine","Confidence":96.99283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56789}],"Text":"aggregated","Confidence":96.97518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57263}],"Text":"historian","Confidence":96.973145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57335}],"Text":"in","Confidence":96.96826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5746}],"Text":"analysis","Confidence":96.9669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57435}],"Text":"that","Confidence":96.96234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57159}],"Text":"create","Confidence":96.95238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56446}],"Text":"group","Confidence":96.95123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57153}],"Text":"data","Confidence":96.95094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57035}],"Text":"of","Confidence":96.9484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56349}],"Text":"there","Confidence":96.937065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56897}],"Text":"variable","Confidence":96.92882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56092}],"Text":"on","Confidence":96.92644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5598}],"Text":"charts","Confidence":96.91858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5594}],"Text":"is","Confidence":96.9158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57195}],"Text":"templates","Confidence":96.91114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.557556}],"Text":"packer","Confidence":96.90291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55725}],"Text":"and","Confidence":96.90075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57286}],"Text":"shown","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574036}],"Text":"two","Confidence":96.891815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57455}],"Text":"reports","Confidence":96.8844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572075}],"Text":"distribution","Confidence":96.8689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57167}],"Text":"extended","Confidence":96.86865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573395}],"Text":"price","Confidence":96.85375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54798}],"Text":"calculate","Confidence":96.83587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54644}],"Text":"types","Confidence":96.8251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57315}],"Text":"report","Confidence":96.81591},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54511}],"Text":"template","Confidence":96.815796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5447}],"Text":"cyclic","Confidence":96.8129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56485}],"Text":"this","Confidence":96.79439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568474}],"Text":"those","Confidence":96.790215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569275}],"Text":"trend","Confidence":96.76345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55143}],"Text":"preview","Confidence":96.763374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55459}],"Text":"selection","Confidence":96.72756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54074}],"Text":"aggregation","Confidence":96.66106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57293}],"Text":"associate","Confidence":96.65643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56613}],"Text":"new","Confidence":96.65371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.516914}],"Text":"are","Confidence":96.61841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5738}],"Text":"for","Confidence":96.55529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.553505}],"Text":"equipment","Confidence":96.5289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56737}],"Text":"values","Confidence":96.52081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574684}],"Text":"standard","Confidence":96.51835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57417}],"Text":"counters","Confidence":96.505325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573784}],"Text":"relative","Confidence":96.42733},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.5738}],"Text":"07","Confidence":96.41218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56257}],"Text":"theme","Confidence":96.363914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54772}],"Text":"theme","Confidence":96.327896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.566765}],"Text":"perform","Confidence":96.30829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57162}],"Text":"values","Confidence":96.17376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.570755}],"Text":"groups","Confidence":96.07936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574196}],"Text":"data","Confidence":96.04829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.406166}],"Text":"pm","Confidence":95.84317},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.570915}],"Text":"07","Confidence":95.829094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57358}],"Text":"tables","Confidence":95.6362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55036}],"Text":"period","Confidence":95.59865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.50904}],"Text":"filler","Confidence":95.13488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.34428}],"Text":"name","Confidence":93.5571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56277}],"Text":"production","Confidence":93.280914},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.03683}],"Text":"labeller","Confidence":87.25758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.85811}],"Text":"consumption","Confidence":87.22885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.93781}],"Text":"zad_gbl","Confidence":87.13539},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.99522}],"Text":"modeling","Confidence":85.539024},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.22151}],"Text":"10","Confidence":83.01809},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.39237}],"Text":"246","Confidence":73.089905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56899}],"Text":"filtering","Confidence":70.3941},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.3111}],"Text":"475","Confidence":63.347713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.24405}],"Text":"conc","Confidence":63.28028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.038666}],"Text":"orm","Confidence":58.1763},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.894455}],"Text":"labslier","Confidence":57.62464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.70553}],"Text":"vanabie","Confidence":56.11999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.038666}],"Text":"com","Confidence":55.2659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":96.365875}],"Text":"gears","Confidence":54.350147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.06103}],"Text":"mm","Confidence":54.25434},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.33445}],"Text":"4705","Confidence":51.349144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.61432}],"Text":"as","Confidence":50.004242}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.57352}],"Text":"based","Confidence":97.0141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57366}],"Text":"with","Confidence":96.99883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57114}],"Text":"the","Confidence":96.99795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57453}],"Text":"machine","Confidence":96.99283},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56789}],"Text":"aggregated","Confidence":96.97518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57263}],"Text":"historian","Confidence":96.973145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57335}],"Text":"in","Confidence":96.96826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5746}],"Text":"analysis","Confidence":96.9669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57435}],"Text":"that","Confidence":96.96234},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57159}],"Text":"create","Confidence":96.95238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.56446}],"Text":"group","Confidence":96.95123},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57153}],"Text":"data","Confidence":96.95094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57035}],"Text":"of","Confidence":96.9484},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56349}],"Text":"there","Confidence":96.937065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56897}],"Text":"variable","Confidence":96.92882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56092}],"Text":"on","Confidence":96.92644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5598}],"Text":"charts","Confidence":96.91858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5594}],"Text":"is","Confidence":96.9158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57195}],"Text":"templates","Confidence":96.91114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.557556}],"Text":"packer","Confidence":96.90291},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55725}],"Text":"and","Confidence":96.90075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57286}],"Text":"shown","Confidence":96.898384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574036}],"Text":"two","Confidence":96.891815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57455}],"Text":"reports","Confidence":96.8844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572075}],"Text":"distribution","Confidence":96.8689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57167}],"Text":"extended","Confidence":96.86865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573395}],"Text":"price","Confidence":96.85375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54798}],"Text":"calculate","Confidence":96.83587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54644}],"Text":"types","Confidence":96.8251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.57315}],"Text":"report","Confidence":96.81591},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54511}],"Text":"template","Confidence":96.815796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5447}],"Text":"cyclic","Confidence":96.8129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56485}],"Text":"this","Confidence":96.79439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.568474}],"Text":"those","Confidence":96.790215},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.569275}],"Text":"trend","Confidence":96.76345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55143}],"Text":"preview","Confidence":96.763374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55459}],"Text":"selection","Confidence":96.72756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54074}],"Text":"aggregation","Confidence":96.66106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57293}],"Text":"associate","Confidence":96.65643},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56613}],"Text":"new","Confidence":96.65371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.516914}],"Text":"are","Confidence":96.61841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5738}],"Text":"for","Confidence":96.55529},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.553505}],"Text":"equipment","Confidence":96.5289},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56737}],"Text":"values","Confidence":96.52081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574684}],"Text":"standard","Confidence":96.51835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57417}],"Text":"counters","Confidence":96.505325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573784}],"Text":"relative","Confidence":96.42733},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.5738}],"Text":"07","Confidence":96.41218},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56257}],"Text":"theme","Confidence":96.363914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54772}],"Text":"theme","Confidence":96.327896},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.566765}],"Text":"perform","Confidence":96.30829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57162}],"Text":"values","Confidence":96.17376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.570755}],"Text":"groups","Confidence":96.07936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574196}],"Text":"data","Confidence":96.04829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.406166}],"Text":"pm","Confidence":95.84317},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.570915}],"Text":"07","Confidence":95.829094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57358}],"Text":"tables","Confidence":95.6362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55036}],"Text":"period","Confidence":95.59865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.50904}],"Text":"filler","Confidence":95.13488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":99.34428}],"Text":"name","Confidence":93.5571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56277}],"Text":"production","Confidence":93.280914},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.03683}],"Text":"labeller","Confidence":87.25758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.85811}],"Text":"consumption","Confidence":87.22885},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.93781}],"Text":"zad_gbl","Confidence":87.13539},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.99522}],"Text":"modeling","Confidence":85.539024},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.22151}],"Text":"10","Confidence":83.01809},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":96.39237}],"Text":"246","Confidence":73.089905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56899}],"Text":"filtering","Confidence":70.3941},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.3111}],"Text":"475","Confidence":63.347713},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.24405}],"Text":"conc","Confidence":63.28028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":95.038666}],"Text":"orm","Confidence":58.1763},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":98.894455}],"Text":"labslier","Confidence":57.62464},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.70553}],"Text":"vanabie","Confidence":56.11999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.038666}],"Text":"com","Confidence":55.2659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":96.365875}],"Text":"gears","Confidence":54.350147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.06103}],"Text":"mm","Confidence":54.25434},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"4","Confidence":98.33445}],"Text":"4705","Confidence":51.349144},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.61432}],"Text":"as","Confidence":50.004242}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(70%).json index 081a582..e5a54a0 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57357}],"Text":"that","Confidence":96.98012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57235}],"Text":"two","Confidence":96.96809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56673}],"Text":"on","Confidence":96.94854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57465}],"Text":"and","Confidence":96.90983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54969}],"Text":"is","Confidence":96.847824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.545364}],"Text":"based","Confidence":96.81388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5639}],"Text":"data","Confidence":96.79871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57428}],"Text":"for","Confidence":96.79871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.555145}],"Text":"equipment","Confidence":96.79182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574936}],"Text":"cyclic","Confidence":96.77486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57416}],"Text":"standard","Confidence":96.77031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56856}],"Text":"those","Confidence":96.749886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57286}],"Text":"types","Confidence":96.737404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56476}],"Text":"packer","Confidence":96.70807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57037}],"Text":"theme","Confidence":96.687546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.570244}],"Text":"group","Confidence":96.68362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54629}],"Text":"machine","Confidence":96.65655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572945}],"Text":"analysis","Confidence":96.64299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57145}],"Text":"aggregation","Confidence":96.63927},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57363}],"Text":"create","Confidence":96.63116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.51499}],"Text":"groups","Confidence":96.60494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55915}],"Text":"production","Confidence":96.58986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55832}],"Text":"shown","Confidence":96.53982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54296}],"Text":"aggregated","Confidence":96.53396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54953}],"Text":"the","Confidence":96.482346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56852}],"Text":"pm","Confidence":96.363266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.46825}],"Text":"with","Confidence":96.259224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56119}],"Text":"report","Confidence":96.18483},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57131}],"Text":"07","Confidence":96.1755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57293}],"Text":"data","Confidence":96.17116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48167}],"Text":"trend","Confidence":96.02996},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57132}],"Text":"07","Confidence":95.98115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.425766}],"Text":"of","Confidence":95.980385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"price","Confidence":95.95728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574715}],"Text":"this","Confidence":95.8532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54639}],"Text":"theme","Confidence":95.77795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.563866}],"Text":"templates","Confidence":95.735794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573044}],"Text":"template","Confidence":95.38969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57119}],"Text":"historian","Confidence":95.302505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572556}],"Text":"charts","Confidence":95.215416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.572815}],"Text":"reports","Confidence":95.206085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573685}],"Text":"distribution","Confidence":95.004814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57088}],"Text":"variable","Confidence":94.81939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56881}],"Text":"filler","Confidence":94.68784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56946}],"Text":"are","Confidence":94.49414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.20972}],"Text":"in","Confidence":94.468025},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.34215}],"Text":"10","Confidence":94.29461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"tables","Confidence":93.528275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.512985}],"Text":"extended","Confidence":93.29552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57337}],"Text":"relative","Confidence":93.288055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.99752}],"Text":"selecti","Confidence":92.98262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55212}],"Text":"perform","Confidence":92.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.554634}],"Text":"calculate","Confidence":92.29373},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.04159}],"Text":"modeling","Confidence":90.79416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56406}],"Text":"values","Confidence":89.414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.45551}],"Text":"there","Confidence":89.18857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.55396}],"Text":"values","Confidence":87.756805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.9656}],"Text":"pesiod","Confidence":84.8163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574}],"Text":"selection","Confidence":83.594986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574585}],"Text":"associate","Confidence":74.7941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.30982}],"Text":"counters","Confidence":70.98337},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":97.26049}],"Text":"zad","Confidence":66.75127},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.72142}],"Text":"zad_gbloenergy","Confidence":60.982113},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.1391}],"Text":"10772016","Confidence":59.46371},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.97382}],"Text":"zad_gblsenergy","Confidence":58.310852},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04073}],"Text":"fikering","Confidence":56.60831}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57357}],"Text":"that","Confidence":96.98012},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57235}],"Text":"two","Confidence":96.96809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56673}],"Text":"on","Confidence":96.94854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57465}],"Text":"and","Confidence":96.90983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54969}],"Text":"is","Confidence":96.847824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.545364}],"Text":"based","Confidence":96.81388},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.5639}],"Text":"data","Confidence":96.79871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57428}],"Text":"for","Confidence":96.79871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.555145}],"Text":"equipment","Confidence":96.79182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574936}],"Text":"cyclic","Confidence":96.77486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57416}],"Text":"standard","Confidence":96.77031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56856}],"Text":"those","Confidence":96.749886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57286}],"Text":"types","Confidence":96.737404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56476}],"Text":"packer","Confidence":96.70807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57037}],"Text":"theme","Confidence":96.687546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.570244}],"Text":"group","Confidence":96.68362},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54629}],"Text":"machine","Confidence":96.65655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572945}],"Text":"analysis","Confidence":96.64299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57145}],"Text":"aggregation","Confidence":96.63927},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57363}],"Text":"create","Confidence":96.63116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.51499}],"Text":"groups","Confidence":96.60494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55915}],"Text":"production","Confidence":96.58986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55832}],"Text":"shown","Confidence":96.53982},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54296}],"Text":"aggregated","Confidence":96.53396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54953}],"Text":"the","Confidence":96.482346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56852}],"Text":"pm","Confidence":96.363266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.46825}],"Text":"with","Confidence":96.259224},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56119}],"Text":"report","Confidence":96.18483},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.57131}],"Text":"07","Confidence":96.1755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57293}],"Text":"data","Confidence":96.17116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48167}],"Text":"trend","Confidence":96.02996},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57132}],"Text":"07","Confidence":95.98115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.425766}],"Text":"of","Confidence":95.980385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5747}],"Text":"price","Confidence":95.95728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574715}],"Text":"this","Confidence":95.8532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54639}],"Text":"theme","Confidence":95.77795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.563866}],"Text":"templates","Confidence":95.735794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573044}],"Text":"template","Confidence":95.38969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"h","Confidence":99.57119}],"Text":"historian","Confidence":95.302505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572556}],"Text":"charts","Confidence":95.215416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.572815}],"Text":"reports","Confidence":95.206085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.573685}],"Text":"distribution","Confidence":95.004814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57088}],"Text":"variable","Confidence":94.81939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56881}],"Text":"filler","Confidence":94.68784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56946}],"Text":"are","Confidence":94.49414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.20972}],"Text":"in","Confidence":94.468025},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.34215}],"Text":"10","Confidence":94.29461},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57418}],"Text":"tables","Confidence":93.528275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.512985}],"Text":"extended","Confidence":93.29552},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57337}],"Text":"relative","Confidence":93.288055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":98.99752}],"Text":"selecti","Confidence":92.98262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55212}],"Text":"perform","Confidence":92.650475},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.554634}],"Text":"calculate","Confidence":92.29373},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.04159}],"Text":"modeling","Confidence":90.79416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56406}],"Text":"values","Confidence":89.414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.45551}],"Text":"there","Confidence":89.18857},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.55396}],"Text":"values","Confidence":87.756805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.9656}],"Text":"pesiod","Confidence":84.8163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574}],"Text":"selection","Confidence":83.594986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.574585}],"Text":"associate","Confidence":74.7941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.30982}],"Text":"counters","Confidence":70.98337},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":97.26049}],"Text":"zad","Confidence":66.75127},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.72142}],"Text":"zad_gbloenergy","Confidence":60.982113},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.1391}],"Text":"10772016","Confidence":59.46371},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.97382}],"Text":"zad_gblsenergy","Confidence":58.310852},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.04073}],"Text":"fikering","Confidence":56.60831}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(80%).json index 2290a96..b1d64ff 100644 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57277}],"Text":"of","Confidence":96.97546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56661}],"Text":"based","Confidence":96.96629},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574295}],"Text":"that","Confidence":96.96597},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57002}],"Text":"and","Confidence":96.946175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"production","Confidence":96.93548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57383}],"Text":"equipment","Confidence":96.92318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55964}],"Text":"on","Confidence":96.91746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.573906}],"Text":"create","Confidence":96.88954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56964}],"Text":"standard","Confidence":96.87055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5719}],"Text":"for","Confidence":96.868095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57276}],"Text":"the","Confidence":96.864044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.560974}],"Text":"historian","Confidence":96.8451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5725}],"Text":"groups","Confidence":96.81197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.570786}],"Text":"machine","Confidence":96.80011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57168}],"Text":"cyclic","Confidence":96.80011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54697}],"Text":"shown","Confidence":96.75667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.564476}],"Text":"packer","Confidence":96.7474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54168}],"Text":"price","Confidence":96.69446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57152}],"Text":"data","Confidence":96.693054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52712}],"Text":"report","Confidence":96.68984},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57325}],"Text":"07","Confidence":96.66046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55572}],"Text":"extended","Confidence":96.64301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56967}],"Text":"analysis","Confidence":96.62933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.563675}],"Text":"counters","Confidence":96.59204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51307}],"Text":"is","Confidence":96.59151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57216}],"Text":"aggregated","Confidence":96.588326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57423}],"Text":"those","Confidence":96.568016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49767}],"Text":"in","Confidence":96.48373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53737}],"Text":"reports","Confidence":96.3814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48448}],"Text":"types","Confidence":96.373795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57179}],"Text":"this","Confidence":96.34101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57066}],"Text":"with","Confidence":96.27598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5737}],"Text":"period","Confidence":96.01548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5736}],"Text":"template","Confidence":95.97414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57251}],"Text":"values","Confidence":95.8776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57263}],"Text":"values","Confidence":95.78668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.39561}],"Text":"trend","Confidence":95.76925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57344}],"Text":"charts","Confidence":95.66848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57266}],"Text":"theme","Confidence":95.636406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.571846}],"Text":"calculate","Confidence":95.25356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57327}],"Text":"data","Confidence":95.21944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.502975}],"Text":"his","Confidence":95.02121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57456}],"Text":"distribution","Confidence":94.87331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57312}],"Text":"gre","Confidence":94.788795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574036}],"Text":"tables","Confidence":94.419586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.10117}],"Text":"there","Confidence":93.70824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.386}],"Text":"templates","Confidence":93.557594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.24394}],"Text":"variable","Confidence":93.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49598}],"Text":"are","Confidence":92.96964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.52102}],"Text":"perform","Confidence":92.610794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.00193}],"Text":"two","Confidence":92.561455},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.941475}],"Text":"modeling","Confidence":92.284805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.041916}],"Text":"fitering","Confidence":89.79592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.33875}],"Text":"theme","Confidence":88.53411},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.96671}],"Text":"10712016","Confidence":84.88796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.92512}],"Text":"those","Confidence":78.4758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.98322}],"Text":"ith","Confidence":71.882576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":94.737946}],"Text":"fun","Confidence":60.656334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.439865}],"Text":"pm","Confidence":56.917717}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57277}],"Text":"of","Confidence":96.97546},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":99.56661}],"Text":"based","Confidence":96.96629},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574295}],"Text":"that","Confidence":96.96597},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57002}],"Text":"and","Confidence":96.946175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57485}],"Text":"production","Confidence":96.93548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57383}],"Text":"equipment","Confidence":96.92318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55964}],"Text":"on","Confidence":96.91746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.573906}],"Text":"create","Confidence":96.88954},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.56964}],"Text":"standard","Confidence":96.87055},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5719}],"Text":"for","Confidence":96.868095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57276}],"Text":"the","Confidence":96.864044},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.560974}],"Text":"historian","Confidence":96.8451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5725}],"Text":"groups","Confidence":96.81197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.570786}],"Text":"machine","Confidence":96.80011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57168}],"Text":"cyclic","Confidence":96.80011},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.54697}],"Text":"shown","Confidence":96.75667},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.564476}],"Text":"packer","Confidence":96.7474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54168}],"Text":"price","Confidence":96.69446},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57152}],"Text":"data","Confidence":96.693054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.52712}],"Text":"report","Confidence":96.68984},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.57325}],"Text":"07","Confidence":96.66046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55572}],"Text":"extended","Confidence":96.64301},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56967}],"Text":"analysis","Confidence":96.62933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.563675}],"Text":"counters","Confidence":96.59204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.51307}],"Text":"is","Confidence":96.59151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57216}],"Text":"aggregated","Confidence":96.588326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57423}],"Text":"those","Confidence":96.568016},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.49767}],"Text":"in","Confidence":96.48373},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.53737}],"Text":"reports","Confidence":96.3814},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.48448}],"Text":"types","Confidence":96.373795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57179}],"Text":"this","Confidence":96.34101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57066}],"Text":"with","Confidence":96.27598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5737}],"Text":"period","Confidence":96.01548},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5736}],"Text":"template","Confidence":95.97414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57251}],"Text":"values","Confidence":95.8776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57263}],"Text":"values","Confidence":95.78668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.39561}],"Text":"trend","Confidence":95.76925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57344}],"Text":"charts","Confidence":95.66848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.57266}],"Text":"theme","Confidence":95.636406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.571846}],"Text":"calculate","Confidence":95.25356},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57327}],"Text":"data","Confidence":95.21944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.502975}],"Text":"his","Confidence":95.02121},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57456}],"Text":"distribution","Confidence":94.87331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57312}],"Text":"gre","Confidence":94.788795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574036}],"Text":"tables","Confidence":94.419586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.10117}],"Text":"there","Confidence":93.70824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.386}],"Text":"templates","Confidence":93.557594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.24394}],"Text":"variable","Confidence":93.29694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49598}],"Text":"are","Confidence":92.96964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.52102}],"Text":"perform","Confidence":92.610794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.00193}],"Text":"two","Confidence":92.561455},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.941475}],"Text":"modeling","Confidence":92.284805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.041916}],"Text":"fitering","Confidence":89.79592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.33875}],"Text":"theme","Confidence":88.53411},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":98.96671}],"Text":"10712016","Confidence":84.88796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.92512}],"Text":"those","Confidence":78.4758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":95.98322}],"Text":"ith","Confidence":71.882576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":94.737946}],"Text":"fun","Confidence":60.656334},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.439865}],"Text":"pm","Confidence":56.917717}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(90%).json deleted file mode 100644 index c9182b4..0000000 --- a/Examples/testdata/results/zrs_REPORTS_extended-analysis_017.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.54365}],"Text":"with","Confidence":96.74881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.570274}],"Text":"group","Confidence":96.63405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57109}],"Text":"and","Confidence":96.58102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57399}],"Text":"relative","Confidence":96.56256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55162}],"Text":"aggregation","Confidence":96.47517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57132}],"Text":"equipment","Confidence":96.39191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57455}],"Text":"selection","Confidence":96.33124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56359}],"Text":"analysis","Confidence":96.28996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.44603}],"Text":"theme","Confidence":96.122185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55776}],"Text":"historian","Confidence":96.080635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57019}],"Text":"preview","Confidence":95.77197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.51005}],"Text":"of","Confidence":95.24095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.49189}],"Text":"templates","Confidence":95.047714},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56089}],"Text":"data","Confidence":93.77912},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.486885}],"Text":"that","Confidence":93.57856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57239}],"Text":"those","Confidence":93.13858},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.9717}],"Text":"there","Confidence":92.80193},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.801315}],"Text":"equipmerd","Confidence":90.67093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.67827}],"Text":"ond","Confidence":90.52832},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.51363}],"Text":"thal","Confidence":88.57798},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57064}],"Text":"perform","Confidence":88.29967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51048}],"Text":"aggregated","Confidence":87.94761},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.43303}],"Text":"distribution","Confidence":83.89308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.63536}],"Text":"types","Confidence":83.73091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.39399}],"Text":"this","Confidence":80.95723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.49877}],"Text":"create","Confidence":80.91604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.566605}],"Text":"data","Confidence":78.152054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57252}],"Text":"variable","Confidence":72.16537},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.45727}],"Text":"are","Confidence":71.84504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.568756}],"Text":"modeling","Confidence":71.73},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.563675}],"Text":"twa","Confidence":68.995926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.14263}],"Text":"th","Confidence":64.80324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":98.83538}],"Text":"report","Confidence":61.99244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.041084}],"Text":"aggregaied","Confidence":53.88956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":97.85767}],"Text":"za","Confidence":51.960735}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Kapur).json index 2c9efc2..3fb0f20 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57154}],"Text":"media","Confidence":96.88282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57469}],"Text":"groups","Confidence":96.87393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57426}],"Text":"equipment","Confidence":96.87328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56701}],"Text":"cycle","Confidence":96.85006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55918}],"Text":"for","Confidence":96.820274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57373}],"Text":"party","Confidence":96.788025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57361}],"Text":"assigned","Confidence":96.72197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.541405}],"Text":"connector","Confidence":96.682396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51576}],"Text":"project","Confidence":96.610344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.571266}],"Text":"line","Confidence":96.597595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54906}],"Text":"time","Confidence":96.59365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52203}],"Text":"database","Confidence":96.517746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57413}],"Text":"bottle","Confidence":96.49966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56134}],"Text":"archive","Confidence":96.460815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57405}],"Text":"description","Confidence":96.33316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55684}],"Text":"source","Confidence":96.27371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55069}],"Text":"new","Confidence":96.19141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.574295}],"Text":"data","Confidence":95.45687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53322}],"Text":"the","Confidence":93.27398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.48335}],"Text":"identification","Confidence":93.14902},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.01593}],"Text":"metadata","Confidence":92.96076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57388}],"Text":"variables","Confidence":91.9939},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"3","Confidence":98.78283}],"Text":"3rd","Confidence":91.47982},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02325}],"Text":"visualname","Confidence":91.399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.561386}],"Text":"glass","Confidence":91.343285},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.20418}],"Text":"ok","Confidence":73.42923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.10818}],"Text":"vw","Confidence":65.75725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.70067}],"Text":"he","Confidence":58.883217}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57154}],"Text":"media","Confidence":96.88282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57469}],"Text":"groups","Confidence":96.87393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57426}],"Text":"equipment","Confidence":96.87328},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56701}],"Text":"cycle","Confidence":96.85006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55918}],"Text":"for","Confidence":96.820274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57373}],"Text":"party","Confidence":96.788025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57361}],"Text":"assigned","Confidence":96.72197},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.541405}],"Text":"connector","Confidence":96.682396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51576}],"Text":"project","Confidence":96.610344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.571266}],"Text":"line","Confidence":96.597595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54906}],"Text":"time","Confidence":96.59365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.52203}],"Text":"database","Confidence":96.517746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57413}],"Text":"bottle","Confidence":96.49966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56134}],"Text":"archive","Confidence":96.460815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57405}],"Text":"description","Confidence":96.33316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55684}],"Text":"source","Confidence":96.27371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55069}],"Text":"new","Confidence":96.19141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.574295}],"Text":"data","Confidence":95.45687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53322}],"Text":"the","Confidence":93.27398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.48335}],"Text":"identification","Confidence":93.14902},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.01593}],"Text":"metadata","Confidence":92.96076},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.57388}],"Text":"variables","Confidence":91.9939},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"3","Confidence":98.78283}],"Text":"3rd","Confidence":91.47982},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02325}],"Text":"visualname","Confidence":91.399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.561386}],"Text":"glass","Confidence":91.343285},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.20418}],"Text":"ok","Confidence":73.42923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":95.10818}],"Text":"vw","Confidence":65.75725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.70067}],"Text":"he","Confidence":58.883217}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(OTSU).json index 01558e1..a3e3d0c 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54948}],"Text":"plant","Confidence":95.26929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.52982}],"Text":"media","Confidence":94.44931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.732735}],"Text":"ao","Confidence":68.022995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.89345}],"Text":"pp","Confidence":56.170418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.34816}],"Text":"tie","Confidence":53.437138},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.400475}],"Text":"total","Confidence":51.58439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":94.09834}],"Text":"wa","Confidence":50.2964}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54948}],"Text":"plant","Confidence":95.26929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.52982}],"Text":"media","Confidence":94.44931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.732735}],"Text":"ao","Confidence":68.022995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":94.89345}],"Text":"pp","Confidence":56.170418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.34816}],"Text":"tie","Confidence":53.437138},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.400475}],"Text":"total","Confidence":51.58439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":94.09834}],"Text":"wa","Confidence":50.2964}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 7c3fc6e..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"J","Confidence":99.23321}],"Text":"ju","Confidence":91.02032},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":94.82631}],"Text":"bo","Confidence":63.78418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.0377}],"Text":"ga","Confidence":54.34629}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(04_04).json index c78e407..2d4d118 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.649445}],"Text":"equipment","Confidence":88.467255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.011055}],"Text":"groups","Confidence":88.467255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.746346}],"Text":"assigned","Confidence":77.22442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.38187}],"Text":"identification","Confidence":53.673054}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":98.649445}],"Text":"equipment","Confidence":88.467255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.011055}],"Text":"groups","Confidence":88.467255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":96.746346}],"Text":"assigned","Confidence":77.22442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":93.38187}],"Text":"identification","Confidence":53.673054}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 22499a0..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55649}],"Text":"line","Confidence":96.6756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.41623}],"Text":"equipment","Confidence":95.913605},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.49681}],"Text":"bottle","Confidence":90.53935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":98.304504}],"Text":"groups","Confidence":88.131516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.787636}],"Text":"assigned","Confidence":77.51344}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(08_08).json index e7c0a0e..7fcaddd 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5596}],"Text":"groups","Confidence":96.63441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56821}],"Text":"project","Confidence":96.51779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.471886}],"Text":"equipment","Confidence":96.30322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.781494}],"Text":"assigned","Confidence":77.47045}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5596}],"Text":"groups","Confidence":96.63441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56821}],"Text":"project","Confidence":96.51779},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.471886}],"Text":"equipment","Confidence":96.30322},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.781494}],"Text":"assigned","Confidence":77.47045}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index af6b0b4..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.53882}],"Text":"equipment","Confidence":96.77175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.53079}],"Text":"groups","Confidence":96.59853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.23482}],"Text":"assigned","Confidence":87.643715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":93.752686}],"Text":"net","Confidence":56.26882}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(12_12).json index bf61384..cb6250d 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file +{"Words":[],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index df03f7a..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.567696}],"Text":"time","Confidence":95.33663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.48394}],"Text":"cycle","Confidence":93.644196}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(16_16).json index d7eeb80..bf61384 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 4eb787c..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57324}],"Text":"for","Confidence":96.9543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57466}],"Text":"database","Confidence":96.95104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55554}],"Text":"party","Confidence":96.866936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573746}],"Text":"archive","Confidence":96.50784},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5704}],"Text":"metadata","Confidence":96.366394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57468}],"Text":"the","Confidence":96.35728},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.56857}],"Text":"3rd","Confidence":96.35728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.53417}],"Text":"glass","Confidence":95.85102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.569984}],"Text":"plant","Confidence":95.542404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55936}],"Text":"new","Confidence":93.8427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.48621}],"Text":"line","Confidence":93.27527},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57407}],"Text":"connector","Confidence":92.109764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.5697}],"Text":"bottle","Confidence":88.3569},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"8","Confidence":96.61068}],"Text":"86","Confidence":76.27474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54425}],"Text":"total","Confidence":64.81537}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(20_20).json index cae94dd..0802401 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57004}],"Text":"archive","Confidence":96.867676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57238}],"Text":"connector","Confidence":96.85539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54711}],"Text":"new","Confidence":96.829765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572296}],"Text":"party","Confidence":96.7702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57392}],"Text":"for","Confidence":96.50827},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572365}],"Text":"database","Confidence":96.48006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54685}],"Text":"the","Confidence":95.781746},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.5705}],"Text":"3rd","Confidence":95.781746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57272}],"Text":"plant","Confidence":94.8553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.55202}],"Text":"glass","Confidence":94.338486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.16858}],"Text":"line","Confidence":94.18004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.52986}],"Text":"botte","Confidence":76.511795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.86857}],"Text":"at","Confidence":67.47953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.275246}],"Text":"oos","Confidence":50.899124}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57004}],"Text":"archive","Confidence":96.867676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57238}],"Text":"connector","Confidence":96.85539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54711}],"Text":"new","Confidence":96.829765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572296}],"Text":"party","Confidence":96.7702},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57392}],"Text":"for","Confidence":96.50827},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.572365}],"Text":"database","Confidence":96.48006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54685}],"Text":"the","Confidence":95.781746},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.5705}],"Text":"3rd","Confidence":95.781746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57272}],"Text":"plant","Confidence":94.8553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.55202}],"Text":"glass","Confidence":94.338486},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.16858}],"Text":"line","Confidence":94.18004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.52986}],"Text":"botte","Confidence":76.511795},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.86857}],"Text":"at","Confidence":67.47953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.275246}],"Text":"oos","Confidence":50.899124}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index cd2b1a8..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.569016}],"Text":"for","Confidence":96.98311},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.556}],"Text":"archive","Confidence":96.892006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56962}],"Text":"database","Confidence":96.86693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57141}],"Text":"connector","Confidence":96.82601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57454}],"Text":"party","Confidence":96.71528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.574646}],"Text":"the","Confidence":96.4604},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.54977}],"Text":"3rd","Confidence":96.4604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57361}],"Text":"plant","Confidence":93.935455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56958}],"Text":"new","Confidence":83.97097},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.4244}],"Text":"at","Confidence":63.161316}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(24_24).json index 618f1f8..435b1e5 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57358}],"Text":"database","Confidence":97.00099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5726}],"Text":"party","Confidence":96.994286},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.57131}],"Text":"3rd","Confidence":96.96588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56905}],"Text":"line","Confidence":96.92517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57018}],"Text":"for","Confidence":96.89395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57204}],"Text":"the","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57035}],"Text":"archive","Confidence":96.74805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57468}],"Text":"bottle","Confidence":96.66644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572205}],"Text":"connector","Confidence":96.65988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57081}],"Text":"glass","Confidence":96.0929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47184}],"Text":"new","Confidence":94.713264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":97.82398}],"Text":"qf","Confidence":56.471172}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57358}],"Text":"database","Confidence":97.00099},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5726}],"Text":"party","Confidence":96.994286},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.57131}],"Text":"3rd","Confidence":96.96588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56905}],"Text":"line","Confidence":96.92517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57018}],"Text":"for","Confidence":96.89395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57204}],"Text":"the","Confidence":96.7689},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57035}],"Text":"archive","Confidence":96.74805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57468}],"Text":"bottle","Confidence":96.66644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.572205}],"Text":"connector","Confidence":96.65988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57081}],"Text":"glass","Confidence":96.0929},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47184}],"Text":"new","Confidence":94.713264},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Q","Confidence":97.82398}],"Text":"qf","Confidence":56.471172}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(0%).json deleted file mode 100644 index 43255a4..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57432}],"Text":"for","Confidence":97.013885},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.57354}],"Text":"3rd","Confidence":96.94809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57429}],"Text":"the","Confidence":96.9474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57383}],"Text":"new","Confidence":96.94129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56976}],"Text":"connector","Confidence":96.89474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57349}],"Text":"database","Confidence":96.859146},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.49945}],"Text":"party","Confidence":96.49616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.42595}],"Text":"time","Confidence":95.98163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.49084}],"Text":"mm","Confidence":95.891754},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.40065}],"Text":"ok","Confidence":95.80454},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56703}],"Text":"cycle","Confidence":95.575836},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.365}],"Text":"equipment","Confidence":95.55497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.51054}],"Text":"next","Confidence":95.52693},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568474}],"Text":"archive","Confidence":95.515976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569626}],"Text":"cancel","Confidence":95.3593},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5334}],"Text":"assigned","Confidence":95.056435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.45162}],"Text":"description","Confidence":93.26512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.549644}],"Text":"project","Confidence":92.445206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5384}],"Text":"data","Confidence":91.4835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5713}],"Text":"source","Confidence":91.4835},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.02587}],"Text":"metadsta","Confidence":91.01717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.566505}],"Text":"total","Confidence":89.77983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.178154}],"Text":"identification","Confidence":87.2471},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.66571}],"Text":"variables","Confidence":83.66},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":97.56522}],"Text":"groups","Confidence":82.95654}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(10%).json deleted file mode 100644 index 099894d..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.5747}],"Text":"line","Confidence":96.98655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57452}],"Text":"groups","Confidence":96.98566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56963}],"Text":"previous","Confidence":96.928116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57469}],"Text":"archive","Confidence":96.8627},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.574684}],"Text":"for","Confidence":96.82201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56033}],"Text":"cycle","Confidence":96.820465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57385}],"Text":"time","Confidence":96.820465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.57079}],"Text":"bottle","Confidence":96.81958},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.573364}],"Text":"glass","Confidence":96.7124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.52555}],"Text":"new","Confidence":96.67883},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.573265}],"Text":"3rd","Confidence":96.63275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574455}],"Text":"database","Confidence":96.613304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57427}],"Text":"description","Confidence":96.56995},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55449}],"Text":"project","Confidence":96.501945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573944}],"Text":"party","Confidence":96.47968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57389}],"Text":"the","Confidence":96.26604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574165}],"Text":"assigned","Confidence":96.21273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.566055}],"Text":"equipment","Confidence":96.21273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57119}],"Text":"connector","Confidence":95.931465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56866}],"Text":"next","Confidence":95.65861},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.25655}],"Text":"ok","Confidence":94.7959},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.287674}],"Text":"mm","Confidence":94.61372},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.52547}],"Text":"identification","Confidence":93.51153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57106}],"Text":"cancel","Confidence":92.58058},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.921326}],"Text":"visualname","Confidence":92.44926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.65984}],"Text":"source","Confidence":88.71785},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56721}],"Text":"metadata","Confidence":85.70765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.452805}],"Text":"data","Confidence":85.70765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":97.593}],"Text":"dd","Confidence":83.15103},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.58483}],"Text":"variables","Confidence":83.09381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.222244}],"Text":"ss","Confidence":79.83687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.36469}],"Text":"hh","Confidence":78.87696}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(20%).json index ed31a94..47aa4fa 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.57437}],"Text":"line","Confidence":96.99085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574}],"Text":"source","Confidence":96.98183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57204}],"Text":"data","Confidence":96.968475},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.56806}],"Text":"3rd","Confidence":96.96022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5529}],"Text":"connector","Confidence":96.851166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57434}],"Text":"for","Confidence":96.83037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57453}],"Text":"new","Confidence":96.79843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56894}],"Text":"database","Confidence":96.77062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57163}],"Text":"glass","Confidence":96.77046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57412}],"Text":"groups","Confidence":96.76297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55028}],"Text":"cycle","Confidence":96.753494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.5713}],"Text":"bottle","Confidence":96.74687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57319}],"Text":"description","Confidence":96.73018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57272}],"Text":"equipment","Confidence":96.68758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.571915}],"Text":"time","Confidence":96.68071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56304}],"Text":"the","Confidence":96.64792},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57164}],"Text":"archive","Confidence":96.62888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55919}],"Text":"project","Confidence":96.62385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56438}],"Text":"metadata","Confidence":96.56943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57487}],"Text":"party","Confidence":96.49324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.498436}],"Text":"identification","Confidence":95.7699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.54854}],"Text":"hh","Confidence":93.012985},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02227}],"Text":"visualname","Confidence":92.71376},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.31369}],"Text":"assigned","Confidence":88.195854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.361275}],"Text":"dd","Confidence":72.60341},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.01493}],"Text":"06","Confidence":71.81227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.27037}],"Text":"mm","Confidence":60.400604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56577}],"Text":"variables","Confidence":58.03471}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.57437}],"Text":"line","Confidence":96.99085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.574}],"Text":"source","Confidence":96.98183},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57204}],"Text":"data","Confidence":96.968475},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":99.56806}],"Text":"3rd","Confidence":96.96022},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.5529}],"Text":"connector","Confidence":96.851166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57434}],"Text":"for","Confidence":96.83037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57453}],"Text":"new","Confidence":96.79843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56894}],"Text":"database","Confidence":96.77062},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.57163}],"Text":"glass","Confidence":96.77046},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57412}],"Text":"groups","Confidence":96.76297},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55028}],"Text":"cycle","Confidence":96.753494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":99.5713}],"Text":"bottle","Confidence":96.74687},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57319}],"Text":"description","Confidence":96.73018},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.57272}],"Text":"equipment","Confidence":96.68758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.571915}],"Text":"time","Confidence":96.68071},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56304}],"Text":"the","Confidence":96.64792},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57164}],"Text":"archive","Confidence":96.62888},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55919}],"Text":"project","Confidence":96.62385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56438}],"Text":"metadata","Confidence":96.56943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57487}],"Text":"party","Confidence":96.49324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.498436}],"Text":"identification","Confidence":95.7699},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.54854}],"Text":"hh","Confidence":93.012985},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02227}],"Text":"visualname","Confidence":92.71376},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.31369}],"Text":"assigned","Confidence":88.195854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.361275}],"Text":"dd","Confidence":72.60341},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"0","Confidence":97.01493}],"Text":"06","Confidence":71.81227},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.27037}],"Text":"mm","Confidence":60.400604},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56577}],"Text":"variables","Confidence":58.03471}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(40%).json index 3723243..d272bfa 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.574135}],"Text":"equipment","Confidence":96.91021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5733}],"Text":"groups","Confidence":96.87176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.565155}],"Text":"media","Confidence":96.85645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573906}],"Text":"assigned","Confidence":96.61417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54206}],"Text":"time","Confidence":96.44109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.565155}],"Text":"project","Confidence":96.33541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57354}],"Text":"data","Confidence":96.062706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54511}],"Text":"cycle","Confidence":95.97109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49461}],"Text":"description","Confidence":95.840904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54166}],"Text":"metadata","Confidence":95.73207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57131}],"Text":"source","Confidence":94.20213},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.812584}],"Text":"variables","Confidence":91.68807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.135475}],"Text":"mm","Confidence":90.76352},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.006615}],"Text":"visualname","Confidence":90.52109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.38335}],"Text":"ss","Confidence":84.193855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.57348}],"Text":"identification","Confidence":70.18436}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":99.574135}],"Text":"equipment","Confidence":96.91021},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.5733}],"Text":"groups","Confidence":96.87176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.565155}],"Text":"media","Confidence":96.85645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.573906}],"Text":"assigned","Confidence":96.61417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54206}],"Text":"time","Confidence":96.44109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.565155}],"Text":"project","Confidence":96.33541},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57354}],"Text":"data","Confidence":96.062706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54511}],"Text":"cycle","Confidence":95.97109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49461}],"Text":"description","Confidence":95.840904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54166}],"Text":"metadata","Confidence":95.73207},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57131}],"Text":"source","Confidence":94.20213},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.812584}],"Text":"variables","Confidence":91.68807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.135475}],"Text":"mm","Confidence":90.76352},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.006615}],"Text":"visualname","Confidence":90.52109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.38335}],"Text":"ss","Confidence":84.193855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.57348}],"Text":"identification","Confidence":70.18436}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(50%).json index 9eae8c0..c554e13 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57037}],"Text":"media","Confidence":94.85809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.563774}],"Text":"plant","Confidence":93.54229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.43028}],"Text":"hab","Confidence":60.508213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.9341}],"Text":"ao","Confidence":55.43678}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57037}],"Text":"media","Confidence":94.85809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.563774}],"Text":"plant","Confidence":93.54229},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":95.43028}],"Text":"hab","Confidence":60.508213},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.9341}],"Text":"ao","Confidence":55.43678}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(70%).json index b1f637f..91c895e 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54307}],"Text":"plant","Confidence":95.440636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.52642}],"Text":"media","Confidence":94.956665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.44034}],"Text":"total","Confidence":76.75988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.45783}],"Text":"hh","Confidence":72.66864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.59368}],"Text":"ao","Confidence":71.24532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.29571}],"Text":"fo","Confidence":61.940567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.363976}],"Text":"ey","Confidence":53.547813}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.54307}],"Text":"plant","Confidence":95.440636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.52642}],"Text":"media","Confidence":94.956665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.44034}],"Text":"total","Confidence":76.75988},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":97.45783}],"Text":"hh","Confidence":72.66864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.59368}],"Text":"ao","Confidence":71.24532},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":96.29571}],"Text":"fo","Confidence":61.940567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.363976}],"Text":"ey","Confidence":53.547813}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(80%).json index 5b559fc..a0afdbe 100644 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0018} \ No newline at end of file +{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(90%).json deleted file mode 100644 index cc08c1b..0000000 --- a/Examples/testdata/results/zrs_ZAMS_3rd-connector_014.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.44033}],"Text":"plant","Confidence":89.08231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.57531}],"Text":"media","Confidence":83.027145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":97.61212}],"Text":"total","Confidence":76.70277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.456696}],"Text":"eb","Confidence":73.15202},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"T","Confidence":93.6374}],"Text":"tb","Confidence":55.461792}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Kapur).json index 39a9229..feedb49 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57103}],"Text":"use","Confidence":96.93757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57415}],"Text":"that","Confidence":96.91884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55015}],"Text":"path","Confidence":96.85104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57281}],"Text":"this","Confidence":96.821014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54939}],"Text":"options","Confidence":96.68506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5686}],"Text":"parameter","Confidence":96.52359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50585}],"Text":"name","Confidence":96.50143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.48786}],"Text":"provider","Confidence":96.41501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53916}],"Text":"are","Confidence":96.263626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.44938}],"Text":"non","Confidence":96.14563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55289}],"Text":"enable","Confidence":96.08873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.570854}],"Text":"updates","Confidence":95.97435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51461}],"Text":"access","Confidence":95.960724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55985}],"Text":"operator","Confidence":95.70845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53145}],"Text":"adhoc","Confidence":95.67807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.382416}],"Text":"provider","Confidence":95.676926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56558}],"Text":"transacted","Confidence":95.56588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55403}],"Text":"to","Confidence":95.48116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57163}],"Text":"servers","Confidence":95.47997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57355}],"Text":"queries","Confidence":95.37973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56976}],"Text":"zero","Confidence":95.1914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41606}],"Text":"options","Confidence":94.86038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55827}],"Text":"level","Confidence":94.35066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57349}],"Text":"supports","Confidence":93.84382},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56711}],"Text":"only","Confidence":92.48},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83339}],"Text":"applied","Confidence":91.83371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.79232}],"Text":"these","Confidence":91.54623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568375}],"Text":"all","Confidence":91.21281},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.96156}],"Text":"nested","Confidence":91.084854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.29403}],"Text":"as","Confidence":90.985855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.41294}],"Text":"general","Confidence":90.69688},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.77195}],"Text":"oynamic","Confidence":87.78735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.45345}],"Text":"server","Confidence":87.57553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.741486}],"Text":"disallow","Confidence":86.03871},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.91911}],"Text":"inprocess","Confidence":85.43379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.84022}],"Text":"index","Confidence":84.8815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.38878}],"Text":"allow","Confidence":82.69303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.76318}],"Text":"bd","Confidence":77.34226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":96.74751}],"Text":"linked","Confidence":77.23256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.09603}],"Text":"dynamic","Confidence":72.672226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":94.68728}],"Text":"heb","Confidence":62.81093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.41372}],"Text":"ica","Confidence":59.76898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.831436}],"Text":"um","Confidence":51.92997}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57103}],"Text":"use","Confidence":96.93757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57415}],"Text":"that","Confidence":96.91884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55015}],"Text":"path","Confidence":96.85104},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57281}],"Text":"this","Confidence":96.821014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54939}],"Text":"options","Confidence":96.68506},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5686}],"Text":"parameter","Confidence":96.52359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50585}],"Text":"name","Confidence":96.50143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.48786}],"Text":"provider","Confidence":96.41501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53916}],"Text":"are","Confidence":96.263626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.44938}],"Text":"non","Confidence":96.14563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55289}],"Text":"enable","Confidence":96.08873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.570854}],"Text":"updates","Confidence":95.97435},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.51461}],"Text":"access","Confidence":95.960724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55985}],"Text":"operator","Confidence":95.70845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53145}],"Text":"adhoc","Confidence":95.67807},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.382416}],"Text":"provider","Confidence":95.676926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56558}],"Text":"transacted","Confidence":95.56588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55403}],"Text":"to","Confidence":95.48116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57163}],"Text":"servers","Confidence":95.47997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57355}],"Text":"queries","Confidence":95.37973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56976}],"Text":"zero","Confidence":95.1914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.41606}],"Text":"options","Confidence":94.86038},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55827}],"Text":"level","Confidence":94.35066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57349}],"Text":"supports","Confidence":93.84382},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56711}],"Text":"only","Confidence":92.48},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.83339}],"Text":"applied","Confidence":91.83371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":98.79232}],"Text":"these","Confidence":91.54623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.568375}],"Text":"all","Confidence":91.21281},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.96156}],"Text":"nested","Confidence":91.084854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.29403}],"Text":"as","Confidence":90.985855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.41294}],"Text":"general","Confidence":90.69688},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.77195}],"Text":"oynamic","Confidence":87.78735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.45345}],"Text":"server","Confidence":87.57553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.741486}],"Text":"disallow","Confidence":86.03871},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.91911}],"Text":"inprocess","Confidence":85.43379},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.84022}],"Text":"index","Confidence":84.8815},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.38878}],"Text":"allow","Confidence":82.69303},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":96.76318}],"Text":"bd","Confidence":77.34226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":96.74751}],"Text":"linked","Confidence":77.23256},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.09603}],"Text":"dynamic","Confidence":72.672226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":94.68728}],"Text":"heb","Confidence":62.81093},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":97.41372}],"Text":"ica","Confidence":59.76898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.831436}],"Text":"um","Confidence":51.92997}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(OTSU).json index 00edf01..991736d 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5731}],"Text":"are","Confidence":97.005226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573296}],"Text":"this","Confidence":97.00248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57173}],"Text":"options","Confidence":96.97889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57447}],"Text":"servers","Confidence":96.87862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574326}],"Text":"path","Confidence":96.730415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5731}],"Text":"provider","Confidence":96.675186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56833}],"Text":"as","Confidence":96.60163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56876}],"Text":"level","Confidence":96.45799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.570915}],"Text":"zero","Confidence":96.45799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.567245}],"Text":"nested","Confidence":96.421455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.47901}],"Text":"these","Confidence":96.353065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5452}],"Text":"that","Confidence":96.333374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56742}],"Text":"use","Confidence":96.333374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56063}],"Text":"parameter","Confidence":96.26161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.445015}],"Text":"server","Confidence":96.11508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56983}],"Text":"server","Confidence":96.04274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57177}],"Text":"provider","Confidence":96.03732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57356}],"Text":"progress","Confidence":95.92707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.564674}],"Text":"to","Confidence":95.79326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.530136}],"Text":"using","Confidence":95.25045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56745}],"Text":"linked","Confidence":95.100525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.39833}],"Text":"ready","Confidence":94.921394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.475266}],"Text":"updates","Confidence":94.86634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55511}],"Text":"connection","Confidence":94.74709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56044}],"Text":"only","Confidence":94.67703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56251}],"Text":"connection","Confidence":94.51757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56592}],"Text":"access","Confidence":93.701805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57414}],"Text":"queries","Confidence":93.047585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56033}],"Text":"supports","Confidence":91.98369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5526}],"Text":"all","Confidence":91.576706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5301}],"Text":"view","Confidence":90.796074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56133}],"Text":"non","Confidence":90.47945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57285}],"Text":"transacted","Confidence":90.47945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.318085}],"Text":"operator","Confidence":88.22659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5736}],"Text":"adhoc","Confidence":87.07497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.51124}],"Text":"disallow","Confidence":86.6738},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.69959}],"Text":"my_sql_server","Confidence":85.170525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.78164}],"Text":"index","Confidence":84.47148},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.81528}],"Text":"inprocess","Confidence":83.3425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.87574}],"Text":"like","Confidence":81.87377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00765}],"Text":"my_sql_","Confidence":81.46811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.543465}],"Text":"dynamic","Confidence":73.606064},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.906334}],"Text":"cdsbgo36","Confidence":62.56838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.338715}],"Text":"onis","Confidence":62.37251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.30276}],"Text":"allow","Confidence":58.357407}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5731}],"Text":"are","Confidence":97.005226},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573296}],"Text":"this","Confidence":97.00248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57173}],"Text":"options","Confidence":96.97889},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57447}],"Text":"servers","Confidence":96.87862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574326}],"Text":"path","Confidence":96.730415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5731}],"Text":"provider","Confidence":96.675186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56833}],"Text":"as","Confidence":96.60163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56876}],"Text":"level","Confidence":96.45799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.570915}],"Text":"zero","Confidence":96.45799},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.567245}],"Text":"nested","Confidence":96.421455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.47901}],"Text":"these","Confidence":96.353065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5452}],"Text":"that","Confidence":96.333374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56742}],"Text":"use","Confidence":96.333374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56063}],"Text":"parameter","Confidence":96.26161},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.445015}],"Text":"server","Confidence":96.11508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56983}],"Text":"server","Confidence":96.04274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57177}],"Text":"provider","Confidence":96.03732},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57356}],"Text":"progress","Confidence":95.92707},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.564674}],"Text":"to","Confidence":95.79326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.530136}],"Text":"using","Confidence":95.25045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56745}],"Text":"linked","Confidence":95.100525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.39833}],"Text":"ready","Confidence":94.921394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.475266}],"Text":"updates","Confidence":94.86634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55511}],"Text":"connection","Confidence":94.74709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56044}],"Text":"only","Confidence":94.67703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.56251}],"Text":"connection","Confidence":94.51757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56592}],"Text":"access","Confidence":93.701805},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57414}],"Text":"queries","Confidence":93.047585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56033}],"Text":"supports","Confidence":91.98369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5526}],"Text":"all","Confidence":91.576706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5301}],"Text":"view","Confidence":90.796074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56133}],"Text":"non","Confidence":90.47945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57285}],"Text":"transacted","Confidence":90.47945},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.318085}],"Text":"operator","Confidence":88.22659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5736}],"Text":"adhoc","Confidence":87.07497},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.51124}],"Text":"disallow","Confidence":86.6738},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.69959}],"Text":"my_sql_server","Confidence":85.170525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.78164}],"Text":"index","Confidence":84.47148},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.81528}],"Text":"inprocess","Confidence":83.3425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.87574}],"Text":"like","Confidence":81.87377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00765}],"Text":"my_sql_","Confidence":81.46811},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.543465}],"Text":"dynamic","Confidence":73.606064},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.906334}],"Text":"cdsbgo36","Confidence":62.56838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.338715}],"Text":"onis","Confidence":62.37251},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.30276}],"Text":"allow","Confidence":58.357407}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Triangle).json index a92137e..c01b90b 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.93005}],"Text":"access","Confidence":85.51038},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.88308}],"Text":"adhec","Confidence":84.85675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.26227}],"Text":"au","Confidence":79.60307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":96.886856}],"Text":"non","Confidence":78.20797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.184425}],"Text":"index","Confidence":72.59335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.985855}],"Text":"disallow","Confidence":69.52965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.54218}],"Text":"us","Confidence":61.547997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.87588}],"Text":"opener","Confidence":55.044533}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.93005}],"Text":"access","Confidence":85.51038},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.88308}],"Text":"adhec","Confidence":84.85675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.26227}],"Text":"au","Confidence":79.60307},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":96.886856}],"Text":"non","Confidence":78.20797},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.184425}],"Text":"index","Confidence":72.59335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.985855}],"Text":"disallow","Confidence":69.52965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.54218}],"Text":"us","Confidence":61.547997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":97.87588}],"Text":"opener","Confidence":55.044533}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 8bfdded..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.86167}],"Text":"dah","Confidence":62.728153},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":94.241974}],"Text":"unites","Confidence":53.928127}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(04_04).json index 281c6d9..8e845e2 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.43275}],"Text":"connection","Confidence":93.04068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.641716}],"Text":"mew","Confidence":79.8621},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.27183}],"Text":"myasgieserver","Confidence":74.81003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.21343}],"Text":"propenies","Confidence":71.2923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.98624}],"Text":"this","Confidence":64.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.95142}],"Text":"linked","Confidence":57.659973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":92.96071}],"Text":"server","Confidence":50.724987}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.43275}],"Text":"connection","Confidence":93.04068},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.641716}],"Text":"mew","Confidence":79.8621},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.27183}],"Text":"myasgieserver","Confidence":74.81003},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.21343}],"Text":"propenies","Confidence":71.2923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":98.98624}],"Text":"this","Confidence":64.65405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.95142}],"Text":"linked","Confidence":57.659973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":92.96071}],"Text":"server","Confidence":50.724987}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 7a234d5..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57432}],"Text":"path","Confidence":96.82167},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.35906}],"Text":"server","Confidence":95.32851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573975}],"Text":"this","Confidence":95.268845},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.39639}],"Text":"option","Confidence":94.85953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56685}],"Text":"access","Confidence":94.350365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.52961}],"Text":"level","Confidence":92.381935},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.53135}],"Text":"zero","Confidence":89.51262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":98.21044}],"Text":"servers","Confidence":87.47309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":98.16759}],"Text":"using","Confidence":87.173096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49755}],"Text":"as","Confidence":83.170135},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.211174}],"Text":"connection","Confidence":79.38004},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.655685}],"Text":"cd","Confidence":78.485},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.505974}],"Text":"gnked","Confidence":73.348274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":97.508354}],"Text":"generel","Confidence":71.069885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.54901}],"Text":"index","Confidence":67.300705},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":96.82214}],"Text":"selecta","Confidence":61.257835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57007}],"Text":"page","Confidence":58.63669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.918594}],"Text":"fur","Confidence":57.246887},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.78312}],"Text":"cd","Confidence":56.481853},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.71145}],"Text":"cdsbg036","Confidence":55.086514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.56463}],"Text":"selecta","Confidence":52.17544},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":93.19501}],"Text":"or\u0027y","Confidence":52.122147},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":98.2562}],"Text":"digallaw","Confidence":51.176125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":92.95183}],"Text":"access","Confidence":50.662804},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":95.112366}],"Text":"sn","Confidence":50.58763},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"S","Confidence":92.91576}],"Text":"sdhoc","Confidence":50.41029}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(08_08).json index dfc6044..e92efaf 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57386}],"Text":"prov","Confidence":96.869125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55653}],"Text":"this","Confidence":96.84453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.55566}],"Text":"use","Confidence":96.77628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.42204}],"Text":"are","Confidence":95.954285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54835}],"Text":"connection","Confidence":95.22855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.310326}],"Text":"to","Confidence":95.17228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.313225}],"Text":"options","Confidence":94.54756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.545006}],"Text":"connection","Confidence":89.21614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.38795}],"Text":"linked","Confidence":88.715614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.43099}],"Text":"server","Confidence":84.381454},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02502}],"Text":"cd","Confidence":84.34323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.286514}],"Text":"servers","Confidence":80.28938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":96.90101}],"Text":"provider","Confidence":78.30705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.00584}],"Text":"cdsbg036","Confidence":74.800865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.26213}],"Text":"view","Confidence":73.83494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.21028}],"Text":"that","Confidence":73.47195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.15027}],"Text":"all","Confidence":73.05188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.12147}],"Text":"applied","Confidence":72.85026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.512024}],"Text":"progress","Confidence":69.266014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":94.35272}],"Text":"ge","Confidence":60.46905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.4785}],"Text":"properties","Confidence":58.44212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":93.04105}],"Text":"nn","Confidence":51.28738}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57386}],"Text":"prov","Confidence":96.869125},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55653}],"Text":"this","Confidence":96.84453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.55566}],"Text":"use","Confidence":96.77628},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.42204}],"Text":"are","Confidence":95.954285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54835}],"Text":"connection","Confidence":95.22855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.310326}],"Text":"to","Confidence":95.17228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.313225}],"Text":"options","Confidence":94.54756},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.545006}],"Text":"connection","Confidence":89.21614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.38795}],"Text":"linked","Confidence":88.715614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.43099}],"Text":"server","Confidence":84.381454},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02502}],"Text":"cd","Confidence":84.34323},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":98.286514}],"Text":"servers","Confidence":80.28938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":96.90101}],"Text":"provider","Confidence":78.30705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.00584}],"Text":"cdsbg036","Confidence":74.800865},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.26213}],"Text":"view","Confidence":73.83494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.21028}],"Text":"that","Confidence":73.47195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":96.15027}],"Text":"all","Confidence":73.05188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":96.12147}],"Text":"applied","Confidence":72.85026},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":98.512024}],"Text":"progress","Confidence":69.266014},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":94.35272}],"Text":"ge","Confidence":60.46905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.4785}],"Text":"properties","Confidence":58.44212},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"n","Confidence":93.04105}],"Text":"nn","Confidence":51.28738}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index cdc30ea..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57407}],"Text":"nested","Confidence":96.535645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.562294}],"Text":"queries","Confidence":96.09267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.52792}],"Text":"general","Confidence":87.117},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55309}],"Text":"selecta","Confidence":70.5967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.541275}],"Text":"page","Confidence":70.5967},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"r","Confidence":95.70509}],"Text":"rogress","Confidence":69.93567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":96.934326}],"Text":"de","Confidence":51.460644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":95.8152}],"Text":"ge","Confidence":51.17579}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(12_12).json index 454b69f..253e18a 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56951}],"Text":"db","Confidence":96.92296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57273}],"Text":"this","Confidence":96.92255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57148}],"Text":"use","Confidence":96.90394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57151}],"Text":"for","Confidence":96.903114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55205}],"Text":"provider","Confidence":96.86434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.545845}],"Text":"using","Confidence":96.43007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.562256}],"Text":"odbc","Confidence":96.27063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56727}],"Text":"options","Confidence":96.17681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54782}],"Text":"microsoft","Confidence":96.15185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.5598}],"Text":"ole","Confidence":96.15185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43464}],"Text":"to","Confidence":94.47047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57382}],"Text":"all","Confidence":94.47047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572495}],"Text":"drivers","Confidence":93.808655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53539}],"Text":"servers","Confidence":93.21381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57289}],"Text":"are","Confidence":92.41101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.59034}],"Text":"inked","Confidence":90.132355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572716}],"Text":"that","Confidence":89.51436},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.075226}],"Text":"unked","Confidence":86.526596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74438}],"Text":"operctor","Confidence":86.03648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.53359}],"Text":"updates","Confidence":84.5227},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.27493}],"Text":"2s","Confidence":78.36827},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.5051}],"Text":"trensacted","Confidence":75.53568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47734}],"Text":"non","Confidence":75.1996},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.5725}],"Text":"appied","Confidence":72.611664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572205}],"Text":"provider","Confidence":67.91371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.41247}],"Text":"il","Confidence":67.88729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.566055}],"Text":"supports","Confidence":61.658882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.742615}],"Text":"access","Confidence":59.99109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.222115}],"Text":"these","Confidence":58.827785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.991875}],"Text":"achoc","Confidence":57.943115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55625}],"Text":"applied","Confidence":53.65567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.16838}],"Text":"mail","Confidence":51.978477}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56951}],"Text":"db","Confidence":96.92296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57273}],"Text":"this","Confidence":96.92255},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57148}],"Text":"use","Confidence":96.90394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57151}],"Text":"for","Confidence":96.903114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55205}],"Text":"provider","Confidence":96.86434},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.545845}],"Text":"using","Confidence":96.43007},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.562256}],"Text":"odbc","Confidence":96.27063},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56727}],"Text":"options","Confidence":96.17681},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54782}],"Text":"microsoft","Confidence":96.15185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.5598}],"Text":"ole","Confidence":96.15185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.43464}],"Text":"to","Confidence":94.47047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57382}],"Text":"all","Confidence":94.47047},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572495}],"Text":"drivers","Confidence":93.808655},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.53539}],"Text":"servers","Confidence":93.21381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57289}],"Text":"are","Confidence":92.41101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.59034}],"Text":"inked","Confidence":90.132355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.572716}],"Text":"that","Confidence":89.51436},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.075226}],"Text":"unked","Confidence":86.526596},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":98.74438}],"Text":"operctor","Confidence":86.03648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.53359}],"Text":"updates","Confidence":84.5227},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":98.27493}],"Text":"2s","Confidence":78.36827},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"t","Confidence":96.5051}],"Text":"trensacted","Confidence":75.53568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.47734}],"Text":"non","Confidence":75.1996},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.5725}],"Text":"appied","Confidence":72.611664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.572205}],"Text":"provider","Confidence":67.91371},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":95.41247}],"Text":"il","Confidence":67.88729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.566055}],"Text":"supports","Confidence":61.658882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":94.742615}],"Text":"access","Confidence":59.99109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.222115}],"Text":"these","Confidence":58.827785},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":93.991875}],"Text":"achoc","Confidence":57.943115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55625}],"Text":"applied","Confidence":53.65567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":94.16838}],"Text":"mail","Confidence":51.978477}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index e294506..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56477}],"Text":"server","Confidence":96.93431},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55886}],"Text":"this","Confidence":96.90064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55265}],"Text":"options","Confidence":96.86853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57295}],"Text":"are","Confidence":96.7733},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57423}],"Text":"that","Confidence":96.75494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.526695}],"Text":"servers","Confidence":96.686874},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57031}],"Text":"use","Confidence":96.64162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57014}],"Text":"to","Confidence":94.34521},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.567215}],"Text":"provider","Confidence":87.4924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.54066}],"Text":"these","Confidence":87.15978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.87874}],"Text":"all","Confidence":77.41823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.05484}],"Text":"inked","Confidence":77.41823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56295}],"Text":"applied","Confidence":70.61365},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.70576}],"Text":"my-sql-","Confidence":69.96602}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(16_16).json index d7eeb80..bf61384 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.0004} \ No newline at end of file +{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 0be5e89..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5632}],"Text":"server","Confidence":96.46634},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.03771}],"Text":"my_sql","Confidence":77.59689}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(20_20).json index ecb2ef8..9817d43 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57372}],"Text":"for","Confidence":96.99027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57452}],"Text":"provider","Confidence":96.866394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.567955}],"Text":"microsoft","Confidence":96.8429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55453}],"Text":"ole","Confidence":96.816864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57159}],"Text":"db","Confidence":96.816864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.565094}],"Text":"selecta","Confidence":96.68989},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5177}],"Text":"page","Confidence":96.62389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.538155}],"Text":"odbc","Confidence":96.50966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5697}],"Text":"server","Confidence":95.9719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56527}],"Text":"connection","Confidence":94.754036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.569305}],"Text":"options","Confidence":93.23261},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.95393}],"Text":"my_sql_server","Confidence":87.15692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.55165}],"Text":"drivers","Confidence":84.42377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.38927}],"Text":"general","Confidence":79.2514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00731}],"Text":"my_sql_","Confidence":71.60721}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57372}],"Text":"for","Confidence":96.99027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57452}],"Text":"provider","Confidence":96.866394},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.567955}],"Text":"microsoft","Confidence":96.8429},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55453}],"Text":"ole","Confidence":96.816864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57159}],"Text":"db","Confidence":96.816864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.565094}],"Text":"selecta","Confidence":96.68989},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5177}],"Text":"page","Confidence":96.62389},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.538155}],"Text":"odbc","Confidence":96.50966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5697}],"Text":"server","Confidence":95.9719},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56527}],"Text":"connection","Confidence":94.754036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.569305}],"Text":"options","Confidence":93.23261},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.95393}],"Text":"my_sql_server","Confidence":87.15692},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.55165}],"Text":"drivers","Confidence":84.42377},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.38927}],"Text":"general","Confidence":79.2514},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.00731}],"Text":"my_sql_","Confidence":71.60721}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index dfe5ddf..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.573814}],"Text":"ole","Confidence":96.97854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56828}],"Text":"that","Confidence":96.94903},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.570946}],"Text":"these","Confidence":96.90137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56437}],"Text":"use","Confidence":96.86275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57161}],"Text":"server","Confidence":96.82163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55027}],"Text":"this","Confidence":96.80273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57368}],"Text":"provider","Confidence":96.78039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56857}],"Text":"options","Confidence":96.77682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56921}],"Text":"selecta","Confidence":96.71703},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.529366}],"Text":"are","Confidence":96.70558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.54783}],"Text":"microsoft","Confidence":96.0812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57331}],"Text":"db","Confidence":95.95939},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.48842}],"Text":"servers","Confidence":95.92994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56897}],"Text":"drivers","Confidence":95.76976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57232}],"Text":"provider","Confidence":95.66582},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.573616}],"Text":"odbc","Confidence":95.515114},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.435005}],"Text":"page","Confidence":95.475494},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.52064}],"Text":"using","Confidence":95.261826},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.30513}],"Text":"inked","Confidence":94.95562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54552}],"Text":"to","Confidence":94.33281},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.34749}],"Text":"all","Confidence":94.33281},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57212}],"Text":"for","Confidence":92.906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.563225}],"Text":"provider","Confidence":90.890495},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.04188}],"Text":"connecton","Confidence":87.99263},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"U","Confidence":97.75002}],"Text":"unked","Confidence":84.250175},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.84162}],"Text":"my_sgl","Confidence":75.3519},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52621}],"Text":"ss","Confidence":70.6946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.43422}],"Text":"gener","Confidence":60.555115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.97387}],"Text":"ni","Confidence":54.733997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.73782}],"Text":"nig","Confidence":51.277767},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56106}],"Text":"applied","Confidence":50.684795}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(24_24).json index d85ff0c..e47445d 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57299}],"Text":"provider","Confidence":96.91015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55293}],"Text":"for","Confidence":96.87054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57165}],"Text":"server","Confidence":96.77834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55116}],"Text":"odbc","Confidence":96.656715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.551025}],"Text":"db","Confidence":96.369385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.574}],"Text":"microsoft","Confidence":95.75588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57295}],"Text":"ole","Confidence":95.21864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54577}],"Text":"options","Confidence":93.28315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49416}],"Text":"drivers","Confidence":92.97295}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57299}],"Text":"provider","Confidence":96.91015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.55293}],"Text":"for","Confidence":96.87054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57165}],"Text":"server","Confidence":96.77834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55116}],"Text":"odbc","Confidence":96.656715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.551025}],"Text":"db","Confidence":96.369385},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.574}],"Text":"microsoft","Confidence":95.75588},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57295}],"Text":"ole","Confidence":95.21864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54577}],"Text":"options","Confidence":93.28315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49416}],"Text":"drivers","Confidence":92.97295}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(10%).json deleted file mode 100644 index 0cef4c6..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.56969}],"Text":"provider","Confidence":96.74942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.5725}],"Text":"ole","Confidence":96.60731},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57479}],"Text":"microsoft","Confidence":96.52348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57228}],"Text":"for","Confidence":96.51455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.52041}],"Text":"odbc","Confidence":94.94662},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56656}],"Text":"db","Confidence":89.037704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":95.72735}],"Text":"options","Confidence":70.09143},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.097984}],"Text":"page","Confidence":67.11832}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(20%).json index 1f62276..6d67e2b 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56271}],"Text":"db","Confidence":96.84298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56492}],"Text":"for","Confidence":96.81867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54164}],"Text":"ole","Confidence":96.7915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57303}],"Text":"provider","Confidence":96.59442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.51044}],"Text":"odbc","Confidence":96.57306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.43721}],"Text":"der","Confidence":95.62765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571365}],"Text":"select","Confidence":95.57324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.569466}],"Text":"microsoft","Confidence":95.55222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49921}],"Text":"are","Confidence":95.346375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.50086}],"Text":"page","Confidence":95.12398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.287094}],"Text":"server","Confidence":95.009636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57238}],"Text":"dynamic","Confidence":93.197586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53644}],"Text":"this","Confidence":92.91852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.33742}],"Text":"these","Confidence":92.88148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57076}],"Text":"parameter","Confidence":92.820045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55617}],"Text":"options","Confidence":92.788925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573494}],"Text":"servers","Confidence":92.709366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.40891}],"Text":"opt","Confidence":90.90008},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.40896}],"Text":"ok","Confidence":88.86271},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02909}],"Text":"prowder","Confidence":88.76439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.41794}],"Text":"cer","Confidence":88.40508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56825}],"Text":"using","Confidence":85.93523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.81932}],"Text":"gereral","Confidence":83.91179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.099464}],"Text":"ons","Confidence":71.464554},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.041504}],"Text":"linked","Confidence":71.20206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":95.77075}],"Text":"name","Confidence":70.395294},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":97.488464}],"Text":"quenes","Confidence":70.14357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.63536}],"Text":"co","Confidence":69.44752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.35269}],"Text":"al","Confidence":67.99182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.295616}],"Text":"ans","Confidence":67.06932},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.93374}],"Text":"connecbon","Confidence":65.48388},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.235146}],"Text":"lrxed","Confidence":64.907616},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.04135}],"Text":"prow","Confidence":64.88078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56561}],"Text":"thet","Confidence":63.089188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.93099}],"Text":"bs","Confidence":60.976418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.50223}],"Text":"hes","Confidence":56.418728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56543}],"Text":"cancel","Confidence":56.1113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.39172}],"Text":"ib","Confidence":55.762196},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.742615}],"Text":"apticrs","Confidence":54.83216}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56271}],"Text":"db","Confidence":96.84298},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56492}],"Text":"for","Confidence":96.81867},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.54164}],"Text":"ole","Confidence":96.7915},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57303}],"Text":"provider","Confidence":96.59442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.51044}],"Text":"odbc","Confidence":96.57306},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.43721}],"Text":"der","Confidence":95.62765},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.571365}],"Text":"select","Confidence":95.57324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.569466}],"Text":"microsoft","Confidence":95.55222},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49921}],"Text":"are","Confidence":95.346375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.50086}],"Text":"page","Confidence":95.12398},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.287094}],"Text":"server","Confidence":95.009636},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57238}],"Text":"dynamic","Confidence":93.197586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.53644}],"Text":"this","Confidence":92.91852},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.33742}],"Text":"these","Confidence":92.88148},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57076}],"Text":"parameter","Confidence":92.820045},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.55617}],"Text":"options","Confidence":92.788925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573494}],"Text":"servers","Confidence":92.709366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.40891}],"Text":"opt","Confidence":90.90008},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":98.40896}],"Text":"ok","Confidence":88.86271},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02909}],"Text":"prowder","Confidence":88.76439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.41794}],"Text":"cer","Confidence":88.40508},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56825}],"Text":"using","Confidence":85.93523},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"G","Confidence":98.81932}],"Text":"gereral","Confidence":83.91179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.099464}],"Text":"ons","Confidence":71.464554},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.041504}],"Text":"linked","Confidence":71.20206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":95.77075}],"Text":"name","Confidence":70.395294},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":97.488464}],"Text":"quenes","Confidence":70.14357},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":95.63536}],"Text":"co","Confidence":69.44752},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.35269}],"Text":"al","Confidence":67.99182},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.295616}],"Text":"ans","Confidence":67.06932},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":98.93374}],"Text":"connecbon","Confidence":65.48388},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.235146}],"Text":"lrxed","Confidence":64.907616},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.04135}],"Text":"prow","Confidence":64.88078},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56561}],"Text":"thet","Confidence":63.089188},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.93099}],"Text":"bs","Confidence":60.976418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.50223}],"Text":"hes","Confidence":56.418728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56543}],"Text":"cancel","Confidence":56.1113},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.39172}],"Text":"ib","Confidence":55.762196},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.742615}],"Text":"apticrs","Confidence":54.83216}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(40%).json index 1242860..22cd921 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57447}],"Text":"use","Confidence":97.007324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57339}],"Text":"that","Confidence":96.951126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57411}],"Text":"options","Confidence":96.94319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57271}],"Text":"path","Confidence":96.93757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.560875}],"Text":"servers","Confidence":96.92612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5734}],"Text":"transacted","Confidence":96.90088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57102}],"Text":"this","Confidence":96.88587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55457}],"Text":"these","Confidence":96.882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57399}],"Text":"provider","Confidence":96.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56519}],"Text":"updates","Confidence":96.86263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570045}],"Text":"provider","Confidence":96.75967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56101}],"Text":"name","Confidence":96.72518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.547455}],"Text":"parameter","Confidence":96.679344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.51982}],"Text":"level","Confidence":96.638725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.573555}],"Text":"dynamic","Confidence":96.54987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569016}],"Text":"connection","Confidence":96.547806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56982}],"Text":"zero","Confidence":96.547386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57311}],"Text":"as","Confidence":96.49512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.55568}],"Text":"general","Confidence":96.38956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57295}],"Text":"ready","Confidence":96.34169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.512794}],"Text":"index","Confidence":96.31564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573944}],"Text":"are","Confidence":96.31124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57269}],"Text":"non","Confidence":96.27259},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57142}],"Text":"supports","Confidence":96.259575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57247}],"Text":"access","Confidence":96.23374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54458}],"Text":"page","Confidence":96.163345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47649}],"Text":"to","Confidence":96.04947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5606}],"Text":"operator","Confidence":95.89869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51022}],"Text":"progress","Confidence":95.79288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57377}],"Text":"disallow","Confidence":95.77997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54203}],"Text":"provider","Confidence":95.61925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56441}],"Text":"using","Confidence":95.2592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57463}],"Text":"applied","Confidence":95.10287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52432}],"Text":"all","Confidence":94.817856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.556755}],"Text":"nested","Confidence":93.113266},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":98.99084}],"Text":"quenes","Confidence":92.46267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.47127}],"Text":"allow","Confidence":92.07241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.527504}],"Text":"server","Confidence":91.38343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.75303}],"Text":"linked","Confidence":91.27119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573814}],"Text":"only","Confidence":91.11601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.554985}],"Text":"adhoc","Confidence":90.26023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.414474}],"Text":"mew","Confidence":88.9013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57403}],"Text":"selecta","Confidence":86.16821},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":98.861496}],"Text":"32","Confidence":85.27639},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.74032}],"Text":"mprocess","Confidence":66.59985},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.762344}],"Text":"inprocess","Confidence":63.336433},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"U","Confidence":93.11064}],"Text":"uinked","Confidence":51.7745}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57447}],"Text":"use","Confidence":97.007324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57339}],"Text":"that","Confidence":96.951126},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":99.57411}],"Text":"options","Confidence":96.94319},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57271}],"Text":"path","Confidence":96.93757},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.560875}],"Text":"servers","Confidence":96.92612},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5734}],"Text":"transacted","Confidence":96.90088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57102}],"Text":"this","Confidence":96.88587},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.55457}],"Text":"these","Confidence":96.882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57399}],"Text":"provider","Confidence":96.88054},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56519}],"Text":"updates","Confidence":96.86263},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.570045}],"Text":"provider","Confidence":96.75967},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.56101}],"Text":"name","Confidence":96.72518},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.547455}],"Text":"parameter","Confidence":96.679344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.51982}],"Text":"level","Confidence":96.638725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.573555}],"Text":"dynamic","Confidence":96.54987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.569016}],"Text":"connection","Confidence":96.547806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56982}],"Text":"zero","Confidence":96.547386},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57311}],"Text":"as","Confidence":96.49512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.55568}],"Text":"general","Confidence":96.38956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57295}],"Text":"ready","Confidence":96.34169},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.512794}],"Text":"index","Confidence":96.31564},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.573944}],"Text":"are","Confidence":96.31124},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57269}],"Text":"non","Confidence":96.27259},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57142}],"Text":"supports","Confidence":96.259575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57247}],"Text":"access","Confidence":96.23374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54458}],"Text":"page","Confidence":96.163345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.47649}],"Text":"to","Confidence":96.04947},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.5606}],"Text":"operator","Confidence":95.89869},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.51022}],"Text":"progress","Confidence":95.79288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57377}],"Text":"disallow","Confidence":95.77997},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54203}],"Text":"provider","Confidence":95.61925},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56441}],"Text":"using","Confidence":95.2592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57463}],"Text":"applied","Confidence":95.10287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52432}],"Text":"all","Confidence":94.817856},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.556755}],"Text":"nested","Confidence":93.113266},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":98.99084}],"Text":"quenes","Confidence":92.46267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.47127}],"Text":"allow","Confidence":92.07241},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.527504}],"Text":"server","Confidence":91.38343},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.75303}],"Text":"linked","Confidence":91.27119},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573814}],"Text":"only","Confidence":91.11601},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.554985}],"Text":"adhoc","Confidence":90.26023},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.414474}],"Text":"mew","Confidence":88.9013},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57403}],"Text":"selecta","Confidence":86.16821},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"3","Confidence":98.861496}],"Text":"32","Confidence":85.27639},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.74032}],"Text":"mprocess","Confidence":66.59985},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.762344}],"Text":"inprocess","Confidence":63.336433},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"U","Confidence":93.11064}],"Text":"uinked","Confidence":51.7745}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(50%).json index 9dac85d..ecf8e29 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57313}],"Text":"path","Confidence":96.986206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574165}],"Text":"provider","Confidence":96.968834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.54494}],"Text":"use","Confidence":96.81455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573044}],"Text":"servers","Confidence":96.800934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5445}],"Text":"that","Confidence":96.800934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56164}],"Text":"options","Confidence":96.79823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57336}],"Text":"are","Confidence":96.787094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57431}],"Text":"access","Confidence":96.781006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57352}],"Text":"as","Confidence":96.74963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54727}],"Text":"page","Confidence":96.71176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568436}],"Text":"parameter","Confidence":96.656876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57401}],"Text":"updates","Confidence":96.64886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.57394}],"Text":"zero","Confidence":96.62158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55563}],"Text":"operator","Confidence":96.553406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56923}],"Text":"adhoc","Confidence":96.50772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57323}],"Text":"name","Confidence":96.45517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55925}],"Text":"provider","Confidence":96.43308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57302}],"Text":"ready","Confidence":96.40909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.520454}],"Text":"index","Confidence":96.32324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57449}],"Text":"progress","Confidence":96.27414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57261}],"Text":"provider","Confidence":96.27393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.543106}],"Text":"dynamic","Confidence":96.248375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566895}],"Text":"to","Confidence":96.11109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55795}],"Text":"level","Confidence":96.021736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53695}],"Text":"applied","Confidence":95.93164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56396}],"Text":"linked","Confidence":95.88477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.566826}],"Text":"connection","Confidence":95.831764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.53601}],"Text":"non","Confidence":95.435936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.32739}],"Text":"these","Confidence":95.29173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565254}],"Text":"transacted","Confidence":95.228485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.297066}],"Text":"general","Confidence":95.07944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57}],"Text":"using","Confidence":94.942444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56452}],"Text":"this","Confidence":94.942444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570946}],"Text":"connection","Confidence":94.88661},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55241}],"Text":"supports","Confidence":94.46816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55885}],"Text":"all","Confidence":93.40522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.41235}],"Text":"properties","Confidence":93.37926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57409}],"Text":"nested","Confidence":93.155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57386}],"Text":"options","Confidence":91.534744},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.95729}],"Text":"inprocess","Confidence":91.29929},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.04111}],"Text":"quenes","Confidence":90.99493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573074}],"Text":"only","Confidence":88.92443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55102}],"Text":"select","Confidence":86.46654},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.023766}],"Text":"cd","Confidence":86.08416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.468216}],"Text":"server","Confidence":85.93968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.42623}],"Text":"like","Confidence":81.98364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5629}],"Text":"enable","Confidence":81.940994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.530106}],"Text":"allow","Confidence":80.20085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57082}],"Text":"disallow","Confidence":69.75365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":95.57672}],"Text":"bd","Confidence":68.986984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.131}],"Text":"view","Confidence":66.95164},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02892}],"Text":"cdsbg036","Confidence":63.888103},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.674805}],"Text":"imy_sql_server","Confidence":62.723614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.42483}],"Text":"hep","Confidence":61.922478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52735}],"Text":"sem","Confidence":53.413868}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57313}],"Text":"path","Confidence":96.986206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.574165}],"Text":"provider","Confidence":96.968834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.54494}],"Text":"use","Confidence":96.81455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.573044}],"Text":"servers","Confidence":96.800934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.5445}],"Text":"that","Confidence":96.800934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56164}],"Text":"options","Confidence":96.79823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57336}],"Text":"are","Confidence":96.787094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57431}],"Text":"access","Confidence":96.781006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57352}],"Text":"as","Confidence":96.74963},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.54727}],"Text":"page","Confidence":96.71176},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568436}],"Text":"parameter","Confidence":96.656876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57401}],"Text":"updates","Confidence":96.64886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.57394}],"Text":"zero","Confidence":96.62158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55563}],"Text":"operator","Confidence":96.553406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56923}],"Text":"adhoc","Confidence":96.50772},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57323}],"Text":"name","Confidence":96.45517},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.55925}],"Text":"provider","Confidence":96.43308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57302}],"Text":"ready","Confidence":96.40909},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":99.520454}],"Text":"index","Confidence":96.32324},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.57449}],"Text":"progress","Confidence":96.27414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57261}],"Text":"provider","Confidence":96.27393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.543106}],"Text":"dynamic","Confidence":96.248375},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.566895}],"Text":"to","Confidence":96.11109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55795}],"Text":"level","Confidence":96.021736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53695}],"Text":"applied","Confidence":95.93164},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56396}],"Text":"linked","Confidence":95.88477},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.566826}],"Text":"connection","Confidence":95.831764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.53601}],"Text":"non","Confidence":95.435936},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.32739}],"Text":"these","Confidence":95.29173},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.565254}],"Text":"transacted","Confidence":95.228485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":99.297066}],"Text":"general","Confidence":95.07944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57}],"Text":"using","Confidence":94.942444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56452}],"Text":"this","Confidence":94.942444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570946}],"Text":"connection","Confidence":94.88661},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55241}],"Text":"supports","Confidence":94.46816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55885}],"Text":"all","Confidence":93.40522},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.41235}],"Text":"properties","Confidence":93.37926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57409}],"Text":"nested","Confidence":93.155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.57386}],"Text":"options","Confidence":91.534744},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.95729}],"Text":"inprocess","Confidence":91.29929},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.04111}],"Text":"quenes","Confidence":90.99493},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.573074}],"Text":"only","Confidence":88.92443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55102}],"Text":"select","Confidence":86.46654},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.023766}],"Text":"cd","Confidence":86.08416},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.468216}],"Text":"server","Confidence":85.93968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.42623}],"Text":"like","Confidence":81.98364},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5629}],"Text":"enable","Confidence":81.940994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.530106}],"Text":"allow","Confidence":80.20085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.57082}],"Text":"disallow","Confidence":69.75365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":95.57672}],"Text":"bd","Confidence":68.986984},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.131}],"Text":"view","Confidence":66.95164},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.02892}],"Text":"cdsbg036","Confidence":63.888103},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"I","Confidence":94.674805}],"Text":"imy_sql_server","Confidence":62.723614},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.42483}],"Text":"hep","Confidence":61.922478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52735}],"Text":"sem","Confidence":53.413868}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(70%).json index 92a9354..820082c 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56784}],"Text":"path","Confidence":96.93249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57191}],"Text":"this","Confidence":96.92067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55987}],"Text":"operator","Confidence":96.91908},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55333}],"Text":"servers","Confidence":96.87331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.565926}],"Text":"provider","Confidence":96.865776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.567726}],"Text":"use","Confidence":96.836586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56698}],"Text":"level","Confidence":96.795616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540886}],"Text":"adhoc","Confidence":96.7666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57258}],"Text":"nested","Confidence":96.75524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54755}],"Text":"options","Confidence":96.74408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.552956}],"Text":"options","Confidence":96.68109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54986}],"Text":"are","Confidence":96.637794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.534195}],"Text":"server","Confidence":96.443634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56584}],"Text":"zero","Confidence":96.35894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57407}],"Text":"provider","Confidence":96.351395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46212}],"Text":"that","Confidence":96.23482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.44914}],"Text":"non","Confidence":96.14399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.567055}],"Text":"dynamic","Confidence":96.073425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56351}],"Text":"parameter","Confidence":96.073425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57163}],"Text":"name","Confidence":96.03094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50564}],"Text":"to","Confidence":96.02249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.45245}],"Text":"provider","Confidence":96.01275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53519}],"Text":"enable","Confidence":96.01274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52228}],"Text":"access","Confidence":95.999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57266}],"Text":"using","Confidence":95.87419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55513}],"Text":"transacted","Confidence":95.59595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.32389}],"Text":"as","Confidence":95.26724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.11194}],"Text":"these","Confidence":93.78359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57103}],"Text":"updates","Confidence":92.39163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.45314}],"Text":"supports","Confidence":92.03586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.85801}],"Text":"index","Confidence":92.00607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56847}],"Text":"all","Confidence":91.58729},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"U","Confidence":98.67084}],"Text":"unked","Confidence":90.695885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54097}],"Text":"only","Confidence":89.40256},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.34974}],"Text":"inprocess","Confidence":88.448166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.38614}],"Text":"sql","Confidence":86.13497},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.940956}],"Text":"my_","Confidence":84.39679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.7517}],"Text":"disallow","Confidence":84.26191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.09765}],"Text":"allow","Confidence":84.18864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.56675}],"Text":"queries","Confidence":82.911575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.22879}],"Text":"inked","Confidence":73.60154},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.87008}],"Text":"my_sql_","Confidence":72.195526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.95514}],"Text":"like","Confidence":66.68129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55246}],"Text":"applied","Confidence":64.99855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.77829}],"Text":"ical","Confidence":63.448025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.00979}],"Text":"linked","Confidence":51.0685}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56784}],"Text":"path","Confidence":96.93249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57191}],"Text":"this","Confidence":96.92067},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.55987}],"Text":"operator","Confidence":96.91908},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.55333}],"Text":"servers","Confidence":96.87331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"P","Confidence":99.565926}],"Text":"provider","Confidence":96.865776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.567726}],"Text":"use","Confidence":96.836586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.56698}],"Text":"level","Confidence":96.795616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.540886}],"Text":"adhoc","Confidence":96.7666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57258}],"Text":"nested","Confidence":96.75524},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54755}],"Text":"options","Confidence":96.74408},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.552956}],"Text":"options","Confidence":96.68109},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54986}],"Text":"are","Confidence":96.637794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.534195}],"Text":"server","Confidence":96.443634},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.56584}],"Text":"zero","Confidence":96.35894},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57407}],"Text":"provider","Confidence":96.351395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.46212}],"Text":"that","Confidence":96.23482},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.44914}],"Text":"non","Confidence":96.14399},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.567055}],"Text":"dynamic","Confidence":96.073425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56351}],"Text":"parameter","Confidence":96.073425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57163}],"Text":"name","Confidence":96.03094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.50564}],"Text":"to","Confidence":96.02249},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.45245}],"Text":"provider","Confidence":96.01275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53519}],"Text":"enable","Confidence":96.01274},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.52228}],"Text":"access","Confidence":95.999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57266}],"Text":"using","Confidence":95.87419},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.55513}],"Text":"transacted","Confidence":95.59595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.32389}],"Text":"as","Confidence":95.26724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.11194}],"Text":"these","Confidence":93.78359},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57103}],"Text":"updates","Confidence":92.39163},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.45314}],"Text":"supports","Confidence":92.03586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.85801}],"Text":"index","Confidence":92.00607},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56847}],"Text":"all","Confidence":91.58729},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"U","Confidence":98.67084}],"Text":"unked","Confidence":90.695885},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.54097}],"Text":"only","Confidence":89.40256},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.34974}],"Text":"inprocess","Confidence":88.448166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.38614}],"Text":"sql","Confidence":86.13497},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.940956}],"Text":"my_","Confidence":84.39679},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":97.7517}],"Text":"disallow","Confidence":84.26191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.09765}],"Text":"allow","Confidence":84.18864},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.56675}],"Text":"queries","Confidence":82.911575},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":96.22879}],"Text":"inked","Confidence":73.60154},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.87008}],"Text":"my_sql_","Confidence":72.195526},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":98.95514}],"Text":"like","Confidence":66.68129},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55246}],"Text":"applied","Confidence":64.99855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":94.77829}],"Text":"ical","Confidence":63.448025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":93.00979}],"Text":"linked","Confidence":51.0685}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(80%).json index 7c3eb9d..21b2898 100644 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565765}],"Text":"servers","Confidence":96.94653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556274}],"Text":"that","Confidence":96.89393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57282}],"Text":"transacted","Confidence":96.861244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55721}],"Text":"path","Confidence":96.79977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50793}],"Text":"non","Confidence":96.55551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53699}],"Text":"access","Confidence":96.430626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54976}],"Text":"nested","Confidence":96.211555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57424}],"Text":"queries","Confidence":96.20037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57008}],"Text":"to","Confidence":95.876175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57271}],"Text":"adhoc","Confidence":95.82571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57335}],"Text":"this","Confidence":95.71348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.42304}],"Text":"options","Confidence":95.40742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.4611}],"Text":"use","Confidence":95.37513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57257}],"Text":"provider","Confidence":94.95848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.57199}],"Text":"zero","Confidence":94.36376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56177}],"Text":"as","Confidence":94.17504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57166}],"Text":"all","Confidence":94.13201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.056}],"Text":"inked","Confidence":93.391975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55372}],"Text":"level","Confidence":93.076096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.251755}],"Text":"these","Confidence":92.413246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56744}],"Text":"are","Confidence":92.17725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5729}],"Text":"disallow","Confidence":91.33531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.559784}],"Text":"operator","Confidence":91.19574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.71692}],"Text":"index","Confidence":91.018456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47529}],"Text":"supports","Confidence":90.992004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50538}],"Text":"allow","Confidence":86.10695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56345}],"Text":"only","Confidence":85.89406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57315}],"Text":"updates","Confidence":84.56932},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.759415}],"Text":"inprocess","Confidence":82.23996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.243095}],"Text":"like","Confidence":66.701675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.57051}],"Text":"bd","Confidence":61.993557}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.565765}],"Text":"servers","Confidence":96.94653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.556274}],"Text":"that","Confidence":96.89393},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57282}],"Text":"transacted","Confidence":96.861244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55721}],"Text":"path","Confidence":96.79977},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.50793}],"Text":"non","Confidence":96.55551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.53699}],"Text":"access","Confidence":96.430626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.54976}],"Text":"nested","Confidence":96.211555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"q","Confidence":99.57424}],"Text":"queries","Confidence":96.20037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57008}],"Text":"to","Confidence":95.876175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57271}],"Text":"adhoc","Confidence":95.82571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.57335}],"Text":"this","Confidence":95.71348},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.42304}],"Text":"options","Confidence":95.40742},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.4611}],"Text":"use","Confidence":95.37513},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57257}],"Text":"provider","Confidence":94.95848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":99.57199}],"Text":"zero","Confidence":94.36376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56177}],"Text":"as","Confidence":94.17504},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57166}],"Text":"all","Confidence":94.13201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.056}],"Text":"inked","Confidence":93.391975},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.55372}],"Text":"level","Confidence":93.076096},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.251755}],"Text":"these","Confidence":92.413246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56744}],"Text":"are","Confidence":92.17725},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5729}],"Text":"disallow","Confidence":91.33531},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.559784}],"Text":"operator","Confidence":91.19574},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":98.71692}],"Text":"index","Confidence":91.018456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.47529}],"Text":"supports","Confidence":90.992004},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50538}],"Text":"allow","Confidence":86.10695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.56345}],"Text":"only","Confidence":85.89406},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.57315}],"Text":"updates","Confidence":84.56932},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.759415}],"Text":"inprocess","Confidence":82.23996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":95.243095}],"Text":"like","Confidence":66.701675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"b","Confidence":94.57051}],"Text":"bd","Confidence":61.993557}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(90%).json deleted file mode 100644 index 3270f11..0000000 --- a/Examples/testdata/results/zrs_ZAMS_OLEDB-server_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.573}],"Text":"this","Confidence":96.94214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.54785}],"Text":"that","Confidence":96.83496},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.5686}],"Text":"servers","Confidence":96.82801},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.568985}],"Text":"provider","Confidence":96.6709},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57401}],"Text":"provider","Confidence":96.57064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":99.56837}],"Text":"to","Confidence":96.314064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.56948}],"Text":"use","Confidence":96.25382},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.49638}],"Text":"are","Confidence":95.682106},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"o","Confidence":99.455605}],"Text":"options","Confidence":95.62576},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.5672}],"Text":"applied","Confidence":93.8478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54991}],"Text":"all","Confidence":92.362946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":97.52684}],"Text":"linked","Confidence":82.687904},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"u","Confidence":99.574165}],"Text":"using","Confidence":66.429184},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"T","Confidence":99.56318}],"Text":"these","Confidence":64.709854},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.73091}],"Text":"infoed","Confidence":61.366962}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Kapur).json index 05405e1..d2296bc 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57433}],"Text":"machine","Confidence":97.00347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57404}],"Text":"stop","Confidence":96.88808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56535}],"Text":"enable","Confidence":95.309586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5734}],"Text":"emergency","Confidence":94.97578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.570244}],"Text":"static","Confidence":94.59204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.43866}],"Text":"equipment","Confidence":94.06976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.40519}],"Text":"group","Confidence":93.26884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04259}],"Text":"prefiter","Confidence":91.803246},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.966385}],"Text":"alam","Confidence":88.31622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564415}],"Text":"faire","Confidence":77.42084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55965}],"Text":"alarm","Confidence":77.00239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":96.587654}],"Text":"nam","Confidence":76.113556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.400185}],"Text":"aim","Confidence":73.96449},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.00145}],"Text":"extemal","Confidence":71.75592}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57433}],"Text":"machine","Confidence":97.00347},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57404}],"Text":"stop","Confidence":96.88808},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56535}],"Text":"enable","Confidence":95.309586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5734}],"Text":"emergency","Confidence":94.97578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.570244}],"Text":"static","Confidence":94.59204},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.43866}],"Text":"equipment","Confidence":94.06976},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.40519}],"Text":"group","Confidence":93.26884},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04259}],"Text":"prefiter","Confidence":91.803246},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"a","Confidence":98.966385}],"Text":"alam","Confidence":88.31622},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564415}],"Text":"faire","Confidence":77.42084},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.55965}],"Text":"alarm","Confidence":77.00239},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":96.587654}],"Text":"nam","Confidence":76.113556},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.400185}],"Text":"aim","Confidence":73.96449},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.00145}],"Text":"extemal","Confidence":71.75592}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(OTSU).json index e3c127f..6c0263f 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5734}],"Text":"machine","Confidence":96.96747},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57419}],"Text":"stop","Confidence":96.87361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5656}],"Text":"failure","Confidence":96.865456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57332}],"Text":"emergency","Confidence":96.83309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.553856}],"Text":"alarm","Confidence":96.72156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.573326}],"Text":"static","Confidence":96.65828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.50917}],"Text":"enable","Confidence":96.531166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56968}],"Text":"equipment","Confidence":96.42091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54668}],"Text":"group","Confidence":93.270515},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04331}],"Text":"prefilter","Confidence":91.90963},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.03272}],"Text":"extemal","Confidence":87.04558},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04279}],"Text":"prefiltering","Confidence":85.88095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.436584}],"Text":"alam","Confidence":81.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.24402}],"Text":"er","Confidence":59.708107}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5734}],"Text":"machine","Confidence":96.96747},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57419}],"Text":"stop","Confidence":96.87361},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5656}],"Text":"failure","Confidence":96.865456},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57332}],"Text":"emergency","Confidence":96.83309},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.553856}],"Text":"alarm","Confidence":96.72156},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.573326}],"Text":"static","Confidence":96.65828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.50917}],"Text":"enable","Confidence":96.531166},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56968}],"Text":"equipment","Confidence":96.42091},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54668}],"Text":"group","Confidence":93.270515},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04331}],"Text":"prefilter","Confidence":91.90963},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.03272}],"Text":"extemal","Confidence":87.04558},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04279}],"Text":"prefiltering","Confidence":85.88095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.436584}],"Text":"alam","Confidence":81.7723},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":94.24402}],"Text":"er","Confidence":59.708107}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 291addb..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":96.01943}],"Text":"de","Confidence":62.28024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":97.80794}],"Text":"af","Confidence":56.997154},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":93.23964}],"Text":"born","Confidence":52.677452},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":95.61551}],"Text":"dei","Confidence":50.94486}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(04_04).json index f8938ff..2b3b5fa 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.134224}],"Text":"machine","Confidence":72.93956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.80731}],"Text":"failure","Confidence":66.149734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.0102}],"Text":"wan","Confidence":63.484722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":94.69647}],"Text":"group","Confidence":62.87529},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01996}],"Text":"pretitenng","Confidence":59.200115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":94.76751}],"Text":"machine","Confidence":58.954983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.476814}],"Text":"wann","Confidence":54.70926}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.134224}],"Text":"machine","Confidence":72.93956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":97.80731}],"Text":"failure","Confidence":66.149734},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.0102}],"Text":"wan","Confidence":63.484722},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"G","Confidence":94.69647}],"Text":"group","Confidence":62.87529},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01996}],"Text":"pretitenng","Confidence":59.200115},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":94.76751}],"Text":"machine","Confidence":58.954983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.476814}],"Text":"wann","Confidence":54.70926}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 87e2058..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56183}],"Text":"group","Confidence":93.24424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55442}],"Text":"enable","Confidence":92.94451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.293785}],"Text":"alarm","Confidence":88.07107},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.041756}],"Text":"prefittering","Confidence":73.18383}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(08_08).json index d872886..d6ba07b 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56567}],"Text":"enable","Confidence":96.89198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.55929}],"Text":"machine","Confidence":96.79302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54278}],"Text":"failure","Confidence":96.72305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5711}],"Text":"equipment","Confidence":93.98488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.35718}],"Text":"group","Confidence":93.30527},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.038475}],"Text":"prefittering","Confidence":68.85277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56344}],"Text":"alarm","Confidence":66.72185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.472824}],"Text":"ie","Confidence":50.97423}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56567}],"Text":"enable","Confidence":96.89198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.55929}],"Text":"machine","Confidence":96.79302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54278}],"Text":"failure","Confidence":96.72305},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5711}],"Text":"equipment","Confidence":93.98488},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.35718}],"Text":"group","Confidence":93.30527},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.038475}],"Text":"prefittering","Confidence":68.85277},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56344}],"Text":"alarm","Confidence":66.72185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":96.472824}],"Text":"ie","Confidence":50.97423}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 2db1e8c..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57337}],"Text":"machine","Confidence":96.882195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574234}],"Text":"emergency","Confidence":96.757996},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53057}],"Text":"enable","Confidence":96.713974},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57248}],"Text":"failure","Confidence":96.694916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56969}],"Text":"static","Confidence":96.10509},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.203255}],"Text":"group","Confidence":93.30621},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.043236}],"Text":"prefiter","Confidence":90.41064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.525536}],"Text":"alarm","Confidence":87.95823},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.53811}],"Text":"alam","Confidence":85.2726},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.866165}],"Text":"extemal","Confidence":78.97998},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.042885}],"Text":"prefittering","Confidence":77.688965},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57092}],"Text":"step","Confidence":73.14668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":94.673096}],"Text":"seer","Confidence":50.754948}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(12_12).json index c3a5ddf..744adca 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57453}],"Text":"machine","Confidence":96.93728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.566795}],"Text":"static","Confidence":96.76711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55143}],"Text":"stop","Confidence":96.559685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57393}],"Text":"enable","Confidence":96.23087},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56582}],"Text":"failure","Confidence":96.20019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54662}],"Text":"group","Confidence":93.30623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57032}],"Text":"equipment","Confidence":93.28404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.571724}],"Text":"alam","Confidence":90.536644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.0418}],"Text":"prefilter","Confidence":83.72516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55893}],"Text":"emergency","Confidence":80.71711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57302}],"Text":"alarm","Confidence":80.37364},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04138}],"Text":"prefittering","Confidence":78.39917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":97.60294}],"Text":"alam","Confidence":64.17961},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.955246}],"Text":"ex\u00E9mal","Confidence":51.27732}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57453}],"Text":"machine","Confidence":96.93728},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.566795}],"Text":"static","Confidence":96.76711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.55143}],"Text":"stop","Confidence":96.559685},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57393}],"Text":"enable","Confidence":96.23087},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56582}],"Text":"failure","Confidence":96.20019},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54662}],"Text":"group","Confidence":93.30623},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57032}],"Text":"equipment","Confidence":93.28404},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.571724}],"Text":"alam","Confidence":90.536644},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.0418}],"Text":"prefilter","Confidence":83.72516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55893}],"Text":"emergency","Confidence":80.71711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57302}],"Text":"alarm","Confidence":80.37364},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04138}],"Text":"prefittering","Confidence":78.39917},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u201A","Confidence":97.60294}],"Text":"alam","Confidence":64.17961},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.955246}],"Text":"ex\u00E9mal","Confidence":51.27732}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 042d972..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57488}],"Text":"stop","Confidence":97.00973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57362}],"Text":"machine","Confidence":96.967834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56759}],"Text":"static","Confidence":96.84783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57385}],"Text":"emergency","Confidence":96.802444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56545}],"Text":"failure","Confidence":93.753296},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573845}],"Text":"enable","Confidence":93.30333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.32415}],"Text":"group","Confidence":93.29214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51987}],"Text":"equipment","Confidence":91.68145},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.54076}],"Text":"alam","Confidence":75.89175},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.324356}],"Text":"deselect","Confidence":74.686646},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01738}],"Text":"prefitter","Confidence":71.80457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57306}],"Text":"alarm","Confidence":68.17671},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"B","Confidence":97.5406}],"Text":"btemal","Confidence":59.31447},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.84023}],"Text":"es","Confidence":56.881607},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.019806}],"Text":"prefittering","Confidence":56.648235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":93.79984}],"Text":"tl","Confidence":56.598907},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":95.814476}],"Text":"al","Confidence":56.386562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":94.001686}],"Text":"ts","Confidence":54.669376},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574394}],"Text":"alam","Confidence":53.873337},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04209}],"Text":"prefitering","Confidence":53.805637}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(16_16).json index 5745705..7f60254 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57485}],"Text":"stop","Confidence":96.99969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57415}],"Text":"machine","Confidence":96.92635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.551926}],"Text":"enable","Confidence":96.851875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56957}],"Text":"static","Confidence":96.35039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.544785}],"Text":"group","Confidence":93.30608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564186}],"Text":"failure","Confidence":91.213455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.550766}],"Text":"alam","Confidence":89.03098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.43127}],"Text":"equipment","Confidence":86.95248},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04326}],"Text":"prefiter","Confidence":86.76198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57465}],"Text":"emergency","Confidence":85.40027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57207}],"Text":"alarm","Confidence":83.16118},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03911}],"Text":"prefittering","Confidence":76.67143},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.79314}],"Text":"etemal","Confidence":56.40873}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57485}],"Text":"stop","Confidence":96.99969},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57415}],"Text":"machine","Confidence":96.92635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.551926}],"Text":"enable","Confidence":96.851875},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56957}],"Text":"static","Confidence":96.35039},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.544785}],"Text":"group","Confidence":93.30608},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.564186}],"Text":"failure","Confidence":91.213455},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.550766}],"Text":"alam","Confidence":89.03098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.43127}],"Text":"equipment","Confidence":86.95248},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04326}],"Text":"prefiter","Confidence":86.76198},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57465}],"Text":"emergency","Confidence":85.40027},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57207}],"Text":"alarm","Confidence":83.16118},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03911}],"Text":"prefittering","Confidence":76.67143},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":96.79314}],"Text":"etemal","Confidence":56.40873}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index cbab6e6..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57207}],"Text":"machine","Confidence":96.858025},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.562195}],"Text":"emergency","Confidence":96.827095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57484}],"Text":"stop","Confidence":96.712616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56679}],"Text":"static","Confidence":96.55285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56849}],"Text":"enable","Confidence":95.50926},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57128}],"Text":"equipment","Confidence":93.30619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.427185}],"Text":"group","Confidence":93.30563},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.56943}],"Text":"alarm","Confidence":92.26758},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.04257}],"Text":"faiture","Confidence":90.59947},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04161}],"Text":"prefittering","Confidence":83.49898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.54132}],"Text":"external","Confidence":83.45906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55981}],"Text":"alam","Confidence":83.14327},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5561}],"Text":"failure","Confidence":73.48183},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03965}],"Text":"prefiter","Confidence":73.33587}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(20_20).json index c29c628..1eb8e93 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.559875}],"Text":"group","Confidence":96.8783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56352}],"Text":"machine","Confidence":96.86436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57031}],"Text":"enable","Confidence":96.806206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57475}],"Text":"stop","Confidence":96.44559},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5733}],"Text":"emergency","Confidence":96.20427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.572556}],"Text":"static","Confidence":96.203384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56791}],"Text":"equipment","Confidence":93.293755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.545586}],"Text":"alam","Confidence":93.150764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574234}],"Text":"alarm","Confidence":93.07088},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03156}],"Text":"prefitering","Confidence":90.27037},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.039696}],"Text":"faiture","Confidence":88.17211},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02259}],"Text":"prefiter","Confidence":87.79806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56826}],"Text":"failure","Confidence":83.928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56464}],"Text":"eternal","Confidence":73.031166},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":95.21758}],"Text":"aarm","Confidence":66.5231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.40044}],"Text":"narn","Confidence":55.4403}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.559875}],"Text":"group","Confidence":96.8783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56352}],"Text":"machine","Confidence":96.86436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57031}],"Text":"enable","Confidence":96.806206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57475}],"Text":"stop","Confidence":96.44559},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5733}],"Text":"emergency","Confidence":96.20427},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.572556}],"Text":"static","Confidence":96.203384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56791}],"Text":"equipment","Confidence":93.293755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.545586}],"Text":"alam","Confidence":93.150764},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574234}],"Text":"alarm","Confidence":93.07088},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03156}],"Text":"prefitering","Confidence":90.27037},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.039696}],"Text":"faiture","Confidence":88.17211},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.02259}],"Text":"prefiter","Confidence":87.79806},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56826}],"Text":"failure","Confidence":83.928},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56464}],"Text":"eternal","Confidence":73.031166},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"A","Confidence":95.21758}],"Text":"aarm","Confidence":66.5231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":94.40044}],"Text":"narn","Confidence":55.4403}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 22aaeff..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56333}],"Text":"machine","Confidence":96.920906},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.55152}],"Text":"static","Confidence":96.85029},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56885}],"Text":"group","Confidence":96.582825},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57154}],"Text":"emergency","Confidence":96.4755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57479}],"Text":"stop","Confidence":96.4755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.5693}],"Text":"failure","Confidence":93.52396},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.5283}],"Text":"alarm","Confidence":93.30369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56398}],"Text":"external","Confidence":91.874916},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57451}],"Text":"enable","Confidence":86.76481},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.039696}],"Text":"prefitter","Confidence":81.47056},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.0429}],"Text":"prefittering","Confidence":67.11365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57449}],"Text":"equipment","Confidence":52.07857}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(24_24).json index d793af3..0949242 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57315}],"Text":"machine","Confidence":96.91986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.554375}],"Text":"group","Confidence":96.880646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573235}],"Text":"enable","Confidence":96.78711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57046}],"Text":"stop","Confidence":96.72565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57034}],"Text":"static","Confidence":96.37547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56602}],"Text":"emergency","Confidence":96.18031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57262}],"Text":"alam","Confidence":93.19812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55858}],"Text":"pr","Confidence":92.23056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57234}],"Text":"alarm","Confidence":82.63794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51747}],"Text":"equipment","Confidence":82.306244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03871}],"Text":"prefitering","Confidence":82.09942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54816}],"Text":"failure","Confidence":80.87518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03781}],"Text":"prefitter","Confidence":74.990425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.03745}],"Text":"fature","Confidence":74.59976},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.857025}],"Text":"extemal","Confidence":59.787086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.89539}],"Text":"alam","Confidence":50.088154}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57315}],"Text":"machine","Confidence":96.91986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.554375}],"Text":"group","Confidence":96.880646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.573235}],"Text":"enable","Confidence":96.78711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57046}],"Text":"stop","Confidence":96.72565},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.57034}],"Text":"static","Confidence":96.37547},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56602}],"Text":"emergency","Confidence":96.18031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57262}],"Text":"alam","Confidence":93.19812},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55858}],"Text":"pr","Confidence":92.23056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57234}],"Text":"alarm","Confidence":82.63794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.51747}],"Text":"equipment","Confidence":82.306244},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03871}],"Text":"prefitering","Confidence":82.09942},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.54816}],"Text":"failure","Confidence":80.87518},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03781}],"Text":"prefitter","Confidence":74.990425},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.03745}],"Text":"fature","Confidence":74.59976},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.857025}],"Text":"extemal","Confidence":59.787086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"[","Confidence":97.89539}],"Text":"alam","Confidence":50.088154}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(10%).json deleted file mode 100644 index 176da94..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.48903}],"Text":"group","Confidence":92.98217},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":98.45639}],"Text":"alam","Confidence":89.15426},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":99.4691}],"Text":"static","Confidence":83.50998},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":96.67}],"Text":"oroup","Confidence":76.68997},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.68651}],"Text":"prefitter","Confidence":67.24036},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.472145}],"Text":"enable","Confidence":54.573944}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(20%).json index e08ab7e..28fd042 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57371}],"Text":"failure","Confidence":96.76282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57439}],"Text":"select","Confidence":96.74053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54407}],"Text":"deselect","Confidence":96.7273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57413}],"Text":"enable","Confidence":96.71141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.573006}],"Text":"machine","Confidence":96.56441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56032}],"Text":"all","Confidence":95.64545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.562}],"Text":"alam","Confidence":94.65381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.493416}],"Text":"equipment","Confidence":94.24663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53413}],"Text":"emergency","Confidence":94.226326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.0088}],"Text":"alarm","Confidence":93.0616},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.004944}],"Text":"extemal","Confidence":90.045074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.236084}],"Text":"group","Confidence":77.90283},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.96832}],"Text":"prefilter","Confidence":77.17769},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00207}],"Text":"prefitter","Confidence":77.01905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57437}],"Text":"stop","Confidence":75.10744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":99.560585}],"Text":"static","Confidence":51.821575}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57371}],"Text":"failure","Confidence":96.76282},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57439}],"Text":"select","Confidence":96.74053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.54407}],"Text":"deselect","Confidence":96.7273},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57413}],"Text":"enable","Confidence":96.71141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.573006}],"Text":"machine","Confidence":96.56441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.56032}],"Text":"all","Confidence":95.64545},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.562}],"Text":"alam","Confidence":94.65381},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.493416}],"Text":"equipment","Confidence":94.24663},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.53413}],"Text":"emergency","Confidence":94.226326},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.0088}],"Text":"alarm","Confidence":93.0616},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.004944}],"Text":"extemal","Confidence":90.045074},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.236084}],"Text":"group","Confidence":77.90283},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.96832}],"Text":"prefilter","Confidence":77.17769},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.00207}],"Text":"prefitter","Confidence":77.01905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57437}],"Text":"stop","Confidence":75.10744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":99.560585}],"Text":"static","Confidence":51.821575}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(40%).json index ab11b17..e13ae07 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572426}],"Text":"alarm","Confidence":96.90668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57264}],"Text":"failure","Confidence":96.85653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52846}],"Text":"select","Confidence":96.69923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57208}],"Text":"machine","Confidence":96.69788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.511505}],"Text":"equipment","Confidence":96.58053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57319}],"Text":"enable","Confidence":96.56943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56918}],"Text":"emergency","Confidence":96.24466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.451866}],"Text":"stop","Confidence":96.16308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57326}],"Text":"all","Confidence":96.15704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56476}],"Text":"group","Confidence":93.22553},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.03767}],"Text":"deselect","Confidence":89.300064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.93157}],"Text":"static","Confidence":88.02493},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.00612}],"Text":"extemal","Confidence":87.6174},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03948}],"Text":"prefilter","Confidence":86.95435},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03906}],"Text":"prefiltering","Confidence":74.22876}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.572426}],"Text":"alarm","Confidence":96.90668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57264}],"Text":"failure","Confidence":96.85653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.52846}],"Text":"select","Confidence":96.69923},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57208}],"Text":"machine","Confidence":96.69788},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.511505}],"Text":"equipment","Confidence":96.58053},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57319}],"Text":"enable","Confidence":96.56943},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56918}],"Text":"emergency","Confidence":96.24466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.451866}],"Text":"stop","Confidence":96.16308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57326}],"Text":"all","Confidence":96.15704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.56476}],"Text":"group","Confidence":93.22553},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.03767}],"Text":"deselect","Confidence":89.300064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":98.93157}],"Text":"static","Confidence":88.02493},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.00612}],"Text":"extemal","Confidence":87.6174},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03948}],"Text":"prefilter","Confidence":86.95435},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03906}],"Text":"prefiltering","Confidence":74.22876}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(50%).json index f3b941a..82ec83a 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5703}],"Text":"machine","Confidence":96.98653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57443}],"Text":"failure","Confidence":96.8762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5672}],"Text":"select","Confidence":96.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57182}],"Text":"all","Confidence":96.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57287}],"Text":"alarm","Confidence":96.72101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57298}],"Text":"enable","Confidence":96.69031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5734}],"Text":"emergency","Confidence":96.65578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574}],"Text":"stop","Confidence":96.3065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.558395}],"Text":"deselect","Confidence":95.6897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.431244}],"Text":"equipment","Confidence":94.3152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.524536}],"Text":"group","Confidence":93.304436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.4681}],"Text":"alam","Confidence":93.10216},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03961}],"Text":"prefilter","Confidence":91.47577},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.80639}],"Text":"extemal","Confidence":90.26871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.22848}],"Text":"static","Confidence":86.79352},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.037834}],"Text":"prefiltering","Confidence":78.50142}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5703}],"Text":"machine","Confidence":96.98653},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57443}],"Text":"failure","Confidence":96.8762},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5672}],"Text":"select","Confidence":96.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57182}],"Text":"all","Confidence":96.829735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.57287}],"Text":"alarm","Confidence":96.72101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57298}],"Text":"enable","Confidence":96.69031},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.5734}],"Text":"emergency","Confidence":96.65578},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.574}],"Text":"stop","Confidence":96.3065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.558395}],"Text":"deselect","Confidence":95.6897},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.431244}],"Text":"equipment","Confidence":94.3152},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.524536}],"Text":"group","Confidence":93.304436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.4681}],"Text":"alam","Confidence":93.10216},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.03961}],"Text":"prefilter","Confidence":91.47577},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.80639}],"Text":"extemal","Confidence":90.26871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.22848}],"Text":"static","Confidence":86.79352},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.037834}],"Text":"prefiltering","Confidence":78.50142}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(70%).json index d1ee889..609b5fa 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57157}],"Text":"machine","Confidence":96.98221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573456}],"Text":"stop","Confidence":96.95697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572426}],"Text":"equipment","Confidence":96.84595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56596}],"Text":"emergency","Confidence":96.63695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56939}],"Text":"static","Confidence":96.14551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57253}],"Text":"enable","Confidence":95.97557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57224}],"Text":"failure","Confidence":95.79302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55277}],"Text":"group","Confidence":93.30582},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04084}],"Text":"prefitter","Confidence":90.21229},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.89806}],"Text":"extemal","Confidence":89.88377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01329}],"Text":"prefittering","Confidence":84.92088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.571884}],"Text":"alarm","Confidence":82.472336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.517204}],"Text":"alam","Confidence":79.823975}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57157}],"Text":"machine","Confidence":96.98221},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573456}],"Text":"stop","Confidence":96.95697},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.572426}],"Text":"equipment","Confidence":96.84595},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56596}],"Text":"emergency","Confidence":96.63695},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.56939}],"Text":"static","Confidence":96.14551},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57253}],"Text":"enable","Confidence":95.97557},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.57224}],"Text":"failure","Confidence":95.79302},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55277}],"Text":"group","Confidence":93.30582},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.04084}],"Text":"prefitter","Confidence":90.21229},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.89806}],"Text":"extemal","Confidence":89.88377},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.01329}],"Text":"prefittering","Confidence":84.92088},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.571884}],"Text":"alarm","Confidence":82.472336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.517204}],"Text":"alam","Confidence":79.823975}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(80%).json index afc5290..85f72f7 100644 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"stop","Confidence":96.82079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.570885}],"Text":"machine","Confidence":96.62642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.564415}],"Text":"static","Confidence":96.18922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55516}],"Text":"enable","Confidence":96.142944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57104}],"Text":"emergency","Confidence":95.93231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54862}],"Text":"group","Confidence":93.29843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56583}],"Text":"failure","Confidence":91.41257},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.73339}],"Text":"extemal","Confidence":91.03442},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.93255}],"Text":"prefiker","Confidence":90.80151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574066}],"Text":"alam","Confidence":88.4137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55528}],"Text":"equipment","Confidence":88.12442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.01994}],"Text":"aan","Confidence":71.68101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":95.50314}],"Text":"nam","Confidence":68.52199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54954}],"Text":"alarm","Confidence":66.16649}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57466}],"Text":"stop","Confidence":96.82079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.570885}],"Text":"machine","Confidence":96.62642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"(","Confidence":99.564415}],"Text":"static","Confidence":96.18922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55516}],"Text":"enable","Confidence":96.142944},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57104}],"Text":"emergency","Confidence":95.93231},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.54862}],"Text":"group","Confidence":93.29843},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"F","Confidence":99.56583}],"Text":"failure","Confidence":91.41257},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":98.73339}],"Text":"extemal","Confidence":91.03442},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"p","Confidence":98.93255}],"Text":"prefiker","Confidence":90.80151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574066}],"Text":"alam","Confidence":88.4137},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.55528}],"Text":"equipment","Confidence":88.12442},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.01994}],"Text":"aan","Confidence":71.68101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":95.50314}],"Text":"nam","Confidence":68.52199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":99.54954}],"Text":"alarm","Confidence":66.16649}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(90%).json deleted file mode 100644 index 7171390..0000000 --- a/Examples/testdata/results/zrs_ZAMS_filter-alarmgroup_001.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Kapur).json index dcbee74..a5d5e6c 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.566734}],"Text":"meaning","Confidence":96.967155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.550285}],"Text":"indicator","Confidence":96.704735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.574265}],"Text":"meanings","Confidence":96.65854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52598}],"Text":"vertical","Confidence":95.71721},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.540764}],"Text":"horizontal","Confidence":94.99956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54794}],"Text":"configure","Confidence":94.45883},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.035706}],"Text":"horizontalindicator","Confidence":92.63712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57455}],"Text":"plot","Confidence":92.599075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57267}],"Text":"scatter","Confidence":92.457924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"plot","Confidence":92.305145},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02121}],"Text":"mea","Confidence":90.73435},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.86059}],"Text":"verticalindicator","Confidence":75.58285}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.566734}],"Text":"meaning","Confidence":96.967155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.550285}],"Text":"indicator","Confidence":96.704735},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.574265}],"Text":"meanings","Confidence":96.65854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52598}],"Text":"vertical","Confidence":95.71721},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.540764}],"Text":"horizontal","Confidence":94.99956},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54794}],"Text":"configure","Confidence":94.45883},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.035706}],"Text":"horizontalindicator","Confidence":92.63712},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57455}],"Text":"plot","Confidence":92.599075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57267}],"Text":"scatter","Confidence":92.457924},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57308}],"Text":"plot","Confidence":92.305145},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02121}],"Text":"mea","Confidence":90.73435},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.86059}],"Text":"verticalindicator","Confidence":75.58285}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(OTSU).json index f30b40c..232b709 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57336}],"Text":"plot","Confidence":96.87871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57197}],"Text":"configure","Confidence":96.85501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56807}],"Text":"scatter","Confidence":96.62659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56909}],"Text":"meanings","Confidence":96.39562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.471855}],"Text":"indicator","Confidence":95.701035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.41468}],"Text":"horizontal","Confidence":95.5644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54482}],"Text":"vertical","Confidence":93.86712},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03798}],"Text":"mea","Confidence":90.93001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57384}],"Text":"plot","Confidence":89.76055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.00044}],"Text":"meaning","Confidence":82.986595},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04003}],"Text":"horizontallndicator","Confidence":81.86472},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.042854}],"Text":"verticallndicator","Confidence":74.96755}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57336}],"Text":"plot","Confidence":96.87871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57197}],"Text":"configure","Confidence":96.85501},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56807}],"Text":"scatter","Confidence":96.62659},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56909}],"Text":"meanings","Confidence":96.39562},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.471855}],"Text":"indicator","Confidence":95.701035},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.41468}],"Text":"horizontal","Confidence":95.5644},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54482}],"Text":"vertical","Confidence":93.86712},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03798}],"Text":"mea","Confidence":90.93001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57384}],"Text":"plot","Confidence":89.76055},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.00044}],"Text":"meaning","Confidence":82.986595},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04003}],"Text":"horizontallndicator","Confidence":81.86472},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.042854}],"Text":"verticallndicator","Confidence":74.96755}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Triangle).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index bf61384..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(04_04).json index 3aa7bb0..bd53814 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.960236}],"Text":"vertical","Confidence":85.72166}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":97.960236}],"Text":"vertical","Confidence":85.72166}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index a7106c2..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57182}],"Text":"meaning","Confidence":95.975075},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.356125}],"Text":"vertical","Confidence":95.49285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.34529}],"Text":"indicator","Confidence":95.41705},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.68534}],"Text":"verticallndicator","Confidence":89.95003}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(08_08).json index 202e151..9eebdd1 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.565796}],"Text":"meaning","Confidence":96.93978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53589}],"Text":"indicator","Confidence":96.751236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.518166}],"Text":"vertical","Confidence":96.62717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56728}],"Text":"meanings","Confidence":96.10177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56854}],"Text":"plot","Confidence":93.50753},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.93229}],"Text":"verticallndicator","Confidence":90.68431},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.02209}],"Text":"scatter","Confidence":64.89584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.45102}],"Text":"en","Confidence":53.631706}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.565796}],"Text":"meaning","Confidence":96.93978},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53589}],"Text":"indicator","Confidence":96.751236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.518166}],"Text":"vertical","Confidence":96.62717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56728}],"Text":"meanings","Confidence":96.10177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.56854}],"Text":"plot","Confidence":93.50753},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.93229}],"Text":"verticallndicator","Confidence":90.68431},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.02209}],"Text":"scatter","Confidence":64.89584},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.45102}],"Text":"en","Confidence":53.631706}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 360ea08..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.53541}],"Text":"vertical","Confidence":96.74783},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55943}],"Text":"indicator","Confidence":96.596466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57047}],"Text":"meaning","Confidence":96.596466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.5661}],"Text":"horizontal","Confidence":95.43876},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.52313}],"Text":"plot","Confidence":95.11206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56528}],"Text":"meanings","Confidence":95.11206},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57238}],"Text":"mea","Confidence":72.17265},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.95024}],"Text":"verticallndicator","Confidence":65.58763},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":96.040985}],"Text":"ma","Confidence":64.06882}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(12_12).json index 3239523..abbb50a 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56682}],"Text":"meaning","Confidence":96.8458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.569695}],"Text":"meanings","Confidence":96.52833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57388}],"Text":"plot","Confidence":96.24081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56814}],"Text":"horizontal","Confidence":96.02848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.931625}],"Text":"indicator","Confidence":90.3098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55243}],"Text":"vertical","Confidence":86.09914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56989}],"Text":"scatter","Confidence":84.3367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":95.23983}],"Text":"eee","Confidence":66.67881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56791}],"Text":"mea","Confidence":64.957954},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.31204}],"Text":"r-","Confidence":60.184284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.74918}],"Text":"en","Confidence":56.2443}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56682}],"Text":"meaning","Confidence":96.8458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.569695}],"Text":"meanings","Confidence":96.52833},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57388}],"Text":"plot","Confidence":96.24081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56814}],"Text":"horizontal","Confidence":96.02848},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":98.931625}],"Text":"indicator","Confidence":90.3098},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55243}],"Text":"vertical","Confidence":86.09914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56989}],"Text":"scatter","Confidence":84.3367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":95.23983}],"Text":"eee","Confidence":66.67881},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56791}],"Text":"mea","Confidence":64.957954},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"r","Confidence":94.31204}],"Text":"r-","Confidence":60.184284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.74918}],"Text":"en","Confidence":56.2443}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index ba70891..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57417}],"Text":"meanings","Confidence":95.82675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57331}],"Text":"plot","Confidence":93.73603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.57098}],"Text":"horizontal","Confidence":92.02065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.54134}],"Text":"meaning","Confidence":90.90318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57275}],"Text":"scatter","Confidence":81.20746},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.541245}],"Text":"vertical","Confidence":80.82782},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.44515}],"Text":"indicator","Confidence":74.36072},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.291885}],"Text":"mea","Confidence":69.36809},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"z","Confidence":97.317635}],"Text":"zz","Confidence":68.10236},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":97.05538}],"Text":"sa","Confidence":64.595436}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(16_16).json index 5f7fbfa..8f0e721 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5738}],"Text":"indicator","Confidence":96.76666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573456}],"Text":"meanings","Confidence":96.51081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57128}],"Text":"meaning","Confidence":96.31465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573616}],"Text":"scatter","Confidence":93.753235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57346}],"Text":"plot","Confidence":93.517365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52462}],"Text":"vertical","Confidence":93.00333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.40311}],"Text":"horizontal","Confidence":91.446075},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.02819}],"Text":"horizontallndicator","Confidence":76.25412},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03371}],"Text":"horizorttalindicator","Confidence":73.6941},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.92868}],"Text":"verticalindicator","Confidence":67.90245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.47315}],"Text":"pl","Confidence":58.925888}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5738}],"Text":"indicator","Confidence":96.76666},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573456}],"Text":"meanings","Confidence":96.51081},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57128}],"Text":"meaning","Confidence":96.31465},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.573616}],"Text":"scatter","Confidence":93.753235},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57346}],"Text":"plot","Confidence":93.517365},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.52462}],"Text":"vertical","Confidence":93.00333},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.40311}],"Text":"horizontal","Confidence":91.446075},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.02819}],"Text":"horizontallndicator","Confidence":76.25412},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03371}],"Text":"horizorttalindicator","Confidence":73.6941},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.92868}],"Text":"verticalindicator","Confidence":67.90245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.47315}],"Text":"pl","Confidence":58.925888}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 1f17251..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56191}],"Text":"vertical","Confidence":96.49066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57332}],"Text":"meanings","Confidence":96.13758},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57198}],"Text":"plot","Confidence":95.64851},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.46023}],"Text":"horizontal","Confidence":95.64111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56959}],"Text":"meaning","Confidence":94.42647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.16266}],"Text":"indicator","Confidence":94.138626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57393}],"Text":"scatter","Confidence":92.82158},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.01045}],"Text":"horizortalindicator","Confidence":79.14862},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":97.676796}],"Text":"ei","Confidence":67.746414},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03476}],"Text":"mea","Confidence":64.90743},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02129}],"Text":"verticalindicator","Confidence":55.983673},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":93.18616}],"Text":"en","Confidence":52.303127}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(20_20).json index c5c8351..0cfdd2e 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573975}],"Text":"meanings","Confidence":97.00626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.567924}],"Text":"indicator","Confidence":96.232414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.561035}],"Text":"horizontal","Confidence":95.09483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57444}],"Text":"plot","Confidence":94.81258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57447}],"Text":"scatter","Confidence":94.30542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.568214}],"Text":"meaning","Confidence":90.742355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55724}],"Text":"vertical","Confidence":87.79889},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":98.84345}],"Text":"verticalindicator","Confidence":84.44875},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.020706}],"Text":"horizortalindicator","Confidence":77.185135}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573975}],"Text":"meanings","Confidence":97.00626},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.567924}],"Text":"indicator","Confidence":96.232414},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.561035}],"Text":"horizontal","Confidence":95.09483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57444}],"Text":"plot","Confidence":94.81258},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57447}],"Text":"scatter","Confidence":94.30542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.568214}],"Text":"meaning","Confidence":90.742355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55724}],"Text":"vertical","Confidence":87.79889},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":98.84345}],"Text":"verticalindicator","Confidence":84.44875},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.020706}],"Text":"horizortalindicator","Confidence":77.185135}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index f7cc9a0..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5736}],"Text":"meanings","Confidence":96.86558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.57401}],"Text":"scatter","Confidence":95.9478},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.53372}],"Text":"indicator","Confidence":95.598694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5655}],"Text":"vertical","Confidence":95.09246},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57243}],"Text":"plot","Confidence":92.58628},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.031525}],"Text":"mea","Confidence":88.057724},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.55832}],"Text":"meaning","Confidence":85.70405},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.53903}],"Text":"horizontal","Confidence":81.59182},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":98.32478}],"Text":"verticalindicator","Confidence":78.922005},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.02611}],"Text":"horizorttalindicator","Confidence":76.47778},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"t","Confidence":95.72771}],"Text":"th","Confidence":56.85165},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":93.83462}],"Text":"cater","Confidence":56.842304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"e","Confidence":93.36442}],"Text":"ee","Confidence":53.550926}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(24_24).json index 84746de..04f0b90 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57299}],"Text":"meanings","Confidence":96.28171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.40296}],"Text":"plot","Confidence":95.820755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.33983}],"Text":"indicator","Confidence":95.37878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50248}],"Text":"scatter","Confidence":92.956665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57023}],"Text":"meaning","Confidence":92.29412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54463}],"Text":"vertical","Confidence":91.1688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.554436}],"Text":"configure","Confidence":89.83711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.48221}],"Text":"horizontal","Confidence":87.66503},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03284}],"Text":"horizontallndicator","Confidence":86.941666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03154}],"Text":"mea","Confidence":86.15198}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57299}],"Text":"meanings","Confidence":96.28171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.40296}],"Text":"plot","Confidence":95.820755},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.33983}],"Text":"indicator","Confidence":95.37878},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.50248}],"Text":"scatter","Confidence":92.956665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57023}],"Text":"meaning","Confidence":92.29412},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54463}],"Text":"vertical","Confidence":91.1688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.554436}],"Text":"configure","Confidence":89.83711},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.48221}],"Text":"horizontal","Confidence":87.66503},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03284}],"Text":"horizontallndicator","Confidence":86.941666},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03154}],"Text":"mea","Confidence":86.15198}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(10%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(20%).json index 2f09dac..c448451 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.43985}],"Text":"catter","Confidence":75.078964},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":93.702324}],"Text":"onfigure","Confidence":53.934563}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":96.43985}],"Text":"catter","Confidence":75.078964},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"o","Confidence":93.702324}],"Text":"onfigure","Confidence":53.934563}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(40%).json index e60abca..a208b42 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57176}],"Text":"meanings","Confidence":96.92474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55766}],"Text":"plot","Confidence":96.90366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57462}],"Text":"scatter","Confidence":96.84914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570274}],"Text":"configure","Confidence":96.80794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5222}],"Text":"indicator","Confidence":96.53179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.492035}],"Text":"horizontal","Confidence":96.44425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.30544}],"Text":"vertical","Confidence":94.93417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57435}],"Text":"plot","Confidence":94.43843},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02562}],"Text":"mea","Confidence":89.952576},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.93028}],"Text":"meaning","Confidence":82.31446},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04158}],"Text":"horizonttallndicator","Confidence":75.26742},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02231}],"Text":"verticallndicator","Confidence":53.09076}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57176}],"Text":"meanings","Confidence":96.92474},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.55766}],"Text":"plot","Confidence":96.90366},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"s","Confidence":99.57462}],"Text":"scatter","Confidence":96.84914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.570274}],"Text":"configure","Confidence":96.80794},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5222}],"Text":"indicator","Confidence":96.53179},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.492035}],"Text":"horizontal","Confidence":96.44425},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.30544}],"Text":"vertical","Confidence":94.93417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57435}],"Text":"plot","Confidence":94.43843},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02562}],"Text":"mea","Confidence":89.952576},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.93028}],"Text":"meaning","Confidence":82.31446},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04158}],"Text":"horizonttallndicator","Confidence":75.26742},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.02231}],"Text":"verticallndicator","Confidence":53.09076}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(50%).json index 9c05c4d..47fc317 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57025}],"Text":"plot","Confidence":96.735466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57251}],"Text":"meanings","Confidence":96.67946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57129}],"Text":"configure","Confidence":96.66905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56695}],"Text":"scatter","Confidence":96.26682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.509415}],"Text":"indicator","Confidence":96.17266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.533356}],"Text":"vertical","Confidence":96.17266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.46385}],"Text":"horizontal","Confidence":95.68568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57294}],"Text":"plot","Confidence":90.140396},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04057}],"Text":"horizontallndicator","Confidence":88.03195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02365}],"Text":"mea","Confidence":85.841606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57272}],"Text":"meaning","Confidence":85.16671},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.21304}],"Text":"verticallndicator","Confidence":71.40949}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57025}],"Text":"plot","Confidence":96.735466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57251}],"Text":"meanings","Confidence":96.67946},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57129}],"Text":"configure","Confidence":96.66905},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56695}],"Text":"scatter","Confidence":96.26682},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.509415}],"Text":"indicator","Confidence":96.17266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.533356}],"Text":"vertical","Confidence":96.17266},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.46385}],"Text":"horizontal","Confidence":95.68568},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57294}],"Text":"plot","Confidence":90.140396},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.04057}],"Text":"horizontallndicator","Confidence":88.03195},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.02365}],"Text":"mea","Confidence":85.841606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57272}],"Text":"meaning","Confidence":85.16671},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.21304}],"Text":"verticallndicator","Confidence":71.40949}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(70%).json index 5751994..c036137 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572876}],"Text":"meanings","Confidence":96.801994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5746}],"Text":"plot","Confidence":96.78133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56996}],"Text":"scatter","Confidence":96.76986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56647}],"Text":"horizontal","Confidence":95.77232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55305}],"Text":"indicator","Confidence":95.77232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50392}],"Text":"vertical","Confidence":94.59828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.42316}],"Text":"plot","Confidence":92.14269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57335}],"Text":"configure","Confidence":90.282555},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03784}],"Text":"mea","Confidence":90.00853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57327}],"Text":"meaning","Confidence":89.182594},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.0227}],"Text":"verticallndicator","Confidence":85.2199},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03889}],"Text":"horizontallndicator","Confidence":78.35303}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572876}],"Text":"meanings","Confidence":96.801994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.5746}],"Text":"plot","Confidence":96.78133},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.56996}],"Text":"scatter","Confidence":96.76986},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.56647}],"Text":"horizontal","Confidence":95.77232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55305}],"Text":"indicator","Confidence":95.77232},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.50392}],"Text":"vertical","Confidence":94.59828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.42316}],"Text":"plot","Confidence":92.14269},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57335}],"Text":"configure","Confidence":90.282555},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03784}],"Text":"mea","Confidence":90.00853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57327}],"Text":"meaning","Confidence":89.182594},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.0227}],"Text":"verticallndicator","Confidence":85.2199},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.03889}],"Text":"horizontallndicator","Confidence":78.35303}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(80%).json index 8b7ffd4..c6e52bd 100644 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.523506}],"Text":"configure","Confidence":96.66453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.570305}],"Text":"meanings","Confidence":96.59586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57353}],"Text":"plot","Confidence":95.393105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4164}],"Text":"indicator","Confidence":95.24515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.572014}],"Text":"vertical","Confidence":95.24515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5432}],"Text":"scatter","Confidence":95.11572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573685}],"Text":"plot","Confidence":92.37144},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03605}],"Text":"mea","Confidence":91.86358},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.0356}],"Text":"verticalindicator","Confidence":90.777824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55315}],"Text":"horizontal","Confidence":89.62157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56887}],"Text":"meaning","Confidence":88.01255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.0274}],"Text":"horizontalindicator","Confidence":87.396225}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.523506}],"Text":"configure","Confidence":96.66453},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.570305}],"Text":"meanings","Confidence":96.59586},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.57353}],"Text":"plot","Confidence":95.393105},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.4164}],"Text":"indicator","Confidence":95.24515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.572014}],"Text":"vertical","Confidence":95.24515},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.5432}],"Text":"scatter","Confidence":95.11572},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.573685}],"Text":"plot","Confidence":92.37144},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.03605}],"Text":"mea","Confidence":91.86358},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.0356}],"Text":"verticalindicator","Confidence":90.777824},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.55315}],"Text":"horizontal","Confidence":89.62157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56887}],"Text":"meaning","Confidence":88.01255},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":99.0274}],"Text":"horizontalindicator","Confidence":87.396225}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(90%).json deleted file mode 100644 index 4a3ebac..0000000 --- a/Examples/testdata/results/zrs_ZAMS_scatter_002.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"p","Confidence":99.571785}],"Text":"plot","Confidence":96.24938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":99.43945}],"Text":"scatter","Confidence":94.48086},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.4889}],"Text":"vertical","Confidence":92.1886},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.017334}],"Text":"ini","Confidence":53.986645}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Kapur).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Kapur).json index a91d54f..229a3ca 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Kapur).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Kapur).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54916}],"Text":"configuration","Confidence":91.87155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.17294}],"Text":"ne","Confidence":90.624374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.72986}],"Text":"ok","Confidence":84.108986},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":97.07619}],"Text":"yaldate","Confidence":79.53331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.547554}],"Text":"ehe","Confidence":68.74097},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.579216}],"Text":"hhe","Confidence":55.022743}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54916}],"Text":"configuration","Confidence":91.87155},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.17294}],"Text":"ne","Confidence":90.624374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":97.72986}],"Text":"ok","Confidence":84.108986},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Y","Confidence":97.07619}],"Text":"yaldate","Confidence":79.53331},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.547554}],"Text":"ehe","Confidence":68.74097},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"H","Confidence":98.579216}],"Text":"hhe","Confidence":55.022743}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(OTSU).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(OTSU).json index a78c3e9..150c733 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(OTSU).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(OTSU).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55504}],"Text":"report","Confidence":96.88528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57276}],"Text":"configuration","Confidence":96.884384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57172}],"Text":"for","Confidence":96.85715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573845}],"Text":"measurement","Confidence":96.84994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.54976}],"Text":"results","Confidence":96.64439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.520325}],"Text":"rose","Confidence":96.64228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57037}],"Text":"angular","Confidence":96.505844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56806}],"Text":"wind","Confidence":96.27346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574234}],"Text":"direction","Confidence":96.00237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5625}],"Text":"degree","Confidence":95.98439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56313}],"Text":"variable","Confidence":94.54423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.21575}],"Text":"validation","Confidence":94.510254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53003}],"Text":"cancel","Confidence":92.721954},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.01294}],"Text":"indicator","Confidence":92.15817},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.021255}],"Text":"granularity","Confidence":91.98942},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.9127}],"Text":"meaning","Confidence":91.29662},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.70227}],"Text":"validate","Confidence":90.915886},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.97537}],"Text":"nne","Confidence":75.68721},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.021164}],"Text":"direotions","Confidence":53.87014},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":93.048744}],"Text":"16","Confidence":51.34119}],"Elapsed":0.0009} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55504}],"Text":"report","Confidence":96.88528},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.57276}],"Text":"configuration","Confidence":96.884384},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57172}],"Text":"for","Confidence":96.85715},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.573845}],"Text":"measurement","Confidence":96.84994},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.54976}],"Text":"results","Confidence":96.64439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.520325}],"Text":"rose","Confidence":96.64228},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57037}],"Text":"angular","Confidence":96.505844},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.56806}],"Text":"wind","Confidence":96.27346},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.574234}],"Text":"direction","Confidence":96.00237},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5625}],"Text":"degree","Confidence":95.98439},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56313}],"Text":"variable","Confidence":94.54423},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.21575}],"Text":"validation","Confidence":94.510254},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53003}],"Text":"cancel","Confidence":92.721954},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.01294}],"Text":"indicator","Confidence":92.15817},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.021255}],"Text":"granularity","Confidence":91.98942},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"M","Confidence":98.9127}],"Text":"meaning","Confidence":91.29662},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.70227}],"Text":"validate","Confidence":90.915886},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.97537}],"Text":"nne","Confidence":75.68721},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.021164}],"Text":"direotions","Confidence":53.87014},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":93.048744}],"Text":"16","Confidence":51.34119}],"Elapsed":0.0011} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Triangle).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Triangle).json index 422593b..7fe0c4f 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Triangle).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.AutoThresholdProcessor(Triangle).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55467}],"Text":"directions","Confidence":90.99325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":96.25031}],"Text":"rose","Confidence":73.75221},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":97.60387}],"Text":"16","Confidence":65.6111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.07569}],"Text":"whe","Confidence":65.32116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":94.39188}],"Text":"he","Confidence":60.74315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.370964}],"Text":"wind","Confidence":59.7978}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.55467}],"Text":"directions","Confidence":90.99325},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":96.25031}],"Text":"rose","Confidence":73.75221},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":97.60387}],"Text":"16","Confidence":65.6111},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.07569}],"Text":"whe","Confidence":65.32116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"H","Confidence":94.39188}],"Text":"he","Confidence":60.74315},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.370964}],"Text":"wind","Confidence":59.7978}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(00_00).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(00_00).json deleted file mode 100644 index 135e8be..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(00_00).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":97.82484}],"Text":"meaning","Confidence":81.2717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":97.97009}],"Text":"rose","Confidence":64.818436},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54553}],"Text":"for","Confidence":64.23872}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(02_02).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(02_02).json deleted file mode 100644 index 59b732c..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(02_02).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":97.456406}],"Text":"ll","Confidence":77.39964},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"5","Confidence":95.10109}],"Text":"53","Confidence":65.70761},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":97.399765}],"Text":"124","Confidence":57.482292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"S","Confidence":93.3107}],"Text":"sei","Confidence":53.17489},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.32155}],"Text":"ay","Confidence":52.60744},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":95.49804}],"Text":"da","Confidence":52.508205}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(04_04).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(04_04).json index 3f71a43..d2cfe1b 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(04_04).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(04_04).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.50928}],"Text":"validation","Confidence":61.564938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.10887}],"Text":"cr","Confidence":50.13805}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":94.50928}],"Text":"validation","Confidence":61.564938},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":97.10887}],"Text":"cr","Confidence":50.13805}],"Elapsed":0.0014} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(06_06).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(06_06).json deleted file mode 100644 index 2647325..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(06_06).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.44898}],"Text":"validation","Confidence":96.14287},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57452}],"Text":"direction","Confidence":95.55102},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.53395}],"Text":"measurement","Confidence":93.54134},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.43866}],"Text":"results","Confidence":93.47185},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56605}],"Text":"for","Confidence":93.25853},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":98.14777}],"Text":"wind","Confidence":87.03441},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.544914}],"Text":"meaning","Confidence":73.398895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":95.14517}],"Text":"angular","Confidence":66.01619},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":97.94101}],"Text":"rese","Confidence":58.16308},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.73274}],"Text":"cancel","Confidence":56.129223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.08554}],"Text":"configuration","Confidence":51.59876}],"Elapsed":0.001} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(08_08).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(08_08).json index 5fc060d..be09fd3 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(08_08).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(08_08).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57393}],"Text":"for","Confidence":96.89049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56709}],"Text":"meaning","Confidence":96.84677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5664}],"Text":"wind","Confidence":96.84639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57392}],"Text":"report","Confidence":96.78648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.52378}],"Text":"rose","Confidence":96.666466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56081}],"Text":"direction","Confidence":96.066635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.37611}],"Text":"validation","Confidence":95.63275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.555626}],"Text":"indicator","Confidence":95.57244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.381256}],"Text":"measurement","Confidence":95.30882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47842}],"Text":"configuration","Confidence":90.64147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.08936}],"Text":"directions","Confidence":88.06101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56911}],"Text":"results","Confidence":85.61292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.559296}],"Text":"variable","Confidence":84.518196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.627884}],"Text":"configuration","Confidence":83.395195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47271}],"Text":"configuration","Confidence":78.13595},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.77451}],"Text":"walidate","Confidence":77.42157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":94.6368}],"Text":"en","Confidence":56.801613},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.8176}],"Text":"ok","Confidence":56.723183}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57393}],"Text":"for","Confidence":96.89049},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56709}],"Text":"meaning","Confidence":96.84677},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.5664}],"Text":"wind","Confidence":96.84639},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57392}],"Text":"report","Confidence":96.78648},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.52378}],"Text":"rose","Confidence":96.666466},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56081}],"Text":"direction","Confidence":96.066635},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.37611}],"Text":"validation","Confidence":95.63275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.555626}],"Text":"indicator","Confidence":95.57244},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.381256}],"Text":"measurement","Confidence":95.30882},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.47842}],"Text":"configuration","Confidence":90.64147},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.08936}],"Text":"directions","Confidence":88.06101},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56911}],"Text":"results","Confidence":85.61292},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.559296}],"Text":"variable","Confidence":84.518196},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"\u2018","Confidence":97.627884}],"Text":"configuration","Confidence":83.395195},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.47271}],"Text":"configuration","Confidence":78.13595},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"W","Confidence":96.77451}],"Text":"walidate","Confidence":77.42157},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":94.6368}],"Text":"en","Confidence":56.801613},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"O","Confidence":93.8176}],"Text":"ok","Confidence":56.723183}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(10_10).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(10_10).json deleted file mode 100644 index 7396b93..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(10_10).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573814}],"Text":"for","Confidence":96.912285},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.550156}],"Text":"rose","Confidence":96.73451},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57351}],"Text":"report","Confidence":96.560555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.490974}],"Text":"wind","Confidence":96.4368},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57257}],"Text":"direction","Confidence":96.23669},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.44724}],"Text":"validation","Confidence":96.13069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57382}],"Text":"indicator","Confidence":95.105835},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.420334}],"Text":"configuration","Confidence":94.00555},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.57234}],"Text":"variable","Confidence":91.80339},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.56888}],"Text":"results","Confidence":88.77458},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.53458}],"Text":"configuration","Confidence":84.002594},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"|","Confidence":95.58432}],"Text":"wind","Confidence":69.09021}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(12_12).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(12_12).json index 2644757..11dd22b 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(12_12).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(12_12).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57068}],"Text":"wind","Confidence":96.994736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57284}],"Text":"report","Confidence":96.869514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57451}],"Text":"for","Confidence":96.85828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57433}],"Text":"rose","Confidence":96.78558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57277}],"Text":"meaning","Confidence":96.722694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57022}],"Text":"ne","Confidence":96.71603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57353}],"Text":"indicator","Confidence":96.31065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56715}],"Text":"configuration","Confidence":96.19499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56715}],"Text":"direction","Confidence":96.12841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56674}],"Text":"measurement","Confidence":95.81201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55948}],"Text":"angular","Confidence":95.78922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.360085}],"Text":"variable","Confidence":95.520615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56805}],"Text":"ene","Confidence":93.30299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57186}],"Text":"directions","Confidence":93.173805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.02453}],"Text":"nne","Confidence":92.58455},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.55516}],"Text":"16","Confidence":82.88615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.23722}],"Text":"validate","Confidence":64.28128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":96.04038}],"Text":"mee","Confidence":57.948647}],"Elapsed":0.0005} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57068}],"Text":"wind","Confidence":96.994736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57284}],"Text":"report","Confidence":96.869514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57451}],"Text":"for","Confidence":96.85828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57433}],"Text":"rose","Confidence":96.78558},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57277}],"Text":"meaning","Confidence":96.722694},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57022}],"Text":"ne","Confidence":96.71603},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57353}],"Text":"indicator","Confidence":96.31065},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56715}],"Text":"configuration","Confidence":96.19499},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56715}],"Text":"direction","Confidence":96.12841},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56674}],"Text":"measurement","Confidence":95.81201},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.55948}],"Text":"angular","Confidence":95.78922},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.360085}],"Text":"variable","Confidence":95.520615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56805}],"Text":"ene","Confidence":93.30299},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57186}],"Text":"directions","Confidence":93.173805},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.02453}],"Text":"nne","Confidence":92.58455},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":97.55516}],"Text":"16","Confidence":82.88615},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.23722}],"Text":"validate","Confidence":64.28128},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":96.04038}],"Text":"mee","Confidence":57.948647}],"Elapsed":0.0006} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(14_14).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(14_14).json deleted file mode 100644 index 25cedbc..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(14_14).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.573044}],"Text":"wind","Confidence":97.00149},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57425}],"Text":"report","Confidence":96.97151},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57407}],"Text":"rose","Confidence":96.924934},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.566376}],"Text":"for","Confidence":96.84046},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.56783}],"Text":"16","Confidence":96.83675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57103}],"Text":"meaning","Confidence":96.80335},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.56425}],"Text":"configuration","Confidence":96.72318},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57334}],"Text":"ne","Confidence":96.4983},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57156}],"Text":"angular","Confidence":96.13829},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54313}],"Text":"variable","Confidence":96.137024},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56444}],"Text":"direction","Confidence":96.01543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55037}],"Text":"granularity","Confidence":95.775116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55324}],"Text":"indicator","Confidence":94.56248},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.541084}],"Text":"directions","Confidence":93.242615},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.025986}],"Text":"nne","Confidence":92.581665},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57406}],"Text":"ene","Confidence":91.32773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.257256}],"Text":"degree","Confidence":90.994736},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.566635}],"Text":"measurement","Confidence":90.04112},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"B","Confidence":93.65319}],"Text":"bw","Confidence":55.57231}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(16_16).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(16_16).json index 41bc8fb..e0729e4 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(16_16).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(16_16).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572044}],"Text":"wind","Confidence":96.97999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57065}],"Text":"rose","Confidence":96.94171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5717}],"Text":"meaning","Confidence":96.88849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52336}],"Text":"configuration","Confidence":96.66355},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51827}],"Text":"16","Confidence":96.627884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55777}],"Text":"indicator","Confidence":96.583015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57429}],"Text":"for","Confidence":96.47914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57353}],"Text":"angular","Confidence":96.47001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48598}],"Text":"report","Confidence":96.401855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54726}],"Text":"variable","Confidence":96.23286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.45209}],"Text":"validation","Confidence":96.1646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55968}],"Text":"ne","Confidence":96.14141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.554634}],"Text":"direction","Confidence":95.91064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57245}],"Text":"granularity","Confidence":94.32417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.49986}],"Text":"results","Confidence":94.20657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56978}],"Text":"directions","Confidence":93.30602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56893}],"Text":"validate","Confidence":93.2977},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.007545}],"Text":"nne","Confidence":92.141624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49066}],"Text":"degree","Confidence":92.01637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574356}],"Text":"ene","Confidence":89.10367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5503}],"Text":"measurement","Confidence":89.08543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.02977}],"Text":"zu","Confidence":80.91724},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.83694}],"Text":"confiquction","Confidence":53.68836}],"Elapsed":0.0004} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.572044}],"Text":"wind","Confidence":96.97999},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57065}],"Text":"rose","Confidence":96.94171},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5717}],"Text":"meaning","Confidence":96.88849},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.52336}],"Text":"configuration","Confidence":96.66355},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.51827}],"Text":"16","Confidence":96.627884},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55777}],"Text":"indicator","Confidence":96.583015},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57429}],"Text":"for","Confidence":96.47914},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57353}],"Text":"angular","Confidence":96.47001},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48598}],"Text":"report","Confidence":96.401855},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54726}],"Text":"variable","Confidence":96.23286},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.45209}],"Text":"validation","Confidence":96.1646},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55968}],"Text":"ne","Confidence":96.14141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.554634}],"Text":"direction","Confidence":95.91064},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57245}],"Text":"granularity","Confidence":94.32417},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.49986}],"Text":"results","Confidence":94.20657},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56978}],"Text":"directions","Confidence":93.30602},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56893}],"Text":"validate","Confidence":93.2977},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.007545}],"Text":"nne","Confidence":92.141624},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.49066}],"Text":"degree","Confidence":92.01637},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.574356}],"Text":"ene","Confidence":89.10367},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.5503}],"Text":"measurement","Confidence":89.08543},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.02977}],"Text":"zu","Confidence":80.91724},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.83694}],"Text":"confiquction","Confidence":53.68836}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(18_18).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(18_18).json deleted file mode 100644 index 0793840..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(18_18).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57334}],"Text":"wind","Confidence":96.99355},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57424}],"Text":"report","Confidence":96.96606},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57418}],"Text":"for","Confidence":96.9295},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56927}],"Text":"meaning","Confidence":96.92816},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.55161}],"Text":"rose","Confidence":96.73868},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5668}],"Text":"configuration","Confidence":96.734245},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57182}],"Text":"angular","Confidence":96.62838},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56976}],"Text":"indicator","Confidence":96.593056},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.542984}],"Text":"variable","Confidence":96.57883},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56579}],"Text":"direction","Confidence":96.50672},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57287}],"Text":"ne","Confidence":96.17847},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.49453}],"Text":"validation","Confidence":95.4037},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57179}],"Text":"measurement","Confidence":95.1342},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.4721}],"Text":"16","Confidence":95.09968},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.53789}],"Text":"results","Confidence":94.170395},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.57157}],"Text":"directions","Confidence":93.25028},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.04178}],"Text":"nne","Confidence":92.67932},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.18698}],"Text":"granularity","Confidence":92.24293},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56829}],"Text":"ene","Confidence":89.362854},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56155}],"Text":"degree","Confidence":86.64618},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"Z","Confidence":98.19793}],"Text":"zj","Confidence":67.74336},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.261154}],"Text":"mv","Confidence":51.9076}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(20_20).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(20_20).json index 594dfeb..8901d74 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(20_20).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(20_20).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56356}],"Text":"wind","Confidence":96.9449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573166}],"Text":"rose","Confidence":96.89095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.559715}],"Text":"direction","Confidence":96.871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54672}],"Text":"for","Confidence":96.76819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.559814}],"Text":"meaning","Confidence":96.76698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57195}],"Text":"indicator","Confidence":96.6028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.572174}],"Text":"angular","Confidence":96.579704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.570625}],"Text":"ne","Confidence":96.57776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55843}],"Text":"configuration","Confidence":96.53225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.48532}],"Text":"variable","Confidence":95.87053},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.38438}],"Text":"16","Confidence":95.69066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57356}],"Text":"measurement","Confidence":95.46535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.539925}],"Text":"report","Confidence":94.99618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55374}],"Text":"granularity","Confidence":94.47873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569695}],"Text":"directions","Confidence":93.30238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5504}],"Text":"results","Confidence":92.69537},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.03801}],"Text":"nne","Confidence":92.08658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57417}],"Text":"ene","Confidence":87.55895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.482376}],"Text":"validation","Confidence":85.68656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572014}],"Text":"degree","Confidence":85.30525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.49214}],"Text":"mv","Confidence":75.030495},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.867226}],"Text":"corfiguration","Confidence":66.28424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5514}],"Text":"validate","Confidence":55.24782}],"Elapsed":0.0006} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56356}],"Text":"wind","Confidence":96.9449},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.573166}],"Text":"rose","Confidence":96.89095},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.559715}],"Text":"direction","Confidence":96.871},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.54672}],"Text":"for","Confidence":96.76819},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.559814}],"Text":"meaning","Confidence":96.76698},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57195}],"Text":"indicator","Confidence":96.6028},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.572174}],"Text":"angular","Confidence":96.579704},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.570625}],"Text":"ne","Confidence":96.57776},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.55843}],"Text":"configuration","Confidence":96.53225},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.48532}],"Text":"variable","Confidence":95.87053},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.38438}],"Text":"16","Confidence":95.69066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57356}],"Text":"measurement","Confidence":95.46535},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.539925}],"Text":"report","Confidence":94.99618},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.55374}],"Text":"granularity","Confidence":94.47873},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569695}],"Text":"directions","Confidence":93.30238},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.5504}],"Text":"results","Confidence":92.69537},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.03801}],"Text":"nne","Confidence":92.08658},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57417}],"Text":"ene","Confidence":87.55895},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.482376}],"Text":"validation","Confidence":85.68656},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.572014}],"Text":"degree","Confidence":85.30525},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":98.49214}],"Text":"mv","Confidence":75.030495},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.867226}],"Text":"corfiguration","Confidence":66.28424},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5514}],"Text":"validate","Confidence":55.24782}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(22_22).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(22_22).json deleted file mode 100644 index 0773881..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(22_22).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57451}],"Text":"rose","Confidence":96.90162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57456}],"Text":"report","Confidence":96.90162},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.57131}],"Text":"configuration","Confidence":96.89571},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.57359}],"Text":"wind","Confidence":96.88358},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.5718}],"Text":"meaning","Confidence":96.81642},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.57357}],"Text":"for","Confidence":96.787186},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.5178}],"Text":"validation","Confidence":96.62457},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57}],"Text":"angular","Confidence":96.588066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.574326}],"Text":"ne","Confidence":96.469345},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.56577}],"Text":"indicator","Confidence":95.65069},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.551346}],"Text":"direction","Confidence":95.029594},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.572205}],"Text":"measurement","Confidence":94.727806},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.47702}],"Text":"16","Confidence":94.372505},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.568245}],"Text":"directions","Confidence":93.30535},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"V","Confidence":98.93053}],"Text":"validate","Confidence":92.513664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56617}],"Text":"variable","Confidence":92.242615},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.02878}],"Text":"nne","Confidence":91.869316},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.5097}],"Text":"degree","Confidence":88.15828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.57324}],"Text":"ene","Confidence":87.31275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.55986}],"Text":"results","Confidence":75.317566},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":97.88725}],"Text":"mv","Confidence":72.80664},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57385}],"Text":"granularity","Confidence":65.40706}],"Elapsed":0.0005} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(24_24).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(24_24).json index cea957d..5e6b7e3 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(24_24).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdAdaptiveProcessor(24_24).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574486}],"Text":"rose","Confidence":96.95877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.571655}],"Text":"wind","Confidence":96.93141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56337}],"Text":"direction","Confidence":96.85668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.552444}],"Text":"configuration","Confidence":96.7688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.53696}],"Text":"validation","Confidence":96.758675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57288}],"Text":"meaning","Confidence":96.65304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57079}],"Text":"angular","Confidence":96.60773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57118}],"Text":"indicator","Confidence":96.31766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.455444}],"Text":"report","Confidence":96.18813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5726}],"Text":"for","Confidence":96.02973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.561134}],"Text":"measurement","Confidence":94.35964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56835}],"Text":"variable","Confidence":93.29647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56821}],"Text":"directions","Confidence":93.267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57471}],"Text":"ne","Confidence":93.01968},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48221}],"Text":"16","Confidence":92.73683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56787}],"Text":"ene","Confidence":89.959076},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.01461}],"Text":"nne","Confidence":88.369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57314}],"Text":"granularity","Confidence":61.245384}],"Elapsed":0.0019} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574486}],"Text":"rose","Confidence":96.95877},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.571655}],"Text":"wind","Confidence":96.93141},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56337}],"Text":"direction","Confidence":96.85668},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.552444}],"Text":"configuration","Confidence":96.7688},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.53696}],"Text":"validation","Confidence":96.758675},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57288}],"Text":"meaning","Confidence":96.65304},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57079}],"Text":"angular","Confidence":96.60773},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.57118}],"Text":"indicator","Confidence":96.31766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.455444}],"Text":"report","Confidence":96.18813},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.5726}],"Text":"for","Confidence":96.02973},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.561134}],"Text":"measurement","Confidence":94.35964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56835}],"Text":"variable","Confidence":93.29647},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56821}],"Text":"directions","Confidence":93.267},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.57471}],"Text":"ne","Confidence":93.01968},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"1","Confidence":99.48221}],"Text":"16","Confidence":92.73683},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.56787}],"Text":"ene","Confidence":89.959076},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.01461}],"Text":"nne","Confidence":88.369},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.57314}],"Text":"granularity","Confidence":61.245384}],"Elapsed":0.0004} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(0%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(0%).json deleted file mode 100644 index a0afdbe..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(0%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(10%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(10%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(10%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(100%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(100%).json deleted file mode 100644 index 2c6e420..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(100%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(20%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(20%).json index f2104e6..2c6e420 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(20%).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(20%).json @@ -1 +1 @@ -{"Words":[],"Elapsed":0.001} \ No newline at end of file +{"Words":[],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(40%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(40%).json index ea189c2..503c983 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(40%).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(40%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574135}],"Text":"rose","Confidence":96.715645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57433}],"Text":"report","Confidence":96.550766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.561714}],"Text":"wind","Confidence":96.49262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56318}],"Text":"direction","Confidence":96.40599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53024}],"Text":"for","Confidence":96.37676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574066}],"Text":"configuration","Confidence":95.892006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.48162}],"Text":"meaning","Confidence":95.847374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.32852}],"Text":"le","Confidence":95.25953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55998}],"Text":"cancel","Confidence":94.56598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48795}],"Text":"ros","Confidence":93.21349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.00962}],"Text":"validate","Confidence":93.06737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50123}],"Text":"angular","Confidence":86.60828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.35138}],"Text":"ak","Confidence":81.45965},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.42831}],"Text":"24","Confidence":78.04941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5395}],"Text":"indicator","Confidence":77.71539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.641685}],"Text":"validation","Confidence":76.491806},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.6902}],"Text":"vanable","Confidence":73.07553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.43647}],"Text":"zu","Confidence":63.299465}],"Elapsed":0.0015} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.574135}],"Text":"rose","Confidence":96.715645},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57433}],"Text":"report","Confidence":96.550766},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.561714}],"Text":"wind","Confidence":96.49262},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56318}],"Text":"direction","Confidence":96.40599},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.53024}],"Text":"for","Confidence":96.37676},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574066}],"Text":"configuration","Confidence":95.892006},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.48162}],"Text":"meaning","Confidence":95.847374},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"L","Confidence":99.32852}],"Text":"le","Confidence":95.25953},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.55998}],"Text":"cancel","Confidence":94.56598},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.48795}],"Text":"ros","Confidence":93.21349},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.00962}],"Text":"validate","Confidence":93.06737},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.50123}],"Text":"angular","Confidence":86.60828},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"a","Confidence":97.35138}],"Text":"ak","Confidence":81.45965},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"2","Confidence":99.42831}],"Text":"24","Confidence":78.04941},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.5395}],"Text":"indicator","Confidence":77.71539},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":96.641685}],"Text":"validation","Confidence":76.491806},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"v","Confidence":98.6902}],"Text":"vanable","Confidence":73.07553},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"Z","Confidence":99.43647}],"Text":"zu","Confidence":63.299465}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(50%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(50%).json index e4117f3..bb88b89 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(50%).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(50%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57451}],"Text":"rose","Confidence":96.95415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56096}],"Text":"for","Confidence":96.79421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56024}],"Text":"direction","Confidence":96.769966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57448}],"Text":"report","Confidence":96.76567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574425}],"Text":"configuration","Confidence":96.713066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56734}],"Text":"meaning","Confidence":96.65931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54306}],"Text":"validate","Confidence":96.54208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.558205}],"Text":"results","Confidence":96.51585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56312}],"Text":"wind","Confidence":95.43706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56049}],"Text":"measurement","Confidence":95.19116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.25128}],"Text":"indicator","Confidence":94.75898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54942}],"Text":"variable","Confidence":89.26223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.564354}],"Text":"angular","Confidence":88.46191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.29239}],"Text":"in","Confidence":68.60199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.29733}],"Text":"granularity","Confidence":66.63214},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.00917}],"Text":"irsctiors","Confidence":61.672443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":93.97684}],"Text":"validation","Confidence":57.837883},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.47557}],"Text":"cegres","Confidence":54.32898}],"Elapsed":0.0008} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57451}],"Text":"rose","Confidence":96.95415},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.56096}],"Text":"for","Confidence":96.79421},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.56024}],"Text":"direction","Confidence":96.769966},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57448}],"Text":"report","Confidence":96.76567},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.574425}],"Text":"configuration","Confidence":96.713066},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56734}],"Text":"meaning","Confidence":96.65931},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54306}],"Text":"validate","Confidence":96.54208},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.558205}],"Text":"results","Confidence":96.51585},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.56312}],"Text":"wind","Confidence":95.43706},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56049}],"Text":"measurement","Confidence":95.19116},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.25128}],"Text":"indicator","Confidence":94.75898},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.54942}],"Text":"variable","Confidence":89.26223},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.564354}],"Text":"angular","Confidence":88.46191},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"I","Confidence":97.29239}],"Text":"in","Confidence":68.60199},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.29733}],"Text":"granularity","Confidence":66.63214},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.00917}],"Text":"irsctiors","Confidence":61.672443},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":93.97684}],"Text":"validation","Confidence":57.837883},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"C","Confidence":93.47557}],"Text":"cegres","Confidence":54.32898}],"Elapsed":0.0007} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(70%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(70%).json index 91c902d..b324b93 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(70%).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(70%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57313}],"Text":"rose","Confidence":96.984726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56955}],"Text":"report","Confidence":96.96729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5672}],"Text":"configuration","Confidence":96.8542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57409}],"Text":"measurement","Confidence":96.825516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55669}],"Text":"indicator","Confidence":96.81193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57086}],"Text":"angular","Confidence":96.79834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.55574}],"Text":"wind","Confidence":96.784485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.573456}],"Text":"meaning","Confidence":96.70139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.561806}],"Text":"results","Confidence":96.68933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55698}],"Text":"validate","Confidence":96.62536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.45166}],"Text":"direction","Confidence":96.1616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54493}],"Text":"cancel","Confidence":95.8284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573395}],"Text":"for","Confidence":95.82514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56333}],"Text":"degree","Confidence":95.689964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.567245}],"Text":"granularity","Confidence":95.1987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.23597}],"Text":"validation","Confidence":94.65181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56399}],"Text":"variable","Confidence":94.538506},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.99407}],"Text":"nne","Confidence":76.78625}],"Elapsed":0.001} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57313}],"Text":"rose","Confidence":96.984726},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56955}],"Text":"report","Confidence":96.96729},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5672}],"Text":"configuration","Confidence":96.8542},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57409}],"Text":"measurement","Confidence":96.825516},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.55669}],"Text":"indicator","Confidence":96.81193},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57086}],"Text":"angular","Confidence":96.79834},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.55574}],"Text":"wind","Confidence":96.784485},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.573456}],"Text":"meaning","Confidence":96.70139},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.561806}],"Text":"results","Confidence":96.68933},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.55698}],"Text":"validate","Confidence":96.62536},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.45166}],"Text":"direction","Confidence":96.1616},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.54493}],"Text":"cancel","Confidence":95.8284},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573395}],"Text":"for","Confidence":95.82514},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"D","Confidence":99.56333}],"Text":"degree","Confidence":95.689964},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.567245}],"Text":"granularity","Confidence":95.1987},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.23597}],"Text":"validation","Confidence":94.65181},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56399}],"Text":"variable","Confidence":94.538506},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.99407}],"Text":"nne","Confidence":76.78625}],"Elapsed":0.0009} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(80%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(80%).json index 26b010b..7e87bd4 100644 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(80%).json +++ b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(80%).json @@ -1 +1 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57348}],"Text":"wind","Confidence":96.967094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562164}],"Text":"for","Confidence":96.93512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5746}],"Text":"configuration","Confidence":96.90842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57199}],"Text":"report","Confidence":96.87177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574}],"Text":"angular","Confidence":96.85409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570206}],"Text":"rose","Confidence":96.849174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57363}],"Text":"measurement","Confidence":96.807495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57335}],"Text":"meaning","Confidence":96.719444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51568}],"Text":"direction","Confidence":96.33079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.36652}],"Text":"validation","Confidence":95.56569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572975}],"Text":"variable","Confidence":94.94158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.565674}],"Text":"granularity","Confidence":94.863716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.523636}],"Text":"results","Confidence":94.47275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54973}],"Text":"validate","Confidence":93.193634},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03614}],"Text":"confiquration","Confidence":92.433846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569496}],"Text":"directions","Confidence":91.76418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.459076}],"Text":"indicator","Confidence":74.82483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.528725}],"Text":"ll","Confidence":66.91016},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.75271}],"Text":"bearee","Confidence":63.24516}],"Elapsed":0.0018} \ No newline at end of file +{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"w","Confidence":99.57348}],"Text":"wind","Confidence":96.967094},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.562164}],"Text":"for","Confidence":96.93512},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"C","Confidence":99.5746}],"Text":"configuration","Confidence":96.90842},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.57199}],"Text":"report","Confidence":96.87177},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.574}],"Text":"angular","Confidence":96.85409},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.570206}],"Text":"rose","Confidence":96.849174},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.57363}],"Text":"measurement","Confidence":96.807495},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.57335}],"Text":"meaning","Confidence":96.719444},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.51568}],"Text":"direction","Confidence":96.33079},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.36652}],"Text":"validation","Confidence":95.56569},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.572975}],"Text":"variable","Confidence":94.94158},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"g","Confidence":99.565674}],"Text":"granularity","Confidence":94.863716},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"r","Confidence":99.523636}],"Text":"results","Confidence":94.47275},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.54973}],"Text":"validate","Confidence":93.193634},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.03614}],"Text":"confiquration","Confidence":92.433846},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.569496}],"Text":"directions","Confidence":91.76418},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.459076}],"Text":"indicator","Confidence":74.82483},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"l","Confidence":98.528725}],"Text":"ll","Confidence":66.91016},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":96.75271}],"Text":"bearee","Confidence":63.24516}],"Elapsed":0.0008} \ No newline at end of file diff --git a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(90%).json b/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(90%).json deleted file mode 100644 index 7a8cf19..0000000 --- a/Examples/testdata/results/zrs_ZAMS_windrose_002.ThresholdProcessor(90%).json +++ /dev/null @@ -1 +0,0 @@ -{"Words":[{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.56649}],"Text":"rose","Confidence":96.9288},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"f","Confidence":99.573814}],"Text":"for","Confidence":96.81363},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"W","Confidence":99.516205}],"Text":"wind","Confidence":96.61344},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"M","Confidence":99.56918}],"Text":"meaning","Confidence":96.34831},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.56381}],"Text":"validation","Confidence":96.32464},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"i","Confidence":99.54622}],"Text":"indicator","Confidence":96.12611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"v","Confidence":99.56687}],"Text":"variable","Confidence":96.12611},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"c","Confidence":99.54578}],"Text":"configuration","Confidence":93.59771},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"R","Confidence":99.54869}],"Text":"rese","Confidence":93.30457},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"R","Confidence":98.927376}],"Text":"repert","Confidence":92.305214},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"A","Confidence":99.57204}],"Text":"angular","Confidence":92.1592},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"m","Confidence":99.56399}],"Text":"measurement","Confidence":91.05717},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":98.44097}],"Text":"directions","Confidence":89.08678},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"d","Confidence":99.36135}],"Text":"direction","Confidence":88.40305},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"N","Confidence":98.58466}],"Text":"nne","Confidence":86.381424},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"[","Confidence":98.573166}],"Text":"dearee","Confidence":82.954796},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"V","Confidence":99.19944}],"Text":"validate","Confidence":73.3199},{"IsFromDictionary":false,"Numeric":true,"Choices":[{"Text":"[","Confidence":95.10146}],"Text":"16","Confidence":65.710236},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"c","Confidence":98.9639}],"Text":"configurat","Confidence":62.462173},{"IsFromDictionary":false,"Numeric":false,"Choices":[{"Text":"E","Confidence":99.030235}],"Text":"ene","Confidence":60.62085},{"IsFromDictionary":true,"Numeric":false,"Choices":[{"Text":"N","Confidence":99.55926}],"Text":"ne","Confidence":57.907867}],"Elapsed":0.0011} \ No newline at end of file