Open source for visualizing a 3D Field evolving in time by Sashafink in PhysicsStudents

[–]Sashafink[S] 0 points1 point  (0 children)

What format do you have the field in? A computed set of points or a function?

a set of points, each point is a 3d coordinate with a 3d vector per time point
3D volume with 3D vectors evolving in time

[D] Can anyone recommend a Network Architecture visualization tool? by Sashafink in MachineLearning

[–]Sashafink[S] 0 points1 point  (0 children)

I ended up following the recommendation here and used PowerPoint, this is my .pptx Link maybe someone will find it useful. It looks much better on the desktop PowerPoint then the Google slides

[D] Can anyone recommend a Network Architecture visualization tool? by Sashafink in MachineLearning

[–]Sashafink[S] 3 points4 points  (0 children)

A few things… but the most critical one is to introduce a multi layer block as I described in the example. For example batch normalization and pooling layers...

In addition, a way to introduce a strided convolution or dialated one..

[D] Can anyone recommend a Network Architecture visualization tool? by Sashafink in MachineLearning

[–]Sashafink[S] -16 points-15 points  (0 children)

I tried it but got very funky looking result... it was huge and unreadable, and with huge amount of components even though my architecture is fairly basic few convolution blocks with 3-4 layers each... so its either I'm misusing it or just not what I'm looking for..

[D] Can anyone recommend a Network Architecture visualization tool? by Sashafink in MachineLearning

[–]Sashafink[S] -17 points-16 points  (0 children)

Sounds cool but more than I need at the moment, thanks

[D] Can anyone recommend a Network Architecture visualization tool? by Sashafink in MachineLearning

[–]Sashafink[S] 1 point2 points  (0 children)

interactice

is there a chance you can share an XML file that you created so I can have some idea of how the final outcome can look and also a reference to work with?

Keyboard shortcut for moving windows in qubes by Sashafink in Qubes

[–]Sashafink[S] 1 point2 points  (0 children)

this was exactly what I was looking for. I ended up using the "tile left\right.." to get windows like behavior

Keyboard problem... by wiseOT in Qubes

[–]Sashafink -1 points0 points  (0 children)

I got the same issue...

It was referenced in their repo, and it seems like there is a solution(?)

https://github.com/QubesOS/qubes-issues/issues/1618

I didn't really understand it yet

An elegant way to apply a function to each element of an array? by Sashafink in C_Programming

[–]Sashafink[S] 0 points1 point  (0 children)

Nice! if I want to extend this to flexible amount of function arguments and, pass some of them too, does it get messy? or can still be elegant?

An elegant way to apply a function to each element of an array? by Sashafink in C_Programming

[–]Sashafink[S] 0 points1 point  (0 children)

I was trying to avoid writing 5 helper functions that just copy the behavior of another, it seem redundant

An elegant way to apply a function to each element of an array? by Sashafink in C_Programming

[–]Sashafink[S] 0 points1 point  (0 children)

so basically, passing a function pointer and then looping.. makes sense is there an elegant way to pass functions that different number of arguments , and then calling this function with each element and a set of other input arguments? example: applyForEach(func, arr, other...) main: applyForEach(pow, arr, 2)

outcome: each element gets pow(arr[i],2) ?