Michael Sharp
Michael Sharp
@ericstj So in the MLContext we can add custom options https://github.com/dotnet/machinelearning/blob/main/src/Microsoft.ML.Data/MLContext.cs#L202. I was thinking we could make a dictionary of light gbm options and then add it to the options....
I believe that is correct. Looking in the source file, [RandomForestClassification.cs](https://source.dot.net/#Microsoft.ML.FastTree/RandomForestClassification.cs,128), we can see its tagged to use the `io-columns-binary-classification.md` file, but it really should be using `io-columns-binary-classification-no-prob.md`
so `Path.GetRandomFileName()` should make sure we are getting unique temp directories. What problems are you seeing in regards to this?
@luisquintanilla @LittleLittleCloud @JakeRadMSFT do any of you know if this is planned at some point?
Thanks for finding this. Based on the code comments you are 100% correct. > // The return type must be byref. // If the non-static field access is for a...
Resolved by #10268
Thanks for finding this for us! We will take a look and see what we can figure out.
So this file is used for TensorFlow testing and AutoML Testing. TensorFlow runs sequentially, so this issue should only happen during the AutoML tests. I don't think we should run...
ML.NET by default usually does not cache data. If you want to cache the data, in general you can do `mlContext.Data.Cache(data);`. In the case of the `LdSvmTrainer`, there is an...