We have a scenario where we need to use Machine learning algorithm to predict a value. We want to do it in ML.NET because of some issues.
We tried AutoML in a project and trained it with almost 80k records of data. We trained the data for more than 30 min. The csv file was 22MB. Data looks like below.
------------------------------------
Col1 col2
------------------------------------
Some text 21
Some other text 2
We have some historic data of above kind. We need to predict col2 from the col1 text. It is predicting the result in decimals even though the column is whole number.
There is a model created by someone in python which is working as expected for now. We want to use it in ML.NET.
Is there any possibility we can use a model created from python, in ML.NET?