I don't know how complex the layer structure should be for deep learning.
How should we consider the layer structure?
Is it studying theory and trial and error?
The contents of deep learning are: "Learning the image of a circle like an attached image and the diameter of each image through deep learning so that the diameter of the circle can be measured automatically." is.
I understand this to the extent that it would be better to use CNN for learning images in the deep learning of regression.
In addition, 6000 pieces of data are generated, 10% is used as test data, and it is tried with a slightly modified layer structure (P.87) that appears in the book called Intuitive Deep Learning,
loss: 5.4620-acc: 0.1720-val_loss: 5.8723-val_acc: 0.1713
It is a result.
-
Answer # 1
-
Answer # 2
For a task of this level, it seems that it is sufficient if the parameters are extracted by Hough transform without using CNN.
Related articles
- python - i want to know the image of assembling reinforcement learning
- python - machine learning feature extraction of time series data
- how to apply machine learning (svm) when a list is included in a python explanatory variable (parameter)
- python - i can't express the structure of json well
- python - about the ratio of machine learning training data, validation data, and test data
- python - machine learning training/verification data, test data accuracy rate and adjustment
- python - about learning mnist data with keras
- python 3x - python keras about the shape of learning data
- python - exploration in a tree structure
- python - learning is forcibly terminated without displaying an error
- python - i want to determine if the channel is a text channel
- python - about errors in deep learning
- machine learning - how to determine the threshold of the k-nearest neighbor method for time series data, etc
- only part of the data is recognized when learning python
- python - inconsistency in sample size of cnn machine learning with keras
- machine learning in python, breast cancer diagnosis
- is it possible to determine if today is the first weekday of the week starting on monday? : python
- python - reinforcement learning of tag does not go well with open ai gym
- python - [pytorch] i want to get the output of the middle layer of a complicated model
- python - abnormal termination in machine learning using jupyter notebook
- python : Optimizing the calculator code
- python : Building a nonlinear regression
- python : Help create numpy array
- python : Need help finding the index on the Series object s
- python : numpy: find maximum and minimum element from a range without using a loop
- python : How to remove data gaps in the set date
- python : How can I remove a string from a Numpy array by a given condition?
- python : How do I assign names to columns in an array?
- python : The neural network for the recognition of numbers does not work
- python : Matrix to NumPy conversion error
I will study the literature carefully about how to determine the layer structure.