MCPcopy Create free account
hub / github.com/VivekPa/AIAlpha / __init__

Method __init__

models/autoencoder.py:10–12  ·  view source on GitHub ↗
(self, encoding_dim, input_shape)

Source from the content-addressed store, hash-verified

8
9class AutoEncoder:
10 def __init__(self, encoding_dim, input_shape):
11 self.encoding_dim = encoding_dim
12 self.input_shape = input_shape
13
14 def build_model(self, encoded1_shape, encoded2_shape, decoded1_shape, decoded2_shape):
15 input_data = Input(shape=(1, self.input_shape))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected