model route change to dynamic

This commit is contained in:
PppBr 2018-10-03 17:33:15 -05:00
parent d0e89f777d
commit ea4b401f83

View file

@ -42,7 +42,7 @@ namespace BotSharp.NLP.Featuring
if(Vg == null)
{
Args args = new Args();
args.ModelFile = @"C:\Users\bpeng\Desktop\BoloReborn\Txt2VecDemo\wordvec_enu.bin";
args.ModelFile = ModelFile;
Vg = new VectorGenerator(args);
SentenceVectorSize = this.Vg.Model.VectorSize;
Features = new List<string>();