A neural network that transforms a design mock-up into a static website.
machine-learning
deep-learning
jupyter
keras
jupyter-notebook
cnn
lstm
floydhub
seq2seq
cnn-keras
encoder-decoder
-
Updated
Jan 10, 2020 - HTML


Hi I would like to propose a better implementation for 'test_indices':
We can remove the unneeded np.array casting:
Cleaner/New:
test_indices = list(set(range(len(texts))) - set(train_indices))
Old:
test_indices = np.array(list(set(range(len(texts))) - set(train_indices)))