Live data from Hacker News

Viewing profile — Evan-Almloff

Evan-Almloff

HN member
Joined
Thu, Jun 01, 2023, 7:13 PM UTC
HN karma
90
Public activity
26 items

About Evan-Almloff

No profile information was provided.

Recent public activity

  1. comment
    Comment #45520172

    > Because WebAssembly modules lack direct access to the DOM, they rely on an additional JavaScript interoperability layer, which can introduce extra overhead. Blazor is slow for ot…

  2. comment
    Comment #44697369

    Most of the optimizations apply equally to calling into webview JS from a native application for something like dom manipulation. There is a wry example that uses the system webvie…

  3. comment
    Comment #44693994

    The two projects have different usecases so they can't be directly compared. Slegehammer bindgen makes calling javascript from rust faster in the browser. Wasmtime is a native runt…

  4. story
  5. comment
    Comment #42392015

    There are several good community component libraries now. daisy rsx is one that is already updated with 0.6 support: https://crates.io/crates/daisy_rsx

  6. comment
    Comment #41400805

    Kalosm is a library for pre-trained text, audio and visual models in Rust. It includes support for: - Whisper for audio transcription - Llama, phi and mistral models for text gener…

  7. story
  8. story
  9. comment
    Comment #39859712

    It is pretty good. I am working on an application that uses SVGs as a way to draw a workflow editor UI with Dioxus: https://github.com/floneum/floneum

  10. comment
    Comment #39857785

    We have a web components example here: https://github.com/DioxusLabs/dioxus/blob/fd21c971038840130f... Everything should work like normal except: attributes are not typed, custom e…

  11. comment
    Comment #39854461

    All data you insert into a generational box needs to be allowed to last for the 'static lifetime (have no internal temporary pointers). You cannot insert something like &'a str int…

  12. comment
    Comment #39853879

    Dioxus web compiles to WASM, but we compile to native code for desktop rendering to make it easier to interact with native APIs like the filesystem. We just use the web browser for…

  13. comment
    Comment #39853834

    We are copying the reference to the data, not the data itself. The reference to the data lasts for the lifetime of the program. Generational box lets you insert data that last for …

  14. comment
    Comment #39545422

    I would love to integrate llava in the future!

  15. comment
    Comment #39542117

    Yes, you can set the source to any local file instead of a huggingface model. Here is a example: https://gist.github.com/ealmloff/3398d172180fa783f043b4a2696...

  16. story
    Show HN: Kalosm an embeddable framework for pre-trained models in Rust

    Hi everyone, I'm happy to announce the release of Kalosm! [Kalosm]( https://floneum.com/kalosm/ ) is a framework for embedded AI in rust. ## What is Kalosm? Kalosm provides a simpl…

  17. comment
    Comment #38605972

    It's here: https://huggingface.co/mistralai/Mistral-7B-Instruct-v0.2

  18. story
    Show HN: Kalosm – a local first AI meta-framework in Rust

    Kalosm is a meta-framework for AI written in Rust. Kalosm supports local quantized large language models like Llama, Mistral, Phi-1.5, and Zephyr. It also supports other quantized …

  19. comment
    Comment #37481028

    Floneum is a graph editor for local AI workflows. The project focuses on ease of use and extensibility. The application is a single installer with no external dependencies. Here ar…

  20. story
  21. comment
    Comment #36710377

    There are a bunch of tasks that require some minimal level of language processing/reasoning that people do that are repetitive. I mentioned a few in my previous response: - Cross r…

  22. comment
    Comment #36701279

    Absolutely, I would love to integrate other types of models (mentioned at the end of the anointment post)! Stable diffusion and whisper.cpp could be a good place to start It is a b…

  23. comment
    Comment #36699504

    1. I would love to support additional model runners including exLlama and API based models like chat GPT. I'm less familiar with how c transformers and GPTQ compare to llama.cpp. G…

  24. comment
    Comment #36699337

    Floneum is still early in development, as it becomes more mature I plan to expand the documentation. In the meantime, you can always ask questions on the discord! Getting feedback …

  25. comment
    Comment #36698962

    Currently, I'm hoping to find more developers who are interested in contributing to the project (specifically building plugins). Once Floneum is more complete, the target users are…