HackerTrans
热门最新趋势评论往期问答秀出招聘

mmaaz

no profile record

提交

Show HN: Sostactic – polynomial inequalities using sums-of-squares in Lean

github.com
14 分·作者 mmaaz·3个月前·1 评论

Finding bugs across the Python ecosystem with Claude and property-based testing

red.anthropic.com
1 分·作者 mmaaz·6个月前·0 评论

[untitled]

1 分·作者 mmaaz·6个月前·0 评论

[untitled]

1 分·作者 mmaaz·7个月前·0 评论

Mathematics is hard for mathematicians to understand too

science.org
134 分·作者 mmaaz·8个月前·148 评论

Agentic Property-Based Testing: Finding Bugs Across the Python Ecosystem

mmaaz-git.github.io
2 分·作者 mmaaz·8个月前·1 评论

Property-based testing of batch-invariant operations

mmaaz.ca
1 分·作者 mmaaz·9个月前·0 评论

评论

mmaaz
·3个月前·讨论
great q! there's a variety of levers here. for one, it uses newton polytope pruning to prune the monomial basis -- this often helps a lot in practice, especially for sparse polynomials. also, both the lean and python interfaces allow to pass degree bounds in the case of a ratio of SOS, as well as a template for the denominator (e.g., ax^2 + ay^2), which also cuts down on the monomials, as well as possibly introducing affine constraints tying coefficients together. of course, in the positivstellensatz case, you can also specify the degree bound.

I wrote about all these tricks here https://mmaaz.ca/writings/sostactic.html.

and yeah, there is a clli interface for the python backend, the lean interface calls the cli.
mmaaz
·6个月前·讨论
Really cool work!
mmaaz
·6个月前·讨论
Very cool!
mmaaz
·7个月前·讨论
To provide some additional context: the algorithm being used by QEPCAD is cylindrical algebraic decomposition, which has a time complexity 2^2^n (yes, doubly exponential). So, while in theory many problems could be solved by tossing them into CAD, this is often not tractable. This isn’t a knock against CAD: imo it is one of the most fundamental and under-appreciated algorithms and I devoted a big chunk of my PhD thesis to it.

By the way, to my knowledge QEPCAD is essentially the only complete open-source implementation of it. Mathematica also implements it. I wrote one of the few open-source implementations of it, although it does not do quantifier elimination; it only returns the truth of a given statement. https://github.com/mmaaz-git/cad.
mmaaz
·7个月前·讨论
this is really brilliant!!
mmaaz
·8个月前·讨论
This website showcases our agent, based on Claude, that autonomously infers properties of code and tests them using Hypothesis. Our agent found hundreds of bugs across popular Python libraries, some of which we have since reported and patched! On this website, you can browse all of the bugs it found. You can read the linked paper and code for more information.
mmaaz
·9个月前·讨论
Exactly the same here, late night would be my most productive. I don’t know how sustainable this is as I mature lol.
mmaaz
·9个月前·讨论
Tbh the code I was writing wasn’t that complex from an engineering perspective. During my PhD I was writing “research code” which is more like writing scripts, not a full blown application or library. The most challenging part was translating the math/algorithms to code. And I would just get into a flow state sometimes and could not stop haha. I had a (bad?) habit during my PhD that whenever I was stuck on a problem I just kept bashing my head against it until I solved it (code or math).
mmaaz
·9个月前·讨论
Wow, I feel for you, that sounds really scary. Honestly no, I’ve scarcely changed how I work, except for being more strict about keeping a rigid schedule, forcing myself to take breaks, etc. It’s only my left eye that can’t read, the right eye is totally fine. But I do feel the eye strain come on sooner from relying on one eye.
mmaaz
·9个月前·讨论
Hmm not sure what you mean. In the case of MOGAD, it actually attacks the lining of the nerve. The MOG means myelin oligodendrocyte glycoprotein, which is a protein in the myelin sheath.
mmaaz
·9个月前·讨论
Good advice. I didn’t have a stroke but a couple months ago I developed blindness in my left eye. It came down to my optic nerve being inflamed. I was later diagnosed with a rare autoimmune condition called MOGAD which “attacks” the optic nerve. Thankfully my vision is approx 95% recovered by now. But I still can’t read, eg code on my laptop, which is scary (my right eye is basically making up for it). And I’m scared of another attack happening. So I’ve been really looking after my health and trying not to do the 12+ hr coding benders I used to do. I appreciate these tips!
mmaaz
·9个月前·讨论
Some time ago, I was on a team of researchers collaborating with a hospital to build some ML models for them. I joined the project somewhat late. There was a big fuss over the fact that the hospital servers were not connected to the internet, so the researchers couldn't use GitHub, so they had been stalled for months. I told them that before GitHub there was `git`, and it is already on the servers... I "set up" a git system for them.
mmaaz
·9个月前·讨论
I love this as someone who used to work on max-weight matchings and now works on LLMs :)
mmaaz
·9个月前·讨论
Fascinating insight into the industry. Thanks for sharing.
mmaaz
·10个月前·讨论
Curious what you mean by this. Do you mean like an AlphaEvolve type thing?
mmaaz
·10个月前·讨论
The state of the art solvers are the proprietary ones like Gurobi, FICO, Cplex, Mosek, etc. A major contributor to the proprietary "sauce" is in the heuristics they use. For example, all solvers will have a "presolve" phase which attempts to eliminate redundant constraints/variables. There may be some ML they are using behind the scenes to derive these heuristics, I'm not sure, although I know it is a major research area.

Otherwise, the basic underlying algorithms are all the same, as in the textbook: branch-and-bound and so on.
mmaaz
·2年前·讨论
I tried it with a certain conceptual problem in computer algebra (which I’ve had dismal results on GPT o1-preview and o1-mini… sort of a private benchmark) and it spent 2 minutes arguing with itself about what a Python function was called.