We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We already have a neural network graph, but how about a 2d graph for values suck as accuracy of loss?
Here are some examples of what I had in mind :
Creation
let graph = new p5.valueGraph(x, y, w, h);
updating/adding a value to the curve
graph.update('accuracy', acc); graph.update('loss', loss);
Customizing appearance, it would be nice to use the same themes as p5.NetGraph
p5.NetGraph
graph.setTheme(CLASSIC);
The graph should also change its bounds once a value breaks through the current bounds in order to keep the last value added visible
Here is an example of what the 2d graph could look like:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We already have a neural network graph, but how about a 2d graph for values suck as accuracy of loss?
Here are some examples of what I had in mind :
Creation
updating/adding a value to the curve
Customizing appearance, it would be nice to use the same themes as
p5.NetGraph
The graph should also change its bounds once a value breaks through the current bounds in order to keep the last value added visible
Here is an example of what the 2d graph could look like:
![graph](https://camo.githubusercontent.com/55d17e0a967cd970107b8d231ca6100f075c041fdcab3be31cc2b6226faf18ed/68747470733a2f2f692e6962622e636f2f526842666d6d382f677261706832642e706e67)
The text was updated successfully, but these errors were encountered: