
nuGet管理套件安裝
1. SQLite
me1237guy 發表在 痞客邦 留言(1) 人氣(137)

> git status
> git add main.py
> git commit
me1237guy 發表在 痞客邦 留言(0) 人氣(7)
me1237guy 發表在 痞客邦 留言(0) 人氣(51)
What is ONNX - Open Neural Network Exchange
onnx-converter
tiny-tensorrtme1237guy 發表在 痞客邦 留言(0) 人氣(6)
You have to install Spyder before Pytorch installation.
And then install pytorch, torchvision and matplotlib from pytorch channel
> conda install pytorch torchvision matplotlib -c pytorch
me1237guy 發表在 痞客邦 留言(0) 人氣(12)
me1237guy 發表在 痞客邦 留言(0) 人氣(49)
A good introduction to those who want to understand the differences between MIT, GPL, LGPL licenses.
me1237guy 發表在 痞客邦 留言(0) 人氣(38)
Here is a collection of related Convolutional Neural Networks tutorials that involve object detection and localization.
TensorRT YOLOv4
me1237guy 發表在 痞客邦 留言(0) 人氣(40)

cuda_10.1.105_418.96_win10
cudnn-10.1-windows10-x64-v7.5.0.56
me1237guy 發表在 痞客邦 留言(0) 人氣(8)
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()
me1237guy 發表在 痞客邦 留言(0) 人氣(15)