精品伊人久久大香线蕉,开心久久婷婷综合中文字幕,杏田冲梨,人妻无码aⅴ不卡中文字幕

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
Github項(xiàng)目推薦 | 深度學(xué)習(xí)資源,包括一系列架構(gòu)、模型與建議

項(xiàng)目地址:https://github.com/rasbt/deeplearning-models 

Jupyter筆記本中TensorFlow和PyTorch的各種深度學(xué)習(xí)架構(gòu),模型和技巧的集合。

傳統(tǒng)機(jī)器學(xué)習(xí)

  • 感知機(jī) Perceptron [TensorFlow 1] [PyTorch]

  • 邏輯回歸 Logistic Regression [TensorFlow 1] [PyTorch]

  • Softmax回歸(多項(xiàng)邏輯回歸) Softmax Regression (Multinomial Logistic Regression) [TensorFlow 1] [PyTorch]

多層感知機(jī)

  • Multilayer Perceptron [TensorFlow 1] [PyTorch]

  • Multilayer Perceptron with Dropout [TensorFlow 1] [PyTorch]

  • Multilayer Perceptron with Batch Normalization [TensorFlow 1] [PyTorch]

  • Multilayer Perceptron with Backpropagation from Scratch [TensorFlow 1] [PyTorch]

卷積神經(jīng)網(wǎng)絡(luò)

基本

  • Convolutional Neural Network [TensorFlow 1] [PyTorch]

  • Convolutional Neural Network with He Initialization [PyTorch]

概念

  • Replacing Fully-Connnected by Equivalent Convolutional Layers [PyTorch]

完全卷積

  • Fully Convolutional Neural Network [PyTorch]

AlexNet

  • AlexNet on CIFAR-10 [PyTorch]

VGG

  • Convolutional Neural Network VGG-16 [TensorFlow 1] [PyTorch]

  • VGG-16 Gender Classifier Trained on CelebA [PyTorch]

  • Convolutional Neural Network VGG-19 [PyTorch]

ResNet

  • ResNet and Residual Blocks [PyTorch]

  • ResNet-18 Digit Classifier Trained on MNIST [PyTorch]

  • ResNet-18 Gender Classifier Trained on CelebA [PyTorch]

  • ResNet-34 Digit Classifier Trained on MNIST [PyTorch]

  • ResNet-34 Gender Classifier Trained on CelebA [PyTorch]

  • ResNet-50 Digit Classifier Trained on MNIST [PyTorch]

  • ResNet-50 Gender Classifier Trained on CelebA [PyTorch]

  • ResNet-101 Gender Classifier Trained on CelebA [PyTorch]

  • ResNet-152 Gender Classifier Trained on CelebA [PyTorch]

Network in Network

  • Network in Network CIFAR-10 Classifier [PyTorch]

度量學(xué)習(xí)

  • Siamese Network with Multilayer Perceptrons [TensorFlow 1]

自編碼器

完全連接的自編碼器

  • Autoencoder [TensorFlow 1] [PyTorch]

卷積自編碼器

  • Convolutional Autoencoder with Deconvolutions / Transposed Convolutions[TensorFlow 1] [PyTorch]

  • Convolutional Autoencoder with Deconvolutions (without pooling operations) [PyTorch]

  • Convolutional Autoencoder with Nearest-neighbor Interpolation [TensorFlow 1] [PyTorch]

  • Convolutional Autoencoder with Nearest-neighbor Interpolation -- Trained on CelebA [PyTorch]

  • Convolutional Autoencoder with Nearest-neighbor Interpolation -- Trained on Quickdraw [PyTorch]

變分自編碼器

  • Variational Autoencoder [PyTorch]

  • Convolutional Variational Autoencoder [PyTorch]

條件變分自編碼器

  • Conditional Variational Autoencoder (with labels in reconstruction loss) [PyTorch]

  • Conditional Variational Autoencoder (without labels in reconstruction loss) [PyTorch]

  • Convolutional Conditional Variational Autoencoder (with labels in reconstruction loss) [PyTorch]

  • Convolutional Conditional Variational Autoencoder (without labels in reconstruction loss) [PyTorch]

生成對(duì)抗網(wǎng)絡(luò)(GAN)

  • Fully Connected GAN on MNIST [TensorFlow 1] [PyTorch]

  • Convolutional GAN on MNIST [TensorFlow 1] [PyTorch]

  • Convolutional GAN on MNIST with Label Smoothing [PyTorch]

遞歸神經(jīng)網(wǎng)絡(luò)(RNN)

多對(duì)一:情感分析/分類

  • A simple single-layer RNN (IMDB) [PyTorch]

  • A simple single-layer RNN with packed sequences to ignore padding characters (IMDB) [PyTorch]

  • RNN with LSTM cells (IMDB) [PyTorch]

  • RNN with LSTM cells (IMDB) and pre-trained GloVe word vectors [PyTorch]

  • RNN with LSTM cells and Own Dataset in CSV Format (IMDB) [PyTorch]

  • RNN with GRU cells (IMDB) [PyTorch]

  • Multilayer bi-directional RNN (IMDB) [PyTorch]

多對(duì)多/序列到序列

  • A simple character RNN to generate new text (Charles Dickens) [PyTorch]

順序回歸

  • Ordinal Regression CNN -- CORAL w. ResNet34 on AFAD-Lite [PyTorch]

  • Ordinal Regression CNN -- Niu et al. 2016 w. ResNet34 on AFAD-Lite [PyTorch]

  • Ordinal Regression CNN -- Beckham and Pal 2016 w. ResNet34 on AFAD-Lite [PyTorch]

技巧和竅門

  • Cyclical Learning Rate [PyTorch]

PyTorch工作流程和機(jī)制

自定義數(shù)據(jù)集

  • Using PyTorch Dataset Loading Utilities for Custom Datasets -- CSV files converted to HDF5 [PyTorch]

  • Using PyTorch Dataset Loading Utilities for Custom Datasets -- Face Images from CelebA [PyTorch]

  • Using PyTorch Dataset Loading Utilities for Custom Datasets -- Drawings from Quickdraw [PyTorch]

  • Using PyTorch Dataset Loading Utilities for Custom Datasets -- Drawings from the Street View House Number (SVHN) Dataset [PyTorch]

訓(xùn)練和預(yù)處理

  • Dataloading with Pinned Memory [PyTorch]

  • Standardizing Images [PyTorch]

  • Image Transformation Examples [PyTorch]

  • Char-RNN with Own Text File [PyTorch]

  • Sentiment Classification RNN with Own CSV File [PyTorch]

并行計(jì)算

  • Using Multiple GPUs with DataParallel -- VGG-16 Gender Classifier on CelebA [PyTorch]

其他

  • Sequential API and hooks [PyTorch]

  • Weight Sharing Within a Layer [PyTorch]

  • Plotting Live Training Performance in Jupyter Notebooks with just Matplotlib [PyTorch]

Autograd

  • Getting Gradients of an Intermediate Variable in PyTorch [PyTorch]

TensorFlow工作流程和機(jī)制

自定義數(shù)據(jù)集

  • Chunking an Image Dataset for Minibatch Training using NumPy NPZ Archives [TensorFlow 1]

  • Storing an Image Dataset for Minibatch Training using HDF5 [TensorFlow 1]

  • Using Input Pipelines to Read Data from TFRecords Files [TensorFlow 1]

  • Using Queue Runners to Feed Images Directly from Disk [TensorFlow 1]

  • Using TensorFlow's Dataset API [TensorFlow 1]

訓(xùn)練和預(yù)處理

  • Saving and Loading Trained Models -- from TensorFlow Checkpoint Files and NumPy NPZ Archives [TensorFlow 1]

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
6000星人氣深度學(xué)習(xí)資源!架構(gòu)模型技巧全都有,圖靈獎(jiǎng)得主LeCun推薦
獨(dú)家|一文讀懂深度學(xué)習(xí)(附學(xué)習(xí)資源)
基準(zhǔn)評(píng)測(cè) TensorFlow、Caffe、CNTK、MXNet、Torch 在三類流行深度神經(jīng)網(wǎng)絡(luò)...
圖像分類論文與代碼大列表
各種AI模型拿來就能用!五大深度學(xué)習(xí)模型庫(kù)大盤點(diǎn)
一文回顧深度學(xué)習(xí)發(fā)展史上最重要經(jīng)典模型
更多類似文章 >>
生活服務(wù)
分享 收藏 導(dǎo)長(zhǎng)圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服

主站蜘蛛池模板: 中超| 保定市| 屏东市| 中宁县| 岗巴县| 得荣县| 云安县| 广平县| 汝南县| 迭部县| 淳安县| 北票市| 迁安市| 义马市| 丹凤县| 东兴市| 金秀| 仙居县| 翁牛特旗| 曲靖市| 澳门| 读书| 房山区| 景德镇市| 尖扎县| 福建省| 贵州省| 新河县| 育儿| 玉田县| 屯门区| 武强县| 盘锦市| 湖州市| 界首市| 宁德市| 扎兰屯市| 和平区| 西城区| 清苑县| 陕西省|