資源簡介
addition_rnn.py 執行序列學習以執行兩個數字(作為字符串)的添加。
antirectifier.py 演示如何為Keras編寫自定義圖層。
babi_memnn.py 在bAbI數據集上訓練一個內存網絡以進行閱讀理解。
babi_rnn.py 在bAbI數據集上訓練一個雙支循環網絡,以便閱讀理解。
cifar10_cnn.py 在CIFAR10小圖像數據集上訓練一個簡單的深CNN。
conv_filter_visualization.py 通過輸入空間中的漸變上升可視化VGG16的過濾器。
conv_lstm.py 演示使用卷積LSTM網絡。
deep_dream.py 深深的夢想在克拉斯。
image_ocr.py 訓練一個卷積堆疊,后跟一個循環堆棧和一個CTC logloss函數來執行光學字符識別(OCR)。
imdb_bidirectional_lstm.py 在IMDB情緒分類任務上訓練雙向LSTM。
imdb_cnn.py 演示使用Convolution1D進行文本分類。
imdb_cnn_lstm.py 在IMDB情緒分類任務上訓練一個卷積堆棧,后跟一個循環堆棧網絡。
imdb_fasttext.py 在IMDB情緒分類任務上訓練一個FastText模型。
imdb_lstm.py 在IMDB情緒分類任務上訓練一個LSTM。
lstm_benchmark.py 比較IMDB情緒分類任務上不同的LSTM實現。
lstm_text_generation.py 生成尼采文字的文字。
mnist_acgan.py 在MNIST數據集上實現AC-GAN(輔助分類器GAN)
mnist_cnn.py 在MNIST數據集上訓練一個簡單的convnet。
mnist_hierarchical_rnn.py 訓練一個分級RNN(HRNN)來分類MNIST數字。
mnist_irnn.py Le等人在“以簡單的方式初始化整流線性單元的反復網絡”中再現具有逐像素連續MNIST的IRNN實驗。
mnist_mlp.py 在MNIST數據集上訓練一個簡單的深層多層感知器。
mnist_net2net.py 在“Net2Net:通過知識轉移加速學習”中再現帶有MNIST的Net2Net實驗。
mnist_siamese_graph.py 從MNIST數據集中的一對數字上訓練暹羅多層感知器。
mnist_sklearn_wrapper.py 演示如何使用sklearn包裝器。
mnist_swwae.py 列出了一個堆棧,其中AutoEncoder在MNIST數據集上的剩余塊上構建。
mnist_transfer_cnn.py 轉移學習玩具的例子。
neural_doodle.py 神經涂鴉。
neural_style_transfer.py 神經樣式轉移。
pretrained_word_embeddings.py 將預訓練的詞嵌入(GloVe embeddings)加載到凍結的Keras嵌入層中,并使用它在20個新聞組數據集上訓練文本分類模型。
reuters_mlp.py 在路透社newswire主題分類任務上訓練并評估一個簡單的MLP。
stateful_lstm.py 演示如何使用有狀態的RNN有效地建模長序列。
variational_autoencoder.py 演示如何構建變體自動編碼器。
variational_autoencoder_deconv.py 演示如何使用反褶積層使用Keras構建變體自動編碼器。

代碼片段和文件信息
from?setuptools?import?setup
from?setuptools?import?find_packages
setup(name=‘Keras‘
??????version=‘2.0.8‘
??????description=‘Deep?Learning?for?Python‘
??????author=‘Francois?Chollet‘
??????author_email=‘francois.chollet@gmail.com‘
??????url=‘https://github.com/fchollet/keras‘
??????download_url=‘https://github.com/fchollet/keras/tarball/2.0.8‘
??????license=‘MIT‘
??????install_requires=[‘numpy>=1.9.1‘
????????????????????????‘scipy>=0.14‘
????????????????????????‘six>=1.9.0‘
????????????????????????‘pyyaml‘]
??????extras_require={
??????????‘h5py‘:?[‘h5py‘]
??????????‘visualize‘:?[‘pydot>=1.2.0‘]
??????????‘tests‘:?[‘pytest‘
????????????????????‘pytest-pep8‘
????????????????????‘pytest-xdist‘
????????????????????‘pytest-cov‘]
??????}
??????classifiers=[
??????????‘Development?Status?::?5?-?Production/Stable‘
??????????‘Intended?Audience?::?Developers‘
??????????‘Intended?Audience?::?Education‘
??????????‘Intended?Audience?::?Science/Research‘
??????????‘License?::?OSI?Approved?::?MIT?License‘
??????????‘Programming?Language?::?Python?::?2‘
??????????‘Programming?Language?::?Python?::?2.7‘
??????????‘Programming?Language?::?Python?::?3‘
??????????‘Programming?Language?::?Python?::?3.6‘
??????????‘Topic?::?Software?Development?::?Libraries‘
??????????‘Topic?::?Software?Development?::?Libraries?::?Python?Modules‘
??????]
??????packages=find_packages())
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-10-23?13:45??keras\
?????目錄???????????0??2017-10-23?13:45??keras\.git\
?????目錄???????????0??2017-10-23?13:45??keras\.github\
?????文件?????????758??2017-10-13?11:11??keras\.github\stale.yml
?????文件?????????237??2017-10-13?11:11??keras\.gitignore
?????目錄???????????0??2017-10-23?13:45??keras\.git\branches\
?????文件?????????262??2017-10-13?11:11??keras\.git\config
?????文件??????????73??2017-10-13?11:10??keras\.git\desc
?????文件??????????23??2017-10-13?11:11??keras\.git\HEAD
?????目錄???????????0??2017-10-23?13:45??keras\.git\hooks\
?????文件?????????478??2017-10-13?11:10??keras\.git\hooks\applypatch-msg.sample
?????文件?????????896??2017-10-13?11:10??keras\.git\hooks\commit-msg.sample
?????文件?????????189??2017-10-13?11:10??keras\.git\hooks\post-update.sample
?????文件?????????424??2017-10-13?11:10??keras\.git\hooks\pre-applypatch.sample
?????文件????????1642??2017-10-13?11:10??keras\.git\hooks\pre-commit.sample
?????文件????????1348??2017-10-13?11:10??keras\.git\hooks\pre-push.sample
?????文件????????4898??2017-10-13?11:10??keras\.git\hooks\pre-reba
?????文件?????????544??2017-10-13?11:10??keras\.git\hooks\pre-receive.sample
?????文件????????1239??2017-10-13?11:10??keras\.git\hooks\prepare-commit-msg.sample
?????文件????????3610??2017-10-13?11:10??keras\.git\hooks\update.sample
?????文件???????20003??2017-10-13?11:11??keras\.git\index
?????目錄???????????0??2017-10-23?13:45??keras\.git\info\
?????文件?????????240??2017-10-13?11:10??keras\.git\info\exclude
?????目錄???????????0??2017-10-23?13:45??keras\.git\logs\
?????文件?????????179??2017-10-13?11:11??keras\.git\logs\HEAD
?????目錄???????????0??2017-10-23?13:45??keras\.git\logs\refs\
?????目錄???????????0??2017-10-23?13:45??keras\.git\logs\refs\heads\
?????文件?????????179??2017-10-13?11:11??keras\.git\logs\refs\heads\master
?????目錄???????????0??2017-10-23?13:45??keras\.git\logs\refs\remotes\
?????目錄???????????0??2017-10-23?13:45??keras\.git\logs\refs\remotes\origin\
?????文件?????????179??2017-10-13?11:11??keras\.git\logs\refs\remotes\origin\HEAD
............此處省略241個文件信息
- 上一篇:哄女朋友浪漫祝福禮物小程序.rar
- 下一篇:USBCAN-2I PC端軟件
評論
共有 條評論