1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Threading;
|
---|
5 | using HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration.GrammarEnumeration;
|
---|
6 | using HeuristicLab.Collections;
|
---|
7 | using HeuristicLab.Common;
|
---|
8 | using HeuristicLab.Core;
|
---|
9 | using HeuristicLab.Data;
|
---|
10 | using HeuristicLab.Optimization;
|
---|
11 | using HeuristicLab.Parameters;
|
---|
12 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
13 | using HeuristicLab.Problems.DataAnalysis;
|
---|
14 |
|
---|
15 | namespace HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration {
|
---|
16 | [Item("Grammar Enumeration Symbolic Regression", "Iterates all possible model structures for a fixed grammar.")]
|
---|
17 | [StorableClass]
|
---|
18 | [Creatable(CreatableAttribute.Categories.DataAnalysisRegression, Priority = 250)]
|
---|
19 | public class GrammarEnumerationAlgorithm : FixedDataAnalysisAlgorithm<IRegressionProblem> {
|
---|
20 | #region properties and result names
|
---|
21 | private readonly string SearchStructureSizeName = "Search Structure Size";
|
---|
22 | private readonly string GeneratedPhrasesName = "Generated/Archived Phrases";
|
---|
23 | private readonly string GeneratedSentencesName = "Generated Sentences";
|
---|
24 | private readonly string DistinctSentencesName = "Distinct Sentences";
|
---|
25 | private readonly string PhraseExpansionsName = "Phrase Expansions";
|
---|
26 | private readonly string AverageSentenceLengthName = "Avg. Sentence Length among Distinct";
|
---|
27 | private readonly string OverwrittenSentencesName = "Sentences overwritten";
|
---|
28 | private readonly string AnalyzersParameterName = "Analyzers";
|
---|
29 | private readonly string ExpansionsPerSecondName = "Expansions per second";
|
---|
30 |
|
---|
31 |
|
---|
32 | private readonly string SearchDataStructureParameterName = "Search Data Structure";
|
---|
33 | private readonly string MaxTreeSizeParameterName = "Max. Tree Nodes";
|
---|
34 | private readonly string GuiUpdateIntervalParameterName = "GUI Update Interval";
|
---|
35 |
|
---|
36 | public override bool SupportsPause { get { return false; } }
|
---|
37 |
|
---|
38 | protected IValueParameter<IntValue> MaxTreeSizeParameter {
|
---|
39 | get { return (IValueParameter<IntValue>)Parameters[MaxTreeSizeParameterName]; }
|
---|
40 | }
|
---|
41 | public int MaxTreeSize {
|
---|
42 | get { return MaxTreeSizeParameter.Value.Value; }
|
---|
43 | set { MaxTreeSizeParameter.Value.Value = value; }
|
---|
44 | }
|
---|
45 |
|
---|
46 | protected IValueParameter<IntValue> GuiUpdateIntervalParameter {
|
---|
47 | get { return (IValueParameter<IntValue>)Parameters[GuiUpdateIntervalParameterName]; }
|
---|
48 | }
|
---|
49 | public int GuiUpdateInterval {
|
---|
50 | get { return GuiUpdateIntervalParameter.Value.Value; }
|
---|
51 | set { GuiUpdateIntervalParameter.Value.Value = value; }
|
---|
52 | }
|
---|
53 |
|
---|
54 | protected IValueParameter<EnumValue<StorageType>> SearchDataStructureParameter {
|
---|
55 | get { return (IValueParameter<EnumValue<StorageType>>)Parameters[SearchDataStructureParameterName]; }
|
---|
56 | }
|
---|
57 | public StorageType SearchDataStructure {
|
---|
58 | get { return SearchDataStructureParameter.Value.Value; }
|
---|
59 | set { SearchDataStructureParameter.Value.Value = value; }
|
---|
60 | }
|
---|
61 |
|
---|
62 | public IFixedValueParameter<ReadOnlyCheckedItemCollection<IGrammarEnumerationAnalyzer>> AnalyzersParameter {
|
---|
63 | get { return (IFixedValueParameter<ReadOnlyCheckedItemCollection<IGrammarEnumerationAnalyzer>>)Parameters[AnalyzersParameterName]; }
|
---|
64 | }
|
---|
65 |
|
---|
66 | public ICheckedItemCollection<IGrammarEnumerationAnalyzer> Analyzers {
|
---|
67 | get { return AnalyzersParameter.Value; }
|
---|
68 | }
|
---|
69 |
|
---|
70 | public SymbolString BestTrainingSentence { get; set; } // Currently set in RSquaredEvaluator: quite hacky, but makes testing much easier for now...
|
---|
71 | #endregion
|
---|
72 |
|
---|
73 | public Dictionary<int, int> DistinctSentencesLength { get; private set; } // Semantically distinct sentences and their length in a run.
|
---|
74 | public HashSet<int> ArchivedPhrases { get; private set; }
|
---|
75 | internal SearchDataStore OpenPhrases { get; private set; } // Stack/Queue/etc. for fetching the next node in the search tree.
|
---|
76 |
|
---|
77 | #region execution stats
|
---|
78 | public int AllGeneratedSentencesCount { get; private set; }
|
---|
79 |
|
---|
80 | public int OverwrittenSentencesCount { get; private set; } // It is not guaranteed that shorter solutions are found first.
|
---|
81 | // When longer solutions are overwritten with shorter ones,
|
---|
82 | // this counter is increased.
|
---|
83 | public int PhraseExpansionCount { get; private set; } // Number, how many times a nonterminal symbol is replaced with a production rule.
|
---|
84 | #endregion
|
---|
85 |
|
---|
86 | public Grammar Grammar { get; private set; }
|
---|
87 |
|
---|
88 |
|
---|
89 | #region ctors
|
---|
90 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
91 | return new GrammarEnumerationAlgorithm(this, cloner);
|
---|
92 | }
|
---|
93 |
|
---|
94 | public GrammarEnumerationAlgorithm() {
|
---|
95 | Problem = new RegressionProblem() {
|
---|
96 | ProblemData = new HeuristicLab.Problems.Instances.DataAnalysis.NguyenFunctionNine(seed: 1234).GenerateRegressionData()
|
---|
97 | };
|
---|
98 |
|
---|
99 | Parameters.Add(new ValueParameter<IntValue>(MaxTreeSizeParameterName, "The number of clusters.", new IntValue(6)));
|
---|
100 | Parameters.Add(new ValueParameter<IntValue>(GuiUpdateIntervalParameterName, "Number of generated sentences, until GUI is refreshed.", new IntValue(1000)));
|
---|
101 | Parameters.Add(new ValueParameter<EnumValue<StorageType>>(SearchDataStructureParameterName, new EnumValue<StorageType>(StorageType.Stack)));
|
---|
102 |
|
---|
103 | var availableAnalyzers = new IGrammarEnumerationAnalyzer[] {
|
---|
104 | new SearchGraphVisualizer(),
|
---|
105 | new SentenceLogger(),
|
---|
106 | new RSquaredEvaluator()
|
---|
107 | };
|
---|
108 | Parameters.Add(new FixedValueParameter<ReadOnlyCheckedItemCollection<IGrammarEnumerationAnalyzer>>(
|
---|
109 | AnalyzersParameterName,
|
---|
110 | new CheckedItemCollection<IGrammarEnumerationAnalyzer>(availableAnalyzers).AsReadOnly()));
|
---|
111 |
|
---|
112 | foreach (var analyzer in Analyzers) {
|
---|
113 | Analyzers.SetItemCheckedState(analyzer, false);
|
---|
114 | }
|
---|
115 | Analyzers.CheckedItemsChanged += AnalyzersOnCheckedItemsChanged;
|
---|
116 | Analyzers.SetItemCheckedState(Analyzers.First(analyzer => analyzer is RSquaredEvaluator), true);
|
---|
117 | }
|
---|
118 |
|
---|
119 | public GrammarEnumerationAlgorithm(GrammarEnumerationAlgorithm original, Cloner cloner) : base(original, cloner) { }
|
---|
120 | #endregion
|
---|
121 |
|
---|
122 | protected override void Run(CancellationToken cancellationToken) {
|
---|
123 | #region init
|
---|
124 | InitResults();
|
---|
125 |
|
---|
126 | ArchivedPhrases = new HashSet<int>();
|
---|
127 |
|
---|
128 | DistinctSentencesLength = new Dictionary<int, int>();
|
---|
129 | AllGeneratedSentencesCount = 0;
|
---|
130 | OverwrittenSentencesCount = 0;
|
---|
131 | PhraseExpansionCount = 0;
|
---|
132 |
|
---|
133 | Grammar = new Grammar(Problem.ProblemData.AllowedInputVariables.ToArray());
|
---|
134 |
|
---|
135 | OpenPhrases = new SearchDataStore(SearchDataStructure); // Select search strategy
|
---|
136 | var phrase0 = new SymbolString(new[] { Grammar.StartSymbol });
|
---|
137 | var phrase0Hash = Grammar.Hasher.CalcHashCode(phrase0);
|
---|
138 | #endregion
|
---|
139 |
|
---|
140 | OpenPhrases.Store(phrase0Hash, phrase0);
|
---|
141 | while (OpenPhrases.Count > 0) {
|
---|
142 | if (cancellationToken.IsCancellationRequested) break;
|
---|
143 |
|
---|
144 | StoredSymbolString fetchedPhrase = OpenPhrases.GetNext();
|
---|
145 | SymbolString currPhrase = fetchedPhrase.SymbolString;
|
---|
146 |
|
---|
147 | OnPhraseFetched(fetchedPhrase.Hash, currPhrase);
|
---|
148 |
|
---|
149 | ArchivedPhrases.Add(fetchedPhrase.Hash);
|
---|
150 |
|
---|
151 | // expand next nonterminal symbols
|
---|
152 | int nonterminalSymbolIndex = currPhrase.NextNonterminalIndex();
|
---|
153 | NonterminalSymbol expandedSymbol = (NonterminalSymbol)currPhrase[nonterminalSymbolIndex];
|
---|
154 | var appliedProductions = Grammar.Productions[expandedSymbol];
|
---|
155 |
|
---|
156 | for (int i = 0; i < appliedProductions.Count; i++) {
|
---|
157 | PhraseExpansionCount++;
|
---|
158 |
|
---|
159 | SymbolString newPhrase = currPhrase.DerivePhrase(nonterminalSymbolIndex, appliedProductions[i]);
|
---|
160 |
|
---|
161 | if (newPhrase.Count() <= MaxTreeSize) {
|
---|
162 | var phraseHash = Grammar.Hasher.CalcHashCode(newPhrase);
|
---|
163 |
|
---|
164 | OnPhraseDerived(fetchedPhrase.Hash, fetchedPhrase.SymbolString, phraseHash, newPhrase, expandedSymbol, appliedProductions[i]);
|
---|
165 |
|
---|
166 | if (newPhrase.IsSentence()) {
|
---|
167 | AllGeneratedSentencesCount++;
|
---|
168 |
|
---|
169 | OnSentenceGenerated(fetchedPhrase.Hash, fetchedPhrase.SymbolString, phraseHash, newPhrase, expandedSymbol, appliedProductions[i]);
|
---|
170 |
|
---|
171 | if (!DistinctSentencesLength.ContainsKey(phraseHash) || DistinctSentencesLength[phraseHash] > newPhrase.Count()) {
|
---|
172 | if (DistinctSentencesLength.ContainsKey(phraseHash)) OverwrittenSentencesCount++; // for analysis only
|
---|
173 |
|
---|
174 | DistinctSentencesLength[phraseHash] = newPhrase.Count();
|
---|
175 | OnDistinctSentenceGenerated(fetchedPhrase.Hash, fetchedPhrase.SymbolString, phraseHash, newPhrase, expandedSymbol, appliedProductions[i]);
|
---|
176 | }
|
---|
177 | UpdateView();
|
---|
178 |
|
---|
179 | } else if (!OpenPhrases.Contains(phraseHash) && !ArchivedPhrases.Contains(phraseHash)) {
|
---|
180 | OpenPhrases.Store(phraseHash, newPhrase);
|
---|
181 | }
|
---|
182 | }
|
---|
183 | }
|
---|
184 | }
|
---|
185 | UpdateView(force: true);
|
---|
186 | }
|
---|
187 |
|
---|
188 | #region Visualization in HL
|
---|
189 | // Initialize entries in result set.
|
---|
190 | private void InitResults() {
|
---|
191 | Results.Add(new Result(GeneratedPhrasesName, new IntValue(0)));
|
---|
192 | Results.Add(new Result(SearchStructureSizeName, new IntValue(0)));
|
---|
193 | Results.Add(new Result(GeneratedSentencesName, new IntValue(0)));
|
---|
194 | Results.Add(new Result(DistinctSentencesName, new IntValue(0)));
|
---|
195 | Results.Add(new Result(PhraseExpansionsName, new IntValue(0)));
|
---|
196 | Results.Add(new Result(OverwrittenSentencesName, new IntValue(0)));
|
---|
197 | Results.Add(new Result(AverageSentenceLengthName, new DoubleValue(1.0)));
|
---|
198 | Results.Add(new Result(ExpansionsPerSecondName, "In Thousand expansions per second", new IntValue(0)));
|
---|
199 | }
|
---|
200 |
|
---|
201 | // Update the view for intermediate results in an algorithm run.
|
---|
202 | private int updates;
|
---|
203 | private void UpdateView(bool force = false) {
|
---|
204 | updates++;
|
---|
205 |
|
---|
206 | if (force || updates % GuiUpdateInterval == 1) {
|
---|
207 | ((IntValue)Results[GeneratedPhrasesName].Value).Value = ArchivedPhrases.Count;
|
---|
208 | ((IntValue)Results[SearchStructureSizeName].Value).Value = OpenPhrases.Count;
|
---|
209 | ((IntValue)Results[GeneratedSentencesName].Value).Value = AllGeneratedSentencesCount;
|
---|
210 | ((IntValue)Results[DistinctSentencesName].Value).Value = DistinctSentencesLength.Count;
|
---|
211 | ((IntValue)Results[PhraseExpansionsName].Value).Value = PhraseExpansionCount;
|
---|
212 | ((DoubleValue)Results[AverageSentenceLengthName].Value).Value = DistinctSentencesLength.Select(pair => pair.Value).Average();
|
---|
213 | ((IntValue)Results[OverwrittenSentencesName].Value).Value = OverwrittenSentencesCount;
|
---|
214 | ((IntValue)Results[ExpansionsPerSecondName].Value).Value = (int)((PhraseExpansionCount /
|
---|
215 | ExecutionTime.TotalSeconds) / 1000.0);
|
---|
216 | }
|
---|
217 | }
|
---|
218 | #endregion
|
---|
219 |
|
---|
220 | #region events
|
---|
221 | private void AnalyzersOnCheckedItemsChanged(object sender, CollectionItemsChangedEventArgs<IGrammarEnumerationAnalyzer> collectionItemsChangedEventArgs) {
|
---|
222 | foreach (IGrammarEnumerationAnalyzer grammarEnumerationAnalyzer in collectionItemsChangedEventArgs.Items) {
|
---|
223 | if (Analyzers.ItemChecked(grammarEnumerationAnalyzer)) {
|
---|
224 | grammarEnumerationAnalyzer.Register(this);
|
---|
225 | } else {
|
---|
226 | grammarEnumerationAnalyzer.Deregister(this);
|
---|
227 | }
|
---|
228 | }
|
---|
229 | }
|
---|
230 |
|
---|
231 | public event EventHandler<PhraseEventArgs> PhraseFetched;
|
---|
232 | private void OnPhraseFetched(int hash, SymbolString symbolString) {
|
---|
233 | if (PhraseFetched != null) {
|
---|
234 | PhraseFetched(this, new PhraseEventArgs(hash, symbolString));
|
---|
235 | }
|
---|
236 | }
|
---|
237 |
|
---|
238 | public event EventHandler<PhraseAddedEventArgs> PhraseDerived;
|
---|
239 | private void OnPhraseDerived(int parentHash, SymbolString parentSymbolString, int addedHash, SymbolString addedSymbolString, Symbol expandedSymbol, Production expandedProduction) {
|
---|
240 | if (PhraseDerived != null) {
|
---|
241 | PhraseDerived(this, new PhraseAddedEventArgs(parentHash, parentSymbolString, addedHash, addedSymbolString, expandedSymbol, expandedProduction));
|
---|
242 | }
|
---|
243 | }
|
---|
244 |
|
---|
245 | public event EventHandler<PhraseAddedEventArgs> SentenceGenerated;
|
---|
246 | private void OnSentenceGenerated(int parentHash, SymbolString parentSymbolString, int addedHash, SymbolString addedSymbolString, Symbol expandedSymbol, Production expandedProduction) {
|
---|
247 | if (SentenceGenerated != null) {
|
---|
248 | SentenceGenerated(this, new PhraseAddedEventArgs(parentHash, parentSymbolString, addedHash, addedSymbolString, expandedSymbol, expandedProduction));
|
---|
249 | }
|
---|
250 | }
|
---|
251 |
|
---|
252 | public event EventHandler<PhraseAddedEventArgs> DistinctSentenceGenerated;
|
---|
253 | private void OnDistinctSentenceGenerated(int parentHash, SymbolString parentSymbolString, int addedHash, SymbolString addedSymbolString, Symbol expandedSymbol, Production expandedProduction) {
|
---|
254 | if (DistinctSentenceGenerated != null) {
|
---|
255 | DistinctSentenceGenerated(this, new PhraseAddedEventArgs(parentHash, parentSymbolString, addedHash, addedSymbolString, expandedSymbol, expandedProduction));
|
---|
256 | }
|
---|
257 | }
|
---|
258 |
|
---|
259 | #endregion
|
---|
260 |
|
---|
261 | }
|
---|
262 |
|
---|
263 | #region events for analysis
|
---|
264 |
|
---|
265 | public class PhraseEventArgs : EventArgs {
|
---|
266 | public int Hash { get; }
|
---|
267 |
|
---|
268 | public SymbolString Phrase { get; }
|
---|
269 |
|
---|
270 | public PhraseEventArgs(int hash, SymbolString phrase) {
|
---|
271 | Hash = hash;
|
---|
272 | Phrase = phrase;
|
---|
273 | }
|
---|
274 | }
|
---|
275 |
|
---|
276 | public class PhraseAddedEventArgs : EventArgs {
|
---|
277 | public int ParentHash { get; }
|
---|
278 | public int NewHash { get; }
|
---|
279 |
|
---|
280 | public SymbolString ParentPhrase { get; }
|
---|
281 | public SymbolString NewPhrase { get; }
|
---|
282 |
|
---|
283 | public Symbol ExpandedSymbol { get; }
|
---|
284 |
|
---|
285 | public Production ExpandedProduction { get; }
|
---|
286 |
|
---|
287 | public PhraseAddedEventArgs(int parentHash, SymbolString parentPhrase, int newHash, SymbolString newPhrase, Symbol expandedSymbol, Production expandedProduction) {
|
---|
288 | ParentHash = parentHash;
|
---|
289 | ParentPhrase = parentPhrase;
|
---|
290 | NewHash = newHash;
|
---|
291 | NewPhrase = newPhrase;
|
---|
292 | ExpandedSymbol = expandedSymbol;
|
---|
293 | ExpandedProduction = expandedProduction;
|
---|
294 | }
|
---|
295 | }
|
---|
296 |
|
---|
297 | #endregion
|
---|
298 | } |
---|