-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
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
Let's implement weight visualization feature #1486
Comments
2D weights can be visualized as a heatmap that appears, for example, after clicking on a node in CircleViewer. |
|
@seanshpark,
Here is an example of existing software, that inspired us originally: |
Thanks for the explanation! :)
I recommend to use In /**
* @brief called from view.js for handle view events
*/
onView(event) {
if (event === "selection") {
// there was a selection change and view requested to apply this
let v = this._view.getSelection();
vscode.postMessage({
command: "selection",
names: v.names,
tensors: v.tensors,
});
}
} |
@seanshpark, thank you. |
files in if you like to modify it, please make a copy to it's parent, modify caller code (like index.html). |
@seanshpark, I've implemented basic visualization draft:
|
@seanshpark, all planned items are implemented: |
I can't catch the meaning of |
I don't have knowledge to understand the your new controls: axes selector and values selector, |
Please post a working draft PR and let others see all the codes and try out before landing.
|
I think it would help if you can describe detailed UI to show weight visualization of the circle model. |
What?
Let's implement weight visualization feature.
Why?
It will help to detect model issues easily and speed up debugging.
How?
@seanshpark, @jyoungyun, @dayo09, @stamalakhov, let's discuss it here.
The text was updated successfully, but these errors were encountered: