public void Load(Latino.BinarySerializer binRead) { bUseFromInRules = binRead.ReadBool(); eMsdConsider = (MsdConsideration)binRead.ReadInt(); iMaxRulesPerNode = binRead.ReadInt(); bBuildFrontLemmatizer = binRead.ReadBool(); }
public void Load(Latino.BinarySerializer binRead, LemmatizerSettings lsett, LemmaRule lrRule) { //load metadata bool bThisTopObject = binRead.ReadBool(); //load value types -------------------------------------- sWord = binRead.ReadString(); sLemma = binRead.ReadString(); sSignature = binRead.ReadString(); if (binRead.ReadBool()) { sMsd = binRead.ReadString(); } else { sMsd = null; } dWeight = binRead.ReadDouble(); //load refernce types if needed ------------------------- if (bThisTopObject) { this.lsett = new LemmatizerSettings(binRead); this.lrRule = new LemmaRule(binRead, this.lsett); } else { this.lsett = lsett; this.lrRule = lrRule; } }
public void Load(Latino.BinarySerializer binRead, LemmatizerSettings lsett) { //load metadata bool bThisTopObject = binRead.ReadBool(); //load value types -------------------------------------- iId = binRead.ReadInt(); iFrom = binRead.ReadInt(); if (binRead.ReadBool()) { sFrom = binRead.ReadString(); } else { sFrom = null; } sTo = binRead.ReadString(); sSignature = binRead.ReadString(); //load refernce types if needed ------------------------- if (bThisTopObject) { this.lsett = new LemmatizerSettings(binRead); } else { this.lsett = lsett; } }
public void Load(Latino.BinarySerializer binRead) { bUseFromInRules = binRead.ReadBool(); eMsdConsider = (MsdConsideration)binRead.ReadInt(); iMaxRulesPerNode = binRead.ReadInt(); bBuildFrontLemmatizer = binRead.ReadBool(); bStoreAllFullKnownWords = binRead.ReadBool(); bUseMsdSplitTreeOptimization = binRead.ReadBool(); }
public void Load(Latino.BinarySerializer binRead, LemmatizerSettings lsett) { //load metadata bool bThisTopObject = binRead.ReadBool(); //load value types -------------------------------------- //load refernce types if needed ------------------------- if (bThisTopObject) { this.lsett = new LemmatizerSettings(binRead); } else { this.lsett = lsett; } //load list items --------------------------------------- this.Clear(); int iCount = binRead.ReadInt(); for (int iId = 0; iId < iCount; iId++) { string sKey = binRead.ReadString(); LemmaRule lrVal = new LemmaRule(binRead, this.lsett); this.Add(sKey, lrVal); } //link the default rule just Id was saved. lrDefaultRule = this[binRead.ReadString()]; }
public void Load(Latino.BinarySerializer binRead, LemmatizerSettings lsett, ExampleList elExamples, LemmaTreeNode ltnParentNode) { this.lsett = lsett; if (binRead.ReadBool()) { dictSubNodes = new Dictionary <char, LemmaTreeNode>(); int iCount = binRead.ReadInt(); for (int i = 0; i < iCount; i++) { char cKey = binRead.ReadChar(); LemmaTreeNode ltrSub = new LemmaTreeNode(binRead, this.lsett, elExamples, this); dictSubNodes.Add(cKey, ltrSub); } } else { dictSubNodes = null; } this.ltnParentNode = ltnParentNode; iSimilarity = binRead.ReadInt(); sCondition = binRead.ReadString(); bWholeWord = binRead.ReadBool(); lrBestRule = elExamples.Rules[binRead.ReadString()]; int iCountBest = binRead.ReadInt(); aBestRules = new RuleWeighted[iCountBest]; for (int i = 0; i < iCountBest; i++) { aBestRules[i] = new RuleWeighted(elExamples.Rules[binRead.ReadString()], binRead.ReadDouble()); } dWeight = binRead.ReadDouble(); iStart = binRead.ReadInt(); iEnd = binRead.ReadInt(); this.elExamples = elExamples; }
public void Load(Latino.BinarySerializer binRead, LemmatizerSettings lsett) { //load metadata bool bThisTopObject = binRead.ReadBool(); //load refernce types if needed ------------------------- if (bThisTopObject) { this.lsett = new LemmatizerSettings(binRead); } else { this.lsett = lsett; } rlRules = new RuleList(binRead, this.lsett); bool bCreateLstExamples = binRead.ReadBool(); lstExamples = bCreateLstExamples ? new List <LemmaExample>() : null; dictExamples = new Dictionary <string, LemmaExample>(); //load dictionary items int iCount = binRead.ReadInt(); for (int iId = 0; iId < iCount; iId++) { LemmaRule lrRule = rlRules[binRead.ReadString()]; LemmaExample le = new LemmaExample(binRead, this.lsett, lrRule); dictExamples.Add(le.Signature, le); if (bCreateLstExamples) { lstExamples.Add(le); } } }