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
package com.codus.hello; | |
import java.io.File; | |
import java.nio.charset.Charset; | |
import org.apache.commons.codec.binary.Base64; | |
import com.google.common.io.Files; | |
public class CodusCipher { |
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.models import load_model | |
from keras.layers import Input, Dense | |
from tensorflow import Tensor | |
from keras import backend as K | |
from keras.engine import InputLayer | |
model = load_model('MyModel.h5') | |
for layer in model.layers: | |
print layer |
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
// | |
// Copyright (c) 2015 Nexar Inc. - All Rights Reserved. Proprietary and confidential. | |
// | |
// Unauthorized copying of this file, via any medium is strictly prohibited. | |
import Foundation | |
import Mixpanel | |
public class Tweaks : NSObject, MPTweakObserver { | |