List of "projects using plum"?
See original GitHub issueIt would be useful to have a list of projects that use plum, or even other Python MD libraries. Best would be OSS so we can see exactly how it is used.
(Maybe there is a way to do a pypi reverse-dependency search?)
Some things that such a list might help with:
- My main motivation: Say I want to introduce MD in a garden-variety existing large project. The response of the other devs will be “no”. It would be useful to point to code bases using MD that didn’t cause the end of the world, or even helped.
- Even if I think plum is the best MD library for a particular project, but the best large example uses, say
multipledispatch
, it’s worth knowing. If I can convince others (and most importantly myself!) that this is was a good choice, it is a relatively small jump to say plum is better in this case. The harder question is whether MD is useful at all. - What are the design problems and choices peculiar to Python? For example, integration with Python’s OO model.
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Projects - PLUM @ UMD
This project aims to increase the productivity of proof engineers by simplifying the process of developing, executing, and maintaining verified software in ...
Read more >The Perfect Plum and Other Preservation Projects at ...
The Perfect Plum and Other Preservation Projects at Esherick's Studio. studio building with stone section on the left, tall wooden addition ...
Read more >PLUM Home with Ideas "project, list, unic, material" | ad Ruby
PLUM's collection of façades and accessories that complement IKEA's modular furniture, and its vibrant line of wall paint, give spaces a new ...
Read more >Plum - Dribbble
Plum. 303 inspirational designs, illustrations, and graphic elements from the world's best designers. Want more inspiration? Browse our search results.
Read more >Kelsey Plum: Destined for greatness
With a 57-point barrage to cap her final regular season, Plum now stands ... scorers list and breaking Stiles' single-season scoring record.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I also know of Geometric Kernels, which uses Plum to provide a backend-agnostic implementation (something that works with PyTorch/TF/JAX/etc).
There is fastdispatch, which I believe is eventually to be used in fastcore.
There is PySSAGES, which I’m not familiar with, but which seems to use Plum. (@InnocentBug)
There is EMLP, which I’m also not familiar with, but which seems to use Plum to some extent.
Perhaps there are a few more projects using it.
I also have a few projects of my own which are quite intensively using Plum:
Once we decide on a way forward with the documentation (see #56, #57), let’s put together this list!
Great. This is exactly the kind of thing I am looking for.
Requoting what you quoted:
Turns out that’s not universal. In fact, I brought it up with qiskit devs. Actually several are rather positively disposed towards it. But, naturally they don’t want to jump in blindly. And they did point out some concerns, partly in my example code (lack of clarity, performance, etc.)
There are a few versions of this talk (a good version is by both Stefan and Jeff at a compiler (I think) conference). I really like them. But these are talks by the people who are heavily invested in this approach. So another dev, especially one not familiar with the concept, would be right to be cautious about accepting the arguments. Seeing actually Python projects that are benefiting is more convincing, I think.
I think it’s only partly coincidence that this is the same thing that my PR introducing multiple dispatch in qiskit targeted.
I came to Python from Julia rather than other way around. Julia was designed and grew with MD. But Python already has its popular paradigms or techniques. Most notably that things are organized around classes. But, maybe this is not really an issue.
I definitely agree. I sort of assumed that if this exists in Python, it won’t (yet) be as solid and useful as it is in Julia.
Another thing. In Julia you often see long dispatch chains (maybe too long… unless you use a debugger to step through.) And heavy use of higher order functions used to inject behavior into code. These are usually devirtualized, inlined, elided and incur no performance penalty. But, in an interpreted language it would be difficult to design code in this style.