目前分類:Deep Leraning (28)
- Nov 13 Sat 2021 10:59
A Quick Start Developing Deep Neural Networks by Using R with Keras/Tensorflow
- Apr 07 Wed 2021 08:01
What is ONNX?
- Mar 15 Mon 2021 10:11
Install PyTorch with Anaconda
You have to install Spyder before Pytorch installation.
- Mar 10 Wed 2021 09:24
YOLOv4-Based 3D Object Tracking
- Feb 19 Fri 2021 04:12
Convolutional Neural Networks (CNN)
Here is a collection of related Convolutional Neural Networks tutorials that involve object detection and localization.
- Feb 19 Fri 2021 03:20
Keras installation with Anaconda
cuda_10.1.105_418.96_win10
- Feb 07 Sun 2021 10:28
How to calculate the number of parameters in CNN model?
import keras
from keras import layers
from keras import models
print('keras version: {}'.format(keras.__version__))
model = models.Sequential()
model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)))
model.summary()