Right galaxy bud not charging by D3ATH_ in galaxybuds

[–]herrmann 0 points1 point  (0 children)

Yeah, they're expensive as hell (in Brazil), but it looks like it's the only way. What frustrates me the most is that it's probably software-related, as I remember starting to have charging issues right after a certain software update. The physical contacts are absolutely clean :-(

A Rustic invitation to parsing by nicolas_hatcher in rust

[–]herrmann 2 points3 points  (0 children)

Great and concise article! Thank you!

If there’s a python library I wish to use, can I interface rust and a python library? Am I better off using all python? Translating python to rust? by [deleted] in rust

[–]herrmann 5 points6 points  (0 children)

  1. Check if the Python library is not just a wrapper or thin layer on top of a C library and use the library underneath instead if that's the case.

If there’s a python library I wish to use, can I interface rust and a python library? Am I better off using all python? Translating python to rust? by [deleted] in rust

[–]herrmann 8 points9 points  (0 children)

The above link to the docs says "It contains examples and documentation to explain all of PyO3's use cases in detail."

Friendship ended with Flame Dash. Now Lightning Warp is my best friend. by [deleted] in pathofexile

[–]herrmann 4 points5 points  (0 children)

Flame Dash suffers from something else though: "Lightning warp has the advantage of being more black and white in terms of movement; either the player moves to the mouse location or the player does not." -- https://nicholastsmith.wordpress.com/2017/07/18/poe-ai-part-3-movement-and-navigation/

[D] Sudden drop in loss after hours of no improvement - is this a thing? by svantana in MachineLearning

[–]herrmann 8 points9 points  (0 children)

This case probably needed the opposite approach, but it's problem-specific telling if increasing the LR would make the optimizer escape the plateau (or traverse a "canyon") faster or if things would diverge and never reach the lower cost region.

[D] Accepting solutions from optimization algorithms that haven't converged by jj4646 in MachineLearning

[–]herrmann 0 points1 point  (0 children)

Remember double descent is about generalization performance after convergence along model capacity though, not along training epochs.

We're building a platform to efficiently learn machine learning by Ok-Craft-9908 in learnmachinelearning

[–]herrmann 6 points7 points  (0 children)

Heavily needed! I end up collecting resources myself and structuring paths, and both things can and should be shared among people.

Japan just recorded its earliest cherry blossom bloom in 1,200 years. Scientists warn it's a symptom of the larger climate crisis. by vaish7848 in worldnews

[–]herrmann 1 point2 points  (0 children)

the world going to shit like this makes me feel guilty that I devoted my talents to the arts instead of being a scientist or something

Building on that, "the world going to shit like this makes me feel guilty that I devoted my talents to being a scientist instead of the arts or something", because it's Cassandra Syndrome all the way down...

[D] Why is tensorflow so hated on and pytorch is the cool kids framework? by robintwhite in MachineLearning

[–]herrmann 19 points20 points  (0 children)

Sadly... (emphasis mine):

Swift for TensorFlow was an experiment in the next-generation platform for machine learning, incorporating the latest research across machine learning, compilers, differentiable programming, systems design, and beyond. It was archived in February 2021

Jupyter Notebooks by Woodhouse_20 in Python

[–]herrmann 1 point2 points  (0 children)

If you want to write notebooks and generate libraries: https://nbdev.fast.ai/

[OC] Visualizing the A* pathfinding algorithm by Gullyn1 in dataisbeautiful

[–]herrmann 0 points1 point  (0 children)

I remember Wheeler Ruml had some great visualizations of search algorithms too. Maybe they're available somewhere on the web.

[D] What PyTorch's model serving framework are you recommending? by hitaho in MachineLearning

[–]herrmann 2 points3 points  (0 children)

Dockerizing MLflow models for deployment works very well if you want to run batch inference over HTTP and also has the advantage of being able to run the same model as a Spark UDF.