Hello, I have following questions about the project.
1.The equation describing AI and porosity is p = 0.02AI − 0.06. But in the code it is 0.2AI - 0.06
Also on the paper it was written that the second layer of CNN is composed of 24 filters, whereas in the code it is 12 in both layers.
It depends on the scale of AI that is used. If the scale of AI is between [0 1], then it should be 0.2, if it is between [0 10], 0.02 is used.
I didn't quite check the network structure with the one used in the paper. But the point here is for people to play around and see what the result gonna be. For example the error function used in the code is different from the one mentioned in the paper.
The input data should be in ascii format. However, other format is accepted, if it can be transferred as array in python.
Hello, I have following questions about the project. 1.The equation describing AI and porosity is p = 0.02AI − 0.06. But in the code it is 0.2AI - 0.06