Lukas Weil
Lukas Weil
### Description When calling `Seq.toArray` on a generic `Dictionary`. The resulting values are typed as `KeyValuePair`, but only contain the key. Accessing `.Key` and `.Value` properties is transpiled as `.[0]`...
### Description When boxing a `byte` value, it looses its underlying type information. ### Repro code #### test.fsx ```fsharp let intValue = box 1 let byteValue = box 2uy let...
### Description We (@freymaurer) want to transpile a class with type extensions and the `[]` attribute. As of now, the extensions are not transpiled as members of the classes, but...
Many of the `gcn` and also the `train` functions might be generalized to allow for a more modular and broader use. E.g. the `GCNModel.create` function might be generalized to a...
Hey, I ran into your Repo searching for a GCN library (obviously). I think the approach you took with both `Torchsharp.Fun` and the `gcn` functions is pretty elegant. Unfortunately, everything's...
**To Reproduce** ```fsharp (+.) id (Option.Some 5) ``` returns ``` val it: SheetEntity = Some ((String, "Some(45)"), []) ``` But the internal value should be only `45`. **Solution** use `parseAny`...
**Describe the bug** ```fsharp FsRangeAddress("A1:A1") = FsRangeAddress("A1:A1") FsAddress("A1") = FsAddress("A1") ``` both return `false`. **Expected behavior** These should return true. This could be done by implementing custom equality for the...
Possibility of whether Frames could implement [IDataView](https://learn.microsoft.com/en-us/dotnet/api/microsoft.ml.idataview?view=ml-dotnet) interface could be checked. This would open the door to directly injecting Frames into e.g. all sorts of machine learning algorithms implemented in...
### Description Please provide a succinct description of your issue. ### Repro code https://fable.io/repl/#?code=DYUwLgBARgNAbhAvBAygTwM5hAWwHQAiAhtgCoCWOIepATmgApG0YgAUARAIIBCAwhABsHAJQBYAFCSADrXIA7MADN5EDgGMi8niCYsQAEwBcEAKSwIcIsACuIRKYDyHaJaA&html=Q&css=Q ```fsharp let b,v = System.DateTime.TryParse("ABC 6") printfn "canBeParsed: %b, value=%O" b v ```` ### Expected and...