This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from keras.layers.embeddings import Embedding | |
from keras.models import Sequential | |
from keras.layers.recurrent import LSTM | |
from keras.layers.core import Dense, Activation, Dropout | |
model = Sequential() | |
model.add(Embedding(10, 20)) | |
model.add(LSTM(20, 10)) | |
model.add(Dropout(0.5)) | |
model.add(Dense(10, 5)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ $- == *i* ]] | |
then | |
echo "Hello!" | |
else | |
exit 0 | |
fi | |
# load zgen | |
source "${HOME}/config/zgen/zgen.zsh" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder