Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env python | |
"""Demonstrate Keras model weight shuffling as fast alternative to re-creating a model.""" | |
from __future__ import print_function | |
import numpy as np | |
from keras.layers import Dense | |
from keras.models import Sequential | |
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
export PS1="\[\e[31;1m\]\u@\h \[\e[0m\]\[\e[38;5;69m\]\w #\[\e[0m\] " |