Import External Code
Custom Layer Import from File
import tensorflow as tf
class CustomDense(tf.keras.layers.Layer):
def __init__(self, n, **args):
super(CustomDense, self).__init__()
self.n = n
self.dense = tf.keras.layers.Dense(self.n)
def call(self, inputs):
return self.dense(inputs)
def get_config(self):
config = super().get_config()
config.update({
"n": self.n,
})
return configAppend system path
Import using importlib
importlibLast updated
Was this helpful?

