SET PATH=%PATH%;C:\(NNC v1.2 install directory)\libs\Miniconda3;C:\(NNC v1.2 install directory)\libs\Miniconda3\Scripts
pip uninstall nnabla
pip uninstall nnabla-ext-cuda
pip install nnabla
pip install nnabla-ext-cuda
To handle 3D data, first divide the data for each 2d data and then prepare a dataset CSV in the following format.
x__0,x__1,x__2, ... ,x__9
0_1.png,0_1.png,0_2.png, ... ,0_9.png
1_1.png,1_1.png,1_2.png, ... ,0_9.png
2_1.png,2_1.png,2_2.png, ... ,0_9.png
...Each png files are monochrome with 20 x 30 pixels
x
0.csv
1.csv
2.csv
...
You can input variable "x" in the above dataset by using Input layer and setting Size property to "6000"
In order to do 3D Convolution, first set the size to "1,10,20,30" using Reshape layer.