hal9ai VS design

Compare hal9ai vs design and see what are their differences.

hal9ai

Hal9 — Data apps powered by code and LLMs [Moved to: https://github.com/hal9ai/hal9] (by hal9ai)

design

WebAssembly Design Documents (by WebAssembly)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
hal9ai design
22 31
122 11,331
- 0.2%
-22.7 3.4
8 months ago about 1 month ago
TypeScript
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

hal9ai

Posts with mentions or reviews of hal9ai. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-06-22.
  • PyScript
    10 projects | news.ycombinator.com | 22 Jun 2022
    At https://hal9.com, we built components for data science com native JavaScript to avoid the waiting times and download overhead if Pyodide. We found out the best tools for doing data science in the browser are a combination of Arquero and D3 and TensorFlow.js. At least for now.

    We wrote our findings of this and many other libraries here: https://news.hal9.com/posts/data-science-with-javascript

    10 projects | news.ycombinator.com | 22 Jun 2022
    We are not using libfortran not gdpr, we are basically using whatever libraries are available for the web. Since most data scientists don't want to use JS per se, you can build the apps as blocks in the Hal9 site or using a soon-to-be-released Python/R package, see https://notebooks.hal9.com

    Feel free to check out our repo as well, all the "primitives" / blocks code is in the scripts folder: https://github.com/hal9ai/hal9ai

  • Ask HN: Can you share websites that are pushing the utility of browsers forward?
    12 projects | news.ycombinator.com | 15 May 2022
    https://hal9.com helps data scientists build faster web applications.

    It uses WebGL and WebAssembly to process larger datasets, perform inference in the browser with TensorFlow.js, and enables running Python code with Pyodide.

  • Ask HN: What ML platform are you using?
    6 projects | news.ycombinator.com | 13 Mar 2022
    If you want to build a web application on top of your ML project, give https://hal9.com a shot. We designed Hal9 with ease of use for deployment and maximum compatibility with web technologies that enable you to build ML apps with React, Vue, etc. We launched a couple months ago but could use some early feedback and users. Thank you!
  • Built data analysis platform optimized for web developers
    4 projects | /r/webdev | 6 Feb 2022
    BTW. If you are ever interested in helping us out, you can send a PR's to our GitHub repo. For instance, the summarize and convert blocks are here: https://github.com/hal9ai/hal9ai/blob/main/scripts/transforms/summarize.txt.js and https://github.com/hal9ai/hal9ai/blob/main/scripts/transforms/convert.txt.js
    4 projects | /r/webdev | 6 Feb 2022
    In addition, you can also use Hal9 as a standalone JS library for data analysis and skip the UX, see https://github.com/hal9ai/hal9ai
    4 projects | /r/webdev | 6 Feb 2022
    Thanks! Is actually all Vue. I like Vue better over React, just personal preference, React is great and probably better for large applications. The trickiest path is the code that executes the pipelines since it has to run dynamic JS code with dynamic parameter; made that open source to make sure people are not stuck with the product if they ever have to leave or want to scar outside the product: https://github.com/hal9ai/hal9ai
    4 projects | /r/webdev | 6 Feb 2022
    You can find more about this project at https://hal9.com — We allow you to edit any block with JavaScript and to export the analysis as as embeddable HTML. You can also use Python or NodeJS if you need more advanced functionality.
  • PyFlow – visual and modular block programming in Python
    9 projects | news.ycombinator.com | 31 Jan 2022
    We are working in https://hal9.com which is language agnostic and allows you to compose different programming languages; however, we are focused at the moment at 1D-graphs but have plans to support 2D-graphs in the coming weeks.

    If you want a demo or just time to chat, I'm available at javier at hal9.ai.

  • Mlflow, fastapi, streamlit template Project
    2 projects | /r/learnmachinelearning | 26 Oct 2021
    We would love to help out since this is a perfect use case for https://hal9.ai; we are about to release our beta version that makes this as easy as copy-pasting code. You can find me at javier at hal9.ai to find some time to chat and give you a walkthrough of our code-to-api functionality.

design

Posts with mentions or reviews of design. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-18.
  • WASM Instructions
    13 projects | news.ycombinator.com | 18 Feb 2024
    I should add, however, that the unmentioned elephant in the room is V8 JIT (TurboFan), which simply doesn't handle irreducible control flow. While there are some valid theoretical arguments around the current arrangement in Wasm, looking at the history of the associated discussions makes it pretty obvious that having V8 support Wasm and generate fast code similar to what it can do for asm.js was an overriding concern in many cases. And Google straight up said that if Wasm has ICF, they will not bother supporting such cases, so it will be done by a much slower fallback:

    https://github.com/WebAssembly/design/issues/796#issuecommen...

    AFAIK no other Wasm implementation has the same constraint - the rest generally tend to desugar everything to jumps and then proceed from there. So this is, at least to some extent, yet another case of a large company effectively forcing an open standard to be more convenient for them specifically.

  • Supercharge Web AI Model Testing: WebGPU, WebGL, and Headless Chrome
    2 projects | news.ycombinator.com | 16 Jan 2024
    https://github.com/WebAssembly/design/issues/1397

    > Currently allocating more than ~300MB of memory is not reliable on Chrome on Android without resorting to Chrome-specific workarounds, nor in Safari on iOS.

    That's about allocating CPU memory but the GPU memory situation is similar.

  • Build your own WebAssembly Compiler
    3 projects | news.ycombinator.com | 3 Dec 2023
    As far as I can tell (5 minutes of internet research) this was to allow easier compilation to JavaScript as a fallback in the days when WASM wasn't widely supported.

    "Please add goto" issue has been open since 2016:

    https://github.com/WebAssembly/design/issues/796

    Most interesting comment:

    > The upcoming Go 1.11 release will have experimental support for WebAssembly. This will include full support for all of Go's features, including goroutines, channels, etc. However, the performance of the generated WebAssembly is currently not that good.

    > This is mainly because of the missing goto instruction. Without the goto instruction we had to resort to using a toplevel loop and jump table in every function. Using the relooper algorithm is not an option for us, because when switching between goroutines we need to be able to resume execution at different points of a function. The relooper can not help with this, only a goto instruction can.

    > It is awesome that WebAssembly got to the point where it can support a language like Go. But to be truly the assembly of the web, WebAssembly should be equally powerful as other assembly languages. Go has an advanced compiler which is able to emit very efficient assembly for a number of other platforms. This is why I would like to argue that it is mainly a limitation of WebAssembly and not of the Go compiler that it is not possible to also use this compiler to emit efficient assembly for the web.

    ^ https://github.com/WebAssembly/design/issues/796#issuecommen...

  • Flawless – Durable execution engine for Rust
    7 projects | news.ycombinator.com | 25 Oct 2023
    When I implemented a WASM compiler, the only source of float-based non-determinism I found was in the exact byte representation of NaN. Floating point math is deterministic. See https://webassembly.org/docs/faq/#why-is-there-no-fast-math-... and https://github.com/WebAssembly/design/blob/main/Nondetermini....
  • Requiem for a Stringref
    4 projects | news.ycombinator.com | 19 Oct 2023
    > To work with GC, you need some way to track if the GC'd object is accessible in WASM itself.

    I've never heard of a GC with that kind of API. Usually any native code that holds a GC reference would either mark that reference as a root explicitly (eg. https://github.com/WebAssembly/design/issues/1459) or ensure that it can be traced from a parent object. Either way, this should prevent collection of the object. I agree that explicitly checking whether a GC'd object has been freed would not make any sense.

    > The reason why you probably need a custom string type is so you can actually embed string literals without relying on interop with the environment.

    WASM already has ways of embedding flat string data. This can be materialized into GC/heap objects at module startup. This must happen in some form anyway, as all GC-able objects must be registered with the GC upon creation, for them to be discoverable as candidates for collection.

    Overall I still don't understand the issue. There is so much prior art for these patterns in native extensions for Python, PHP, Ruby, etc.

  • The Tug-of-War over Server-Side WebAssembly
    12 projects | news.ycombinator.com | 24 Mar 2023
    Giving you a buffer that grows is the allocation approach I am talking about. This is not how your OS works. Your OS itself works with an allocator that does a pretty good job making sure that your memory ends up not fragmented. Because WASM is in between, the OS is not in control of the memory, and instead the browser is. The browser implementation of "bring your own allocator" is cute but realistically just a waste of time for everybody who wants to deploy a wasm app because whatever allocator you bring is crippled by the overarching allocator of the browser messing everything up.

    It seems like the vendors are recognizing this though, with firefox now having a discard function aparently!

    https://github.com/WebAssembly/design/issues/1397

  • How do Rust WebAssembly apps free unused memory?
    5 projects | /r/rust | 26 Feb 2023
    But researching it a bit I found this issue, so it clearly seems to be a problem for a bunch of people out there. And apparently both V8 and Spidermonkey have already addressed this quite recently, see this issue.
    5 projects | /r/rust | 26 Feb 2023
    Reading through this issue, at least for Unity, it seemed like a chicken-egg problem.
    5 projects | /r/rust | 26 Feb 2023
  • Hello World In Web Assembly
    4 projects | dev.to | 12 Feb 2023

What are some alternatives?

When comparing hal9ai and design you can also consider the following projects:

arquero - Query processing and transformation of array-backed data tables.

pyodide - Pyodide is a Python distribution for the browser and Node.js based on WebAssembly

blockly - The web-based visual programming editor.

starboard-notebook - In-browser literate notebooks

ml5-library - Friendly machine learning for the web! 🤖

gradio - Build and share delightful machine learning apps, all in Python. 🌟 Star to support our work!

regression-js - Curve Fitting in JavaScript.

content - The content behind MDN Web Docs

dplyr - dplyr: A grammar of data manipulation

Chevrotain - Parser Building Toolkit for JavaScript

wave - Realtime Web Apps and Dashboards for Python and R

interface-types