Weights
Adjusting weights of symbols
var names = new NameGenerator()
.Any(x => x
.First(x => x
.Add("lmnr").Weight(5) // Appears more frequently
.Add("kgpb").Weight(2)) // Appears less frequently
.Middle(x => x
.Add("aei").Weight(4)
.Add("ou").Weight(1)))
.SetSize(2, 3);Lika
Ranumi
Marile
MalobaIn the example above:
Adjusting weights of clusters
Last updated