-
Notifications
You must be signed in to change notification settings - Fork 5
Temp
Mehran Davoudi edited this page Oct 3, 2015
·
1 revision
You can train Simila as easy as:
// If mistake cost of "C" to "X" is 1 (very unsimilar!)
// and mistake cost of "C" to "C" is 0 (very similar, same!), than
// the mistake cost of "C" to "K" is 0.6 (some sort of similar)
simila.AddCommonMistake("C", "K", mistakeCost: 0.6);
// Training simila, so she knows that "Color" and "Colour" are very similar.
simila.AddCommonMistake("Color", "Colour", mistakeCost: 0.1);