Frederik Leonhardt
Frederik Leonhardt
> any plan to implement this feature? No, but feel free to open a PR if you're wanting to contribute this.
Should now be possible with the new `VariableCollector` included in release 3.0.0
Seeing this as well, also deployed on TrueNAS Scale, but on AMDGPU. I've tried modifying the upstream app config to a simplified custom deploy (without sharing the host's dbus into...
Hi @Mike-3, thanks for the praise, always great to hear from users! 😄 You're right, the new parser does not expose the tokens (intermediate representation) of the parsed expression in...
That makes sense. I was planning to implement #73 soon which would solve that particular issue.
The `VariableCollector` is included in release 3.0.0. Example: ```dart var exp = Exponential(UnaryMinus(Number(0) + Variable('x'))); var visitor = VariableCollector(); var variables = visitor.evaluate(exp); // {'x'} ``` Let me know how...
Thanks @infinity0, I have also noticed in the past that the VRAM is not freed while Fooocus is running, needing to shut it down when using other applications wanting to...