Fix typo
This commit is contained in:
parent
ac86f7ff28
commit
e0931c2e5f
@ -10,8 +10,8 @@ public abstract class TestBase
|
||||
public TestBase()
|
||||
{
|
||||
_mlContext = new MLContext(seed: 0);
|
||||
ITransformer loadedNodel = _mlContext.Model.Load(_dataPath, out var _);
|
||||
_predEngine = _mlContext.Model.CreatePredictionEngine<Product, TypePrediction>(loadedNodel);
|
||||
ITransformer loadedModel = _mlContext.Model.Load(_dataPath, out var _);
|
||||
_predEngine = _mlContext.Model.CreatePredictionEngine<Product, TypePrediction>(loadedModel);
|
||||
}
|
||||
|
||||
public void Execute(string name, string expectedGroup)
|
||||
|
Loading…
Reference in New Issue
Block a user