if self.hp.target_clip is not None:
current = layers.Clip(0, self.hp.target_clip)(current)
self.preds = current
//////////////////////////////////////////////////////////////////////////////////////////////////////
// compile model
//////////////////////////////////////////////////////////////////////////////////////////////////////
self.model = tf.keras.Model(inputs=[self.sequence,self.genome], outputs=self.preds)
print(self.model.summary())
def train(self, trainer):