Advertisement · 728 × 90

Posts by Daniel Falbel

Preview
Introducing Great Docs: Beautiful Documentation for Python Packages Great Docs is a new documentation site generator for Python packages. It auto-discovers your API, builds a modern site with Quarto, and ships with LLM-friendly features and one-command deployment.

We just released a blog post about something I'm very excited about: Great Docs. Post is in the *new* Posit Open Source site:

opensource.posit.co/blog/2026-04...

Great Docs is a #python pkg for creating beautiful Python package websites. We make it easy to use but also give you lots of options.

6 days ago 44 16 2 0
Preview
RAG with raghilda An introduction to building retrieval-augmented generation systems with raghilda.

We just released raghilda to PyPi. Raghilda is a framework for building RAG systems in #python. See the release blogpost: opensource.posit.co/blog/2026-04...

6 days ago 18 5 1 0
Keynote #2  R in the AI Era Leveraging Modern Technologies in Practice - Simon Urbanek
Keynote #2 R in the AI Era Leveraging Modern Technologies in Practice - Simon Urbanek YouTube video by useR! Conference

This was really nice to watch #rstats :) Fun application of attention models. Also nice to see torch used for such important work! youtu.be/0Zra1WYoiOM?...

5 months ago 8 0 0 0
Post image

With a nice latent space vis ;)

5 months ago 1 0 0 0
Examples

luz v0.5.1 is now on #rstats CRAN. Just a small bug fix related to forwarding `predict` parameters to the model. I also added a new Variational Autoencoder example to our examples gallery: mlverse.github.io/luz/articles...

5 months ago 10 2 1 0
Preview
Refer to kernel laucnhing thread instead of assuming the main thread by dfalbel · Pull Request #1455 · ipython/ipykernel This PR proposes a patch to address the issue described in #1438 (comment) With this, we no longer asssume that the IPykernel app starts from the main thread. Instead, we keep a reference to the la...

As an #rstats dev, I never expected writing a PR to ipykernel :) github.com/ipython/ipyk... It's now running for everyone with ipykernel >= 7.1

5 months ago 8 0 0 0

It has many limitations:

- no dynamic shapes
- hardcoded weights

But it should be possible to greatly improve this in the future.

7 months ago 1 0 1 0
Post image

Where `resnet18_stablehlo.mlir` is a model exported with:

7 months ago 2 0 1 0
Post image

Here's a small example:

7 months ago 3 0 1 0
Preview
Embedding Atlas by dfalbel · Pull Request #124 · tidyverse/ragnar Add support for visualizing the store using embedding-atlas

The motivation for it comes from working on inegrating
Apple embedding atlas into ragnar: github.com/tidyverse/ra...

We ended up using the python package, but we could have used a #rstats / JS only solution if we had some nice mosaic integration.

7 months ago 1 0 0 0
Advertisement
Scalable, Interactive Data Visualization Produce scalable, interactive data visualization using the Mosaic framework.

Just made a nice website for mosaicr. A small #rstats htmlwidget package that allows using
@idl.uw.edu Mosaic data visualization framework from R.

The real power comes when embedding Mosaic plots within Shiny apps. See examples and docs in

dfalbel.github.io/mosaicr/

7 months ago 10 1 1 0
Preview
r-xla r-xla has 6 repositories available. Follow their code on GitHub.

Yep! We have some work in github.com/r-xla
It's a long term project though. Theoretically it's already possible to create a graph in jax , export it to stablehlo and ecute it in R with no python dep.

7 months ago 3 0 1 0
Preview
minhub/R/gemma3.R at main · mlverse/minhub Minimal implementation of Deep Learning models. Contribute to mlverse/minhub development by creating an account on GitHub.

tiny ( <400loc) implementation of Gemma3 270M using torch for #rstats

github.com/mlverse/minh...

Includes support for loading weights from hugging face hub.

7 months ago 9 2 0 0
Preview
Release v0.2.0 · mlverse/tok Updated upstream tokenizers to 0.20.3 Update extendr-api to 0.8.1

tok is back on CRAN! tok is @hf.co tokenizers for #rstats. It uses the same Rust libray as the python interface. It's pretty fast and fully compatible with tokenizers.json available on hub.

See the release notes:

github.com/mlverse/tok/...

7 months ago 10 3 0 0
GitHub - mlverse/lang: Uses LLMs to translate R help docs on the fly Uses LLMs to translate R help docs on the fly. Contribute to mlverse/lang development by creating an account on GitHub.

Dev 📦 alert! {lang} translates R help on-the-fly using your local LLM! It also overrides the `?` so you can easily access the translated docs and have them displayed on your IDE's help pane github.com/mlverse/lang #rstats #llm #ollama

1 year ago 18 6 0 1
Preview
R-Universe Named R Consortium Top-Level Project We're excited to announce R-Universe has been named the R-Consortium's newest Top-Level Project.

Excited and grateful that R-Universe is R Consortium's newest top-level project! This means sustained support for @rOpenSci.hachyderm.io.ap.brid.gy's platform for discovery and publishing of #rstats packages. Hats off to @jeroenooms.bsky.social for his leadership!

ropensci.org/blog/2024/12...

1 year ago 72 28 0 3

Happy to help making it work on MPS. It should just work if you create a tensor on the MPS device, using eg:

torch_randn(10,10, device="mps")

1 year ago 0 0 1 0
Post image

torch for #rstats has reached 500 GitHub stars :)

1 year ago 46 4 4 3
Advertisement
Preview
Changelog

📦 usethis 3.1.0 📦 is released. `use_vignette()` and `use_article()` can now help you initiate a Quarto (.qmd) vignette or article. #rstats

usethis.r-lib.org/news/index.h...

1 year ago 115 31 3 0

This is only happens on Linux when using the CPU. But many workflows involve transforming data on the CPU before executing the model on the GPU, so this fix should improve performance of most torch programs running on Linux!

1 year ago 2 0 1 0

But LibTorch is really optimized to work with Intel MKL, and indeed statically links to a version of MKL for faster math kernels, but we were not using it leaving a lot of performance on the table.

1 year ago 1 0 1 0

The problem was that previous versions of torch would use whatever BLAS library R is configured to use (which in most system will be a single threaded BLAS, and if you had some fun configuring R, it could be OpenBLAS.

1 year ago 0 0 1 0

This includes a bug fix that makes #rstats torch at least 2x faster on Linux CPU's, and possibly even more for other workflows.

1 year ago 4 0 1 0
Preview
Libtorch 2.5.1 by dfalbel · Pull Request #1204 · mlverse/torch Add support for LibTorch 2.5.1 TODO: Update Libtorch M1 builds - and patch the allocator Regenerate R level wrappers Figure out pre-built binaries for x86_64 macOS Drop unsupported CUDA from C...

Finally merged support for LibTorch 2.5 into #rstats torch main! github.com/mlverse/torc...

1 year ago 8 0 1 1

Nice! Wrapping the bucket with a CDN, such as CloudFront, should also make downloads faster, due to regional caching and other optimizations that CDN's do. It also allows you to decouple the storage location from how things are distributed, so it gives you freedom to change storage structures later.

1 year ago 1 0 0 0

I know nothing about nix, but how do folks download from the cache later? In general using a CloudFront distribution instead of directly accessing the bucket will reduce a lot the egress costs.

1 year ago 0 0 1 0

After long investigation, I still don't understand what is really happening and what's wrong, but... The fix turned out being quite simple. Just had to add the RTLD_DEEPBIND flag when opening the dynamic library 🤷‍♂️

github.com/mlverse/torc...

1 year ago 0 0 0 0
Preview
MKL and openBLAS interactions - a question about linking I'm using a binary (R) that dynamically links to a generic version of BLAS, for instance (and in a lot of cases) this is openBLAS. Now, inside R, I'm dynamically loading another shared library (lib...

Just posted a Stack Overflow question! First one in a couple years. Do people still use it? stackoverflow.com/q/79171784/3...

1 year ago 1 0 1 0
Advertisement

S7 is really nice! I've exploring it in the micrograd package, a minimal implementation of an automatic differentiation engine (think torch's autograd) built from scratch in R: github.com/dfalbel/micr...

1 year ago 14 3 0 0
Introducing Positron, a new data science IDE - posit conf 2024
Introducing Positron, a new data science IDE - posit conf 2024 YouTube video by Posit PBC

Our #PositConf2024 talk(s) on Positron are now available on YouTube! It was really special to get to introduce this new project to folks ❤️ and I'm excited this is broadly available now.

Take a look if you are curious about our new IDE:
youtu.be/8uRcB34Hhsw

1 year ago 71 30 6 4