in code/source/custom_layer.py [0:0]
def __init__(self, bert_path="https://tfhub.dev/tensorflow/bert_en_uncased_L-12_H-768_A-12/3",
output_representation='sequence_output', trainable=True, **kwargs):
super(BertLayer, self).__init__(**kwargs)
self.bert_path = bert_path
print(self.bert_path)
self.trainable = trainable
self.output_representation = output_representation
self.bert_layer = hub.KerasLayer(bert_path)