-
Hi guys, just a typo.
The call to UseModelWithBatchItems from the main method includes model as an argument but the method definition just had mlContext as a parameter.
So I think
```
public s…
-
training pipeline code is not formatted correctly
![image](https://user-images.githubusercontent.com/16876986/108438979-35ec1780-7205-11eb-8d7b-f4b49c42b284.png)
-
Hey guys,
Just another little typo.
The PredictIssue method is missing the declaration of loadedModel.
So
```
ITransformer loadedModel = _mlContext.Model.Load(_modelPath, out var…
-
I'm getting an `InvalidCastException` on the following line, when using the code unmodified from this documentation:
LinearRegressionModelParameters originalModelParameters =
…
-
How do I inspect a dataset after a transform which changes the schema?
var categoricalEstimator = lContext.Transforms.Categorical.OneHotEncoding("StringProperty");
ITransformer categoricalTransfor…
-
Can we make this picture a bit simpler. It's unclear in this description what are the various steps and which one comes first. Perhaps listing higher level steps
1. Prepare Data (1.1 Load Data 1.2 Ext…
-
Using v1 RC, I built my model as such:
`
var trainingPipeline = modelConfig.pipeline
.Append(modelConfig.mlContext.MulticlassClassification.Trainers
.SdcaNonCalibra…
-
2019-12-25 04:09:46.674731: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2
=============== Training class…
-
The following three changes need to be required to work Price Prediction Tutorial work correctly,
#01. Install-Package Microsoft.ML.FastTree after creating the console application
On Create a consol…
-
When calling the `Fit` method with the original model parameters to retrain a model, I get the below error message. I'm not quite sure if I did something incorrect to cause this or if it is from somet…