-
Notifications
You must be signed in to change notification settings - Fork 1
/
InferenceResource.cs
833 lines (685 loc) · 28.9 KB
/
InferenceResource.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
using System.IO;
using Grammophone.GenericContentModel;
using Grammophone.LanguageModel.Provision;
using Grammophone.LanguageModel.Grammar;
using Grammophone.LanguageModel.Grammar.SerializationSurrogates;
namespace Grammophone.EnnounInference
{
/// <summary>
/// A complete set of inference services for a language.
/// </summary>
[Serializable]
public class InferenceResource : IKeyedElement<LanguageProvider>
{
#region Auxilliary classes
/// <summary>
/// Training options for the whole <see cref="InferenceResource"/>.
/// Used in <see cref="Train"/> method.
/// </summary>
[Serializable]
public class TrainingOptions
{
#region Private fields
private Words.WordClassifierTrainingOptions wordClassifierTrainingOptions;
private Sentences.SentenceClassifierTrainingOptions sentenceClassifierTrainingOptions;
#endregion
#region Construction
/// <summary>
/// Create.
/// </summary>
public TrainingOptions()
{
wordClassifierTrainingOptions = new Words.WordClassifierTrainingOptions();
sentenceClassifierTrainingOptions = new Sentences.SentenceClassifierTrainingOptions();
}
#endregion
#region Public properties
/// <summary>
/// Training options for <see cref="InferenceResource.WordClassifierBank"/>.
/// </summary>
public Words.WordClassifierTrainingOptions WordClassifierTrainingOptions
{
get
{
return wordClassifierTrainingOptions;
}
set
{
if (value == null) throw new ArgumentNullException("value");
wordClassifierTrainingOptions = value;
}
}
/// <summary>
/// Training options for <see cref="InferenceResource.SentenceClassifier"/>.
/// </summary>
public Sentences.SentenceClassifierTrainingOptions SentenceClassifierTrainingOptions
{
get
{
return sentenceClassifierTrainingOptions;
}
set
{
if (value == null) throw new ArgumentNullException("value");
sentenceClassifierTrainingOptions = value;
}
}
#endregion
}
/// <summary>
/// Combinations of options for searching optimum training using cross-validation.
/// Used in <see cref="OptimalTrain"/> method.
/// </summary>
public class TrainingOptionsGrid
{
#region Private fields
private IEnumerable<Words.WordClassifierTrainingOptions> wordClassifierTrainingOptionsGrid;
private IEnumerable<Sentences.SentenceClassifierTrainingOptions> sentenceClassifierTrainingOptionsGrid;
#endregion
#region Construction
/// <summary>
/// Create.
/// </summary>
public TrainingOptionsGrid()
{
this.wordClassifierTrainingOptionsGrid = GetDefaultWordClassifierTrainingOptionsGrid();
this.sentenceClassifierTrainingOptionsGrid = GetDefaultSentenceClassifierTrainingOptions();
}
#endregion
#region Public properties
/// <summary>
/// Combinations of training options for searching he optimal <see cref="Words.WordClassifierBank"/>.
/// Must contain at least one combintation.
/// By default, the property holds a single combination consisting of the default <see cref="Words.WordClassifierTrainingOptions"/>.
/// </summary>
public IEnumerable<Words.WordClassifierTrainingOptions> WordClassifierTrainingOptionsGrid
{
get
{
return wordClassifierTrainingOptionsGrid;
}
set
{
if (value == null) throw new ArgumentNullException("value");
if (value.FirstOrDefault() == null) throw new ArgumentException("The enumeration must hold at least one element.");
wordClassifierTrainingOptionsGrid = value;
}
}
/// <summary>
/// Combinations of training options for searching he optimal <see cref="Sentences.SentenceClassifier"/>.
/// Must contain at least one combintation.
/// By default, the property holds a single combination consisting of the default <see cref="Sentences.SentenceClassifierTrainingOptions"/>.
/// </summary>
public IEnumerable<Sentences.SentenceClassifierTrainingOptions> SentenceClassifierTrainingOptionsGrid
{
get
{
return sentenceClassifierTrainingOptionsGrid;
}
set
{
if (value == null) throw new ArgumentNullException("value");
if (value.FirstOrDefault() == null) throw new ArgumentException("The enumeration must hold at least one element.");
sentenceClassifierTrainingOptionsGrid = value;
}
}
#endregion
#region Private methods
private static IEnumerable<Words.WordClassifierTrainingOptions> GetDefaultWordClassifierTrainingOptionsGrid()
{
yield return new Words.WordClassifierTrainingOptions();
}
private static IEnumerable<Sentences.SentenceClassifierTrainingOptions> GetDefaultSentenceClassifierTrainingOptions()
{
yield return new Sentences.SentenceClassifierTrainingOptions();
}
#endregion
}
/// <summary>
/// A serialization binder which handles renamed assemblies and types.
/// </summary>
internal class RenamingSerializationBinder : Serialization.DefaultSerializationBinder
{
public Tuple<string, string>[] AssemblyRenames { get; set; }
public Tuple<string, string>[] TypeRenames { get; set; }
public override Type BindToType(string assemblyName, string typeName)
{
if (this.AssemblyRenames != null)
{
for (int i = 0; i < this.AssemblyRenames.Length; i++)
{
var tuple = this.AssemblyRenames[i];
assemblyName = assemblyName.Replace(tuple.Item1, tuple.Item2);
}
}
if (this.TypeRenames != null)
{
for (int i = 0; i < this.TypeRenames.Length; i++)
{
var tuple = this.TypeRenames[i];
typeName = typeName.Replace(tuple.Item1, tuple.Item2);
}
}
return base.BindToType(assemblyName, typeName);
}
}
#endregion
#region Private fields
[NonSerialized]
private LanguageProvider languageProvider;
#endregion
#region Construction
/// <summary>
/// Create.
/// </summary>
/// <param name="languageProvider">The provider of the language associated with the inference services.</param>
public InferenceResource(LanguageProvider languageProvider)
{
if (languageProvider == null) throw new ArgumentNullException("languageProvider");
this.languageProvider = languageProvider;
}
#endregion
#region Public properties
/// <summary>
/// The language provider associated with this inference resource.
/// </summary>
public LanguageProvider LanguageProvider
{
get
{
return languageProvider;
}
internal set
{
languageProvider = value;
}
}
/// <summary>
/// The word classifier bank accompanying this inference resource.
/// </summary>
public Words.WordClassifierBank WordClassifierBank { get; internal set; }
/// <summary>
/// The dictionary of word forms accompanying this inference resource.
/// </summary>
public Words.WordFormsDictionary WordFormsDictionary { get; private set; }
/// <summary>
/// The sentences classifier accompanying this inference resource.
/// </summary>
public Sentences.SentenceClassifier SentenceClassifier { get; private set; }
#endregion
#region Public methods
#region Training
/// <summary>
/// Train the whole inference resource with the available training sources
/// for this <see cref="InferenceResource.LanguageProvider"/>. This includes training
/// the <see cref="WordClassifierBank"/>, the <see cref="WordFormsDictionary"/>
/// and the <see cref="SentenceClassifier"/>.
/// </summary>
/// <param name="trainingOptions">The training options for all systems.</param>
/// <param name="wordDropout">
/// Omits from neural training the word samples with frequency less than the specified amount
/// and puts them in a dictionary.
/// </param>
/// <param name="wordDecimation">The interval of negative samples to omit from training set for each class.</param>
/// <param name="tagBiGramsDropout">
/// Excludes tag bi-grams with frequency below the specified amount.
/// </param>
/// <param name="sentencesStride">The step size of picking samples within the sentences training set.</param>
/// <param name="degreeOfParallelism">
/// The number of parallel tasks to employ for tagged words training.
/// If zero, the number of tasks is the number of the available processor cores.
/// </param>
/// <remarks>
/// This is equivalent to calling consecutively <see cref="TrainWordClassifierBank"/>,
/// <see cref="BuildWordFormsDictionary"/>, <see cref="TrainSentences"/>.
/// </remarks>
public void Train(
TrainingOptions trainingOptions,
double wordDropout,
int wordDecimation,
double tagBiGramsDropout,
int sentencesStride,
int degreeOfParallelism = 0)
{
if (trainingOptions == null) throw new ArgumentNullException("trainingOptions");
if (wordDropout < 0.0) throw new ArgumentException("The dropout must not be negative.", "dropout");
if (wordDecimation < 1) throw new ArgumentException("wordDecimation must be at least 1.", "wordDecimation");
if (degreeOfParallelism < 0) throw new ArgumentException("The degree of parallelism must not be negative.", "degreeOfParallelism");
var taggedWordFormTrainer = new Words.TaggedWordFormTrainer(this);
this.WordClassifierBank =
taggedWordFormTrainer.Train(trainingOptions.WordClassifierTrainingOptions, wordDropout, wordDecimation, degreeOfParallelism);
if (trainingOptions.SentenceClassifierTrainingOptions.AnalogiesScoreOptions != null)
{
var wordFormsDictionaryBuilder = new Words.WordFormsDictionaryBuilder(this);
this.WordFormsDictionary = wordFormsDictionaryBuilder.Build();
}
var taggedSentencesTrainer = new Sentences.TaggedSentenceTrainer(this);
this.SentenceClassifier =
taggedSentencesTrainer.Train(trainingOptions.SentenceClassifierTrainingOptions, tagBiGramsDropout, sentencesStride, degreeOfParallelism);
}
/// <summary>
/// Train the <see cref="WordClassifierBank"/> of this resource with the available training sources
/// for this <see cref="InferenceResource.LanguageProvider"/>.
/// </summary>
/// <param name="trainingOptions">The training options <see cref="WordClassifierBank"/>.</param>
/// <param name="wordDropout">
/// Omits from neural training the word samples with frequency less than the specified amount
/// and puts them in a dictionary.
/// </param>
/// <param name="wordDecimation">The interval of negative samples to omit from training set for each class.</param>
/// <param name="degreeOfParallelism">
/// The number of parallel tasks to employ for tagged words training.
/// If zero, the number of tasks is the number of the available processor cores.
/// </param>
public void TrainWordClassifierBank(
Words.WordClassifierTrainingOptions trainingOptions,
double wordDropout,
int wordDecimation,
int degreeOfParallelism = 0)
{
if (trainingOptions == null) throw new ArgumentNullException("trainingOptions");
if (wordDropout < 0.0) throw new ArgumentException("The dropout must not be negative.", "dropout");
if (wordDecimation < 1) throw new ArgumentException("wordDecimation must be at least 1.", "wordDecimation");
if (degreeOfParallelism < 0) throw new ArgumentException("The degree of parallelism must not be negative.", "degreeOfParallelism");
var taggedWordFormTrainer = new Words.TaggedWordFormTrainer(this);
this.WordClassifierBank = taggedWordFormTrainer.Train(trainingOptions, wordDropout, wordDecimation, degreeOfParallelism);
}
/// <summary>
/// Build the <see cref="WordFormsDictionary"/> of this resource with the available sources
/// for this <see cref="InferenceResource.LanguageProvider"/>.
/// </summary>
public void BuildWordFormsDictionary()
{
var wordFormsDictionaryBuilder = new Words.WordFormsDictionaryBuilder(this);
this.WordFormsDictionary = wordFormsDictionaryBuilder.Build();
}
/// <summary>
/// Train the <see cref="WordClassifierBank"/> of this resource with the available training sources
/// for this <see cref="InferenceResource.LanguageProvider"/>.
/// The <see cref="WordClassifierBank"/> and <see cref="WordFormsDictionary"/> must have been previously loaded or trained.
/// </summary>
/// <param name="trainingOptions">The training options <see cref="SentenceClassifier"/>.</param>
/// <param name="tagBiGramsDropout">
/// Excludes tag bi-grams with frequency below the specified amount.
/// </param>
/// <param name="sentencesStride">The step size of picking samples within the sentences training set.</param>
/// <param name="degreeOfParallelism">
/// The number of parallel tasks to employ for processing.
/// If zero, the number of tasks is the number of the available processor cores.
/// </param>
public void TrainSentences(
Sentences.SentenceClassifierTrainingOptions trainingOptions,
double tagBiGramsDropout,
int sentencesStride,
int degreeOfParallelism
)
{
if (trainingOptions == null) throw new ArgumentNullException("trainingOptions");
if (this.WordClassifierBank == null)
{
throw new InferenceException("The WordClassifierBank property must have previously been trained or loaded.");
}
if (trainingOptions.AnalogiesScoreOptions != null)
{
throw new InferenceException("The WordFormsDictionary property must have previously been trained or loaded when analogies score options are present.");
}
var taggedSentenceTrainer = new Sentences.TaggedSentenceTrainer(this);
this.SentenceClassifier = taggedSentenceTrainer.Train(trainingOptions, tagBiGramsDropout, sentencesStride, degreeOfParallelism);
}
/// <summary>
/// Train the whole inference resource optimally using cross-validation with the available training sources
/// for this <see cref="InferenceResource.LanguageProvider"/>. This includes training
/// the <see cref="WordClassifierBank"/>, the <see cref="WordFormsDictionary"/>
/// and the <see cref="SentenceClassifier"/>.
/// </summary>
/// <param name="trainingOptionsGrid">The grid of training options combinations.</param>
/// <param name="foldCount">The fold count used in K-fold cross-validation.</param>
/// <param name="wordDropout">
/// Omits from neural training the word samples with frequency less than the specified amount
/// and puts them in a dictionary.
/// </param>
/// <param name="wordDecimation">The interval of negative samples to omit from training set for each class.</param>
/// <param name="tagBiGramsDropout">
/// Excludes tag bi-grams with frequency below the specified amount.
/// </param>
/// <param name="sentencesStride">The step size of picking samples within the sentences training set.</param>
/// <param name="degreeOfParallelism">
/// The number of parallel tasks to employ for tagged words training.
/// If zero, the number of tasks is the number of the available processor cores.
/// </param>
/// <remarks>
/// Currently cross-validation for training <see cref="SentenceClassifier"/> is not supported due to computational resources constraints,
/// thus the <see cref="TrainingOptionsGrid.SentenceClassifierTrainingOptionsGrid"/> is expected to contain a single item.
/// This method is equivalent to calling consecutively <see cref="OptimalTrainWordClassifierBank"/>,
/// <see cref="BuildWordFormsDictionary"/>, and invoking <see cref="TrainSentences"/> with the one and only
/// item in <see cref="TrainingOptionsGrid.SentenceClassifierTrainingOptionsGrid"/>.
/// </remarks>
public void OptimalTrain(
TrainingOptionsGrid trainingOptionsGrid,
int foldCount,
double wordDropout,
int wordDecimation,
double tagBiGramsDropout,
int sentencesStride,
int degreeOfParallelism = 0)
{
if (trainingOptionsGrid == null) throw new ArgumentNullException("trainingOptionsGrid");
if (trainingOptionsGrid.SentenceClassifierTrainingOptionsGrid.Count() != 1)
{
throw new ArgumentException("Currently only a single combination is supported for sentence training options.", "trainingOptionsGrid");
}
if (wordDropout < 0.0) throw new ArgumentException("The dropout must not be negative.", "dropout");
if (wordDecimation < 1) throw new ArgumentException("wordDecimation must be at least 1.", "wordDecimation");
if (degreeOfParallelism < 0) throw new ArgumentException("The degree of parallelism must not be negative.", "degreeOfParallelism");
var sentenceTrainingOptions = trainingOptionsGrid.SentenceClassifierTrainingOptionsGrid.First();
var taggedWordFormTrainer = new Words.TaggedWordFormTrainer(this);
this.WordClassifierBank =
taggedWordFormTrainer.OptimalTrain(trainingOptionsGrid.WordClassifierTrainingOptionsGrid, foldCount, wordDropout, wordDecimation, degreeOfParallelism);
if (sentenceTrainingOptions.AnalogiesScoreOptions != null)
{
var wordFormsDictionaryBuilder = new Words.WordFormsDictionaryBuilder(this);
this.WordFormsDictionary = wordFormsDictionaryBuilder.Build();
}
var taggedSentencesTrainer = new Sentences.TaggedSentenceTrainer(this);
this.SentenceClassifier = taggedSentencesTrainer.Train(sentenceTrainingOptions, tagBiGramsDropout, sentencesStride, degreeOfParallelism);
}
/// <summary>
/// Train the <see cref="WordClassifierBank"/>of this inference resource optimally using cross-validation with the available training sources
/// for this <see cref="InferenceResource.LanguageProvider"/>.
/// </summary>
/// <param name="trainingOptionsGrid">The grid of training options combinations for <see cref="WordClassifierBank"/>.</param>
/// <param name="foldCount">The fold count used in K-fold cross-validation.</param>
/// <param name="wordDropout">
/// Omits from neural training the word samples with frequency less than the specified amount
/// and puts them in a dictionary.
/// </param>
/// <param name="wordDecimation">The interval of negative samples to omit from training set for each class.</param>
/// <param name="degreeOfParallelism">
/// The number of parallel tasks to employ for tagged words training.
/// If zero, the number of tasks is the number of the available processor cores.
/// </param>
public void OptimalTrainWordClassifierBank(
IEnumerable<Words.WordClassifierTrainingOptions> trainingOptionsGrid,
int foldCount,
double wordDropout,
int wordDecimation,
int degreeOfParallelism = 0)
{
if (trainingOptionsGrid == null) throw new ArgumentNullException("trainingOptionsGrid");
if (wordDropout < 0.0) throw new ArgumentException("The dropout must not be negative.", "dropout");
if (wordDecimation < 1) throw new ArgumentException("wordDecimation must be at least 1.", "wordDecimation");
if (degreeOfParallelism < 0) throw new ArgumentException("The degree of parallelism must not be negative.", "degreeOfParallelism");
var taggedWordFormTrainer = new Words.TaggedWordFormTrainer(this);
this.WordClassifierBank = taggedWordFormTrainer.OptimalTrain(trainingOptionsGrid, foldCount, wordDropout, wordDecimation, degreeOfParallelism);
}
#endregion
#region Load / Save
/// <summary>
/// Get the formatter for serializing an <see cref="InferenceResource"/>.
/// During deserialization, the <see cref="TagType"/>, <see cref="Inflection"/> and <see cref="InflectionType"/>
/// copies will be replaced with references provided by the <see cref="GrammarModel"/>
/// of the given <paramref name="languageProvider"/>.
/// </summary>
/// <param name="languageProvider">The language provider.</param>
/// <returns>Returns a formatter for serialization and deserialization.</returns>
public static IFormatter GetFormatter(LanguageProvider languageProvider)
{
if (languageProvider == null) throw new ArgumentNullException("languageProvider");
var formatter = new Grammophone.Serialization.FastBinaryFormatter();
if (Configuration.InferenceEnvironment.Setup.EnableReadingOldNamespaces)
{
var serializationBinder = new RenamingSerializationBinder
{
AssemblyRenames = new Tuple<string, string>[]
{
new Tuple<string, string>("Gramma.Inference", "Grammophone.EnnounInference"),
new Tuple<string, string>("Gramma.", "Grammophone.")
},
TypeRenames = new Tuple<string, string>[]
{
new Tuple<string, string>("Gramma.Inference", "Grammophone.EnnounInference"),
new Tuple<string, string>("Gramma.", "Grammophone.")
}
};
formatter.Binder = serializationBinder;
}
var surrogateSelector = new SurrogateSelector();
var streamingContext = new StreamingContext(StreamingContextStates.Persistence, languageProvider);
surrogateSelector.AddSurrogate(
typeof(Tag),
streamingContext,
new TagSerializationSurrogate());
surrogateSelector.AddSurrogate(
typeof(GrammarModel),
streamingContext,
new GrammarModelSerializationSurrogate());
surrogateSelector.AddSurrogate(
typeof(InflectionType),
streamingContext,
new InflectionTypeSerializationSurrogate());
surrogateSelector.AddSurrogate(
typeof(TagType),
streamingContext,
new TagTypeSerializationSurrogate());
surrogateSelector.AddSurrogate(
typeof(Inflection),
streamingContext,
new InflectionSerializationSurrogate());
formatter.SurrogateSelector = surrogateSelector;
formatter.Context = streamingContext;
return formatter;
}
/// <summary>
/// Save all the inference resource and all its contents to a stream.
/// </summary>
public void Save(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = GetFormatter(this.LanguageProvider);
formatter.Serialize(stream, this);
}
/// <summary>
/// Save all the inference resource and all its contents to a filename.
/// </summary>
/// <param name="filename">
/// The name of the saved file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void Save(String filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenWriteStream(filename))
{
Save(stream);
}
}
/// <summary>
/// Load the <see cref="InferenceResource.WordClassifierBank"/> property from a stream.
/// </summary>
public void LoadWordClassifierBank(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = GetFormatter();
this.WordClassifierBank = (Words.WordClassifierBank)formatter.Deserialize(stream);
this.WordClassifierBank.InferenceResource = this;
}
/// <summary>
/// Load the <see cref="InferenceResource.WordClassifierBank"/> property from a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void LoadWordClassifierBank(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenReadStream(filename))
{
LoadWordClassifierBank(stream);
}
}
/// <summary>
/// Save the <see cref="InferenceResource.WordClassifierBank"/> property to a stream.
/// </summary>
public void SaveWordClassifierBank(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = this.GetFormatter();
formatter.Serialize(stream, this.WordClassifierBank);
}
/// <summary>
/// Save the <see cref="InferenceResource.WordClassifierBank"/> property to a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void SaveWordClassifierBank(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenWriteStream(filename))
{
SaveWordClassifierBank(stream);
}
}
/// <summary>
/// Load the <see cref="InferenceResource.WordFormsDictionary"/> property from a stream.
/// </summary>
public void LoadWordFormsDictionary(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = GetFormatter();
this.WordFormsDictionary = (Words.WordFormsDictionary)formatter.Deserialize(stream);
this.WordFormsDictionary.InferenceResource = this;
}
/// <summary>
/// Load the <see cref="InferenceResource.WordFormsDictionary"/> property from a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void LoadWordFormsDictionary(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenReadStream(filename))
{
LoadWordFormsDictionary(stream);
}
}
/// <summary>
/// Save the <see cref="InferenceResource.WordFormsDictionary"/> property to a stream.
/// </summary>
public void SaveWordFormsDictionary(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = GetFormatter();
formatter.Serialize(stream, this.WordFormsDictionary);
}
/// <summary>
/// Save the <see cref="InferenceResource.WordFormsDictionary"/> property to a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void SaveWordFormsDictionary(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenWriteStream(filename))
{
SaveWordFormsDictionary(stream);
}
}
/// <summary>
/// Load the <see cref="InferenceResource.SentenceClassifier"/> property from a stream.
/// </summary>
/// <remarks>
/// The <see cref="InferenceResource.WordClassifierBank"/> and <see cref="InferenceResource.WordFormsDictionary"/> properties
/// should have been loaded or trained first.
/// </remarks>
public void LoadSentenceClassifier(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
if (this.WordClassifierBank == null)
throw new InferenceException("The WordClassifierBank property should have been previously trained or loaded.");
var formatter = GetFormatter();
this.SentenceClassifier = (Sentences.SentenceClassifier)formatter.Deserialize(stream);
this.SentenceClassifier.InferenceResource = this;
}
/// <summary>
/// Load the <see cref="InferenceResource.SentenceClassifier"/> property from a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void LoadSentenceClassifier(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenReadStream(filename))
{
LoadSentenceClassifier(stream);
}
}
/// <summary>
/// Save the <see cref="InferenceResource.SentenceClassifier"/> property to a stream.
/// </summary>
public void SaveSentenceClassifier(Stream stream)
{
if (stream == null) throw new ArgumentNullException("stream");
var formatter = GetFormatter();
formatter.Serialize(stream, this.SentenceClassifier);
}
/// <summary>
/// Save the <see cref="InferenceResource.SentenceClassifier"/> property to a file.
/// </summary>
/// <param name="filename">
/// The name of the file,
/// optionally qualified to use a configured <see cref="DataStreaming.IStreamer"/>.
/// </param>
public void SaveSentenceClassifier(string filename)
{
if (filename == null) throw new ArgumentNullException("filename");
using (var stream = DataStreaming.Configuration.StreamingEnvironment.OpenWriteStream(filename))
{
SaveSentenceClassifier(stream);
}
}
#endregion
#endregion
#region Private methods
/// <summary>
/// Get a formatter via <see cref="GetFormatter(LanguageProvider)"/>
/// with added <see cref="InferenceResourceSerializationSurrogate"/>.
/// All <see cref="InferenceResource"/> instances are mapped to this instance.
/// </summary>
private IFormatter GetFormatter()
{
var formatter = GetFormatter(this.LanguageProvider);
var surrogateSelector = new SurrogateSelector();
surrogateSelector.AddSurrogate(typeof(InferenceResource), formatter.Context, new InferenceResourceSerializationSurrogate(this));
formatter.SurrogateSelector.ChainSelector(surrogateSelector);
return formatter;
}
[OnDeserialized]
private void OnDeserialized(StreamingContext ctx)
{
if (this.WordClassifierBank != null) this.WordClassifierBank.InferenceResource = this;
if (this.WordFormsDictionary != null) this.WordFormsDictionary.InferenceResource = this;
if (this.SentenceClassifier != null) this.SentenceClassifier.InferenceResource = this;
}
#endregion
#region IKeyedElement<LanguageProvider> Members
LanguageProvider IKeyedElement<LanguageProvider>.Key
{
get { return this.languageProvider; }
}
#endregion
}
}