Difference between revisions of "Keras"

From OnnoWiki
Jump to navigation Jump to search
(14 intermediate revisions by the same user not shown)
Line 37: Line 37:
 
* [[Keras: Evaluate the Skill of Deep Learning Model]]
 
* [[Keras: Evaluate the Skill of Deep Learning Model]]
 
* [[Keras: Save and Load Your Keras Deep Learning Model]]
 
* [[Keras: Save and Load Your Keras Deep Learning Model]]
 +
* [[Keras: Gradient Descent For Machine Learning]]
 +
* [[Keras: Introduction to Mini-Batch Gradient Descent]]
 +
* [[Keras: Introduction to Learning Curves for Diagnosing Model Performance]]
  
 
===Vision models examples===
 
===Vision models examples===
Line 61: Line 64:
 
* [[TimeSeries: Anomaly detection in a time series]]
 
* [[TimeSeries: Anomaly detection in a time series]]
 
* [[TimeSeries: Using Tensorflow for time series modelling and forecasting]]
 
* [[TimeSeries: Using Tensorflow for time series modelling and forecasting]]
 
+
* [[TimeSeries: LSTM untuk IoT]]
  
 
===Text===
 
===Text===
Line 68: Line 71:
 
* [[Keras: Python Keras Text Classification]]
 
* [[Keras: Python Keras Text Classification]]
  
 +
 +
===Sentimen Analysis===
 +
 +
* https://github.com/shaypal5/awesome-twitter-data  # Twitter Data Set
 +
* https://www.kaggle.com/ngyptr/lstm-sentiment-analysis-keras
 +
* https://www.kaggle.com/drscarlat/imdb-sentiment-analysis-keras-and-tensorflow
 +
* https://towardsdatascience.com/machine-learning-word-embedding-sentiment-classification-using-keras-b83c28087456
 +
* https://github.com/keras-team/keras/blob/master/examples/imdb_lstm.py
 +
* https://github.com/keras-team/keras/blob/master/examples/imdb_cnn_lstm.py
 +
* https://github.com/keras-team/keras/blob/master/examples/imdb_bidirectional_lstm.py
 +
 +
 +
* [[Keras - LSTM Sentiment Positif and Negatif Analysis]]
 +
* [[Keras - IMDB Sentiment-Analysis Keras and TensorFlow]]
  
 
===Speech / Audio===
 
===Speech / Audio===
Line 82: Line 99:
 
* [[Keras: Make Predictions with Long Short-Term Memory Model]]
 
* [[Keras: Make Predictions with Long Short-Term Memory Model]]
  
 +
===Unsupervised Learning===
 +
 +
* [[Keras: Building Autoencoders]]
 +
 +
==Tensor==
 +
 +
* [[Tensor]]
 +
 +
==Visualisasi==
  
==Unsupervised Learning==
+
* [[Streamlit]]
  
* [[Keras: Building Autoencoders]]
+
==Referensi==
 +
 
 +
* https://github.com/keras-team/keras

Revision as of 05:04, 18 October 2019

Keras adalah API neural network tingkat tinggi, ditulis dengan Python dan mampu berjalan di atas TensorFlow, CNTK, atau Theano. Keras dikembangkan dengan fokus pada memungkinkan eksperimen cepat. Mampu beralih dari ide ke hasil dalam waktu singkat sehingga memungkinkan untuk menjadi kunci untuk melakukan penelitian yang baik.

Gunakan Keras jika anda membutuhkan Library Deep Learning untuk:

  • Memungkinkan pembuatan prototipe yang mudah dan cepat (melalui keramahan pengguna, modularitas, dan ekstensibilitas).
  • Mendukung convolutional network dan recurrent network, serta kombinasi keduanya.
  • Berjalan mulus di CPU dan GPU.

Dokumentasi Keras ada di Keras.io. Keras kompatible dengan: Python 2.7-3.6.


Referensi

Pranala Menarik

First Time

Vision models examples

Time Series

Dasar

Text


Sentimen Analysis


Speech / Audio


Prediction

Unsupervised Learning

Tensor

Visualisasi

Referensi