Kevin Malenfant
Kevin Malenfant
Need to check on the erased case. But for the generated case ```fsharp
Current version fails with missing method exception on op `-->` (DiffSharp). This is because `EvalTraitCallInvoke` uses `InvokeMember` which does not support generic methods. As an alternative type parameters are matched,...
Closes #329, Closes #330 - Add xml comments to `Seq`, #281 - Fix `Seq.weightedMean` #329 - Fix `Seq.stats` #330 - Add tests for `Seq` module **[Required]** please make sure you...
For example: ```fsharp #r "nuget:FSharp.Stats" open FSharp.Stats let values = [1.0; 2.0; 3.0; 4.0; 5.0] Seq.stats values ``` Result: ``` val values: float list = [1.0; 2.0; 3.0; 4.0; 5.0]...
The signature for `Seq.weightedMean` is off. For example: ```fsharp #r "nuget:FSharp.Stats" open FSharp.Stats let values = [1.0; 2.0; 3.0; 4.0; 5.0] let weights = [1.0;2.0;1.0;2.0;1.0] Seq.weightedMean weights values ``` Result:...
Specifically the python MKL build of libmxnet (mxnet-cu101mkl==1.6.0b20191125) errors on `copyToRun` after `execRun` has been used. To reproduce click `Use DQN` and update the model. Whether it updates while in...
Currently the Bind extension methods assume a single context. Executors can be multi-context and the Executor type supports multiple contexts. Bind extensions methods should be updated to pass in a...
```fsharp let nd = CPU(0).CopyFrom([|0.0 .. 10.0|]) let a = 2.0 + (2.0 ** nd) let b = (2.0 ** nd) + 2.0 ``` Both `a` and `b` fail overload...
The NDArray ops are generated using `OpOutCount.txt` to determine the output count. However the output argument is always an array of NDArray. Consider the following * Use named parameter for...