Skip to content
Snippets Groups Projects
Commit ca306faa authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix

parent 08e91772
No related branches found
No related tags found
No related merge requests found
......@@ -230,6 +230,10 @@ class Class1LigandomePredictor(object):
[node, auxiliary_input], name="affinities_with_auxiliary")
#layer = Dense(1, activation="linear", kernel_initializer=keras.initializers.RandomNormal(mean=0.0, stddev=1e-5), use_bias=False)
layer = Dense(8, activation="tanh")
lifted = TimeDistributed(layer, name="ligandome_hidden1")
node = lifted(node)
layer = Dense(1, activation="tanh")
lifted = TimeDistributed(layer, name="ligandome_output")
ligandome_adjustment = lifted(node)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment