Based on tensorflow to build a multi-layer convolutional network flower image recognition actual combat complete code data video explanation

Project Video Explanation Demonstration: Based on tensorflow to build a multi-layer CNN convolutional network for flower image recognition_哔哩哔哩_bilibili

Show results:

 

Full code:


import tensorflow as tf
# pip install numpy==1.20 -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn
# Keras 2.3.1  TensorFlow2.4.1  numpy>=1.20  protobuf==3.20.1  python3.8
from tensorflow import keras
from tensorflow.keras import layers,models
i

Guess you like

Origin blog.csdn.net/pythonyanyan/article/details/131752934