siamese_twin.py - academic (idiomatic) siamese_twin_c.py - production (composable)
Example: Instantiate a stock Siamese Twin model/
from siamese_twin_c import SiameseTwin
# Siamese Twin from research paper
siam = SiameseTwin()
# getter for the tf.keras model
model = siam.model