fwaris

Results 42 comments of fwaris

updated (please ignore previous message - I had specified the script name the name wrong) The only error I can see is this: ``` Unexpected failure while waiting for the...

Michael, Thanks for responding. I have attached a zip file containing a README.MD with instructions and code to recreate the above issue. I have been using Spark interactively from F#...

Microsoft is building up ONNX (https://onnx.ai/) as part of a consortium of companies. Previously ONNX only supported inference but now it also supports [training](https://cloudblogs.microsoft.com/opensource/2020/05/19/announcing-support-for-accelerated-training-with-onnx-runtime/). Currently the models have to be...

@prasanthpul ONNX does speed up existing models. I converted a PyTorch, BERT-based transformer model to ONNX and saw significant speed up - at least for bulk scoring. However the models...

same here (I only tried a few). Hopefully someone is able to help as we can't learn Tensorflow.Net fast enough unless the examples are working

here is an anonymized version of the CSV sample file that seems to cause this issue. [data_sample.zip](https://github.com/fsharp/FSharp.Data/files/2375336/data_sample.zip) Sample code: ```fsharp open FSharp.Data [] let data_file = @"data_sample.csv" type Tdata =...

spark jar is not recognizing its own version - 3.2.2. This jar is shipped with microsoft.spark v. 2.1.1 If I submit the following command in a console window: ``` spark-submit...

@Niharikadutta support for Spark 3.2.2. is a bit urgent as Spark 3.2.1 does not run on windows due to a 'path' issue (on the Spark side). This has been fixed...

@dsyme I investigated Z3 for constraint-based *optimization*, which apparently is a new feature. Unfortunately the optimization is not implemented for my specific use case and I ended up not using...

I just found out that one workaround for the above issue is to set "ignoreMissingColumns=true" when calling CreateEnumerable(...)