//Step 1. Create an ML Context var ctx = new MLContext(); //Step 2. Read in the input data from a text file for model training IDataView trainingData = ctx.Data .LoadFromTextFile<ModelInput>(dataPath, hasHeader: true); //Step 3. Build your data processing and training pipeline var pipeline = ctx.Transforms.Text .FeaturizeText("Features", nameof(SentimentIssue.Text)) .Append(ctx.BinaryClassificatio

