Note its possible to write the example more succinctly (while having the same behavior) with:
https://docs.rs/itertools/latest/itertools/trait.Itertools.h...
HN user
Note its possible to write the example more succinctly (while having the same behavior) with:
https://docs.rs/itertools/latest/itertools/trait.Itertools.h...
When I tried DVC ~5 years ago it was very slow as it constantly hashed files for some reason.
Switched to https://github.com/kevin-hanselman/dud and I have been happy since ..
There are libraries that help with these conversions. See e.g.: https://docs.rs/bytemuck/latest/bytemuck/trait.TransparentWr...
Japan passed a law allowing use of copyrighted material for machine learning.
https://www.deeplearning.ai/the-batch/japan-ai-data-laws-exp...
Actually another reason people use the architecture is for process level isolation, i.e. limiting the blast radius of memory corruption. But in both cases, Im sure you could design an ergonomic RPC framework that takes care of offloading computation mostly transparently behind the scenes :)
You can also check https://github.com/sequenceplanner/r2r for another example of ROS2 bindings (using in production at work for a couple of ROS nodes).
But TBH, in a Rust world, it’s worth revisiting the assumptions behind the ROS node architecture, since Rust is so strong at scaling to large monolithic applications (due to the strict hierarchical code patterns it encourages).
A transitional Rust approach, that doesn't try to reimplement everything from scratch, could do something like a strangler pattern: Take each ROS node, run them separately in “jails” with a Rust API around each one, then implement the plumbing/management logic in pure Rust.
Well each time you use the await keyword you are saying its a safe point to exit, which is more predictable than killing at random points. Holding locks across await points is an anti-pattern, and Rust at least can give a hint if you try to do that. Async/await implementations will also generally allow you to run cleanup code on cancellation (but the exact mechanism depends on the language).
In the end, its about expressing a state machine in a more concise implicit way, which is a suitable level of abstraction for most use cases.
One advantage of async/await is that its easier to cancel things. For example, this leads to the design pattern where you have multiple futures and you want to select the one that finishes first and cancel the rest.
In regular threaded programming, cancellation is a bit more painful as you need to have some type of cancellation token used each time the thread waits for something. This a) is more verbose and b) can lead to bugs where you forget to implement the cancellation logic.
There are a few options I’ve seen for “liveview” type approaches in Python, see e.g. reactpy and streamlit. (Assuming you are not looking specifically for something that transpiles to JS.)
That would work nicely :)
Hi is there any plan to have high level model training tools (one example is things like Pytorch dataset loaders), or is the focus more on inference/deployment use cases?
Actually chemical weapons don’t do well on “cost effectiveness”, apparently:
https://acoup.blog/2020/03/20/collections-why-dont-we-use-ch...
Maybe variational inference is a possibility? You can try searching for black box stochastic gradient variational inference, easy to use and scales well.
Another example is RealNVP, which has the same structure to enable inversion (partition, process half, then use the result to mutate the other half in an invertible way).
Sadly, I gather the computational performance Is pretty bad ..
This is another factor to consider regarding carbs/starches, in addition to the more commonly known ones like GI:
I think there are some newer tests which only require maternal blood and can screen for some genetic conditions by filtering extra-cellular genetic material.
Maybe they can use something like this?
https://blog.acolyer.org/2019/11/01/optimized-risk-scores/
They optimise a simple set of decision rules which has reasonable accuracy in their application, quite cool really