public MaximumEntropyCompatibilityModel(string coreferencePath)
 {
     mGenderModel = GenderModel.TestModel(coreferencePath + "/gen");
     mNumberModel = NumberModel.TestModel(coreferencePath + "/num");
 }
Exemplo n.º 2
0
		public static ITrainSimilarityModel TrainModel(string modelName)
		{
			var numberModel = new NumberModel(modelName, true);
			return numberModel;
		}
Exemplo n.º 3
0
        public static ITrainSimilarityModel TrainModel(string modelName)
        {
            var numberModel = new NumberModel(modelName, true);

            return(numberModel);
        }
Exemplo n.º 4
0
		public static ITestNumberModel TestModel(string name)
		{
			var numberModel = new NumberModel(name, false);
			return numberModel;
		}
Exemplo n.º 5
0
        public static ITestNumberModel TestModel(string name)
        {
            var numberModel = new NumberModel(name, false);

            return(numberModel);
        }