Marko Grdinić
Marko Grdinić
This error happens after running the profiler once for me. When I open Start Activity the second time, it gets wonky.
5.2.5. ``` "node_modules/@fontsource/inter": { "version": "5.2.5", "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-5.2.5.tgz", "integrity": "sha512-kbsPKj0S4p44JdYRFiW78Td8Ge2sBVxi/PIBwmih+RpSXUdvS9nbs1HIiuUSPtRMi14CqLEZ/fbk7dj7vni1Sg==", "license": "OFL-1.1", "funding": { "url": "https://github.com/sponsors/ayuhito" } }, ``` ``` "dependencies": { "@emotion/react": "^11.14.0", "@emotion/styled": "^11.14.0", "@fontsource/inter": "^5.2.5", "@llm-ui/code": "^0.13.3",...
Yes. 
I ran into this error with `Llama3.2-1B` and the solution by @zeeshanhayder worked.
In Spiral, I've created my own [printing functionality](https://github.com/mrakgr/Tutorials/blob/master/spiral_mini_tutorial_for_ml_library_authors.md#printing-in-spiral) that is typesafe and can print arbitrary type in the language. It also uses a global semaphore to ensure that only one...
How do I serialize an F# record without having it output duplicate fields with `@` signs at the end?
Here is another example. The results this library is giving me are bonkers. ``` #r "nuget: YamlDotNet, 16.3.0" open YamlDotNet.Serialization open YamlDotNet.Serialization.NamingConventions [] type t = { Qwerty : string...
How do I serialize an F# record without having it output duplicate fields with `@` signs at the end?
The library does have [tests](https://github.com/aaubry/YamlDotNet/blob/b8ac2a98ffcc12434eff6c6abb75b38ad1b1ab04/YamlDotNet.Fsharp.Test/SerializerTests.fs#L74) that look sensible, so I am confused what the problem is.
How do I serialize an F# record without having it output duplicate fields with `@` signs at the end?
> [@mrakgr](https://github.com/mrakgr) can you try running the sample code in a console app. I only see the behavior you reported when running the code in FSX but not with a...
How do I serialize an F# record without having it output duplicate fields with `@` signs at the end?
> The library uses reflection to determine what to put in the yaml. Fsharp likes to make weird properties on its types, I think it was optional fields that caused...
Sorry if I wasn't clear. By this I mean, I want to somehow target the CPU parts of the FPGA using SYCL, and have it call out to the PL...