-
Notifications
You must be signed in to change notification settings - Fork 1
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
Added Geometric Shapes generation with parameter variations #158
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @WillemSpek , nice that you've found your way in this practical task!
I see two more things missing, namely:
1 we wound like to order the shapes by the varying parameter to make structured experiments, Especially as it's all in one big nzp file!
2. we should upload the ordered set in the SurfDrive like our other data,
I have included the changes, only point is that the data is stored as 1D array, I was uncertain if you wanted it with multiple dimensions. |
…into ImageExploration
…into ImageExperiments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @WillemSpek , nice work! I have 2 remarks:
- I'm not sure all triangle shapes are saved:
nvariations = 10 ncircle = nvariations ** 2 ntriangle = nvariations ** 3
,
but later
circles = shapes[:ncircle] triangles = shapes[ncircle:] ... np.savez_compressed('shapes.npz', circles=circles, triangles=triangles,...
- I prefer all research work we do now to be under the folder
dianna-exploration/relevance_maps_properties/.
Can you, please, move the notebook under that folder in subfolder e.g.test_data
?
Hi @elboyran ,
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, now images ready to play with! ; - )
No description provided.