Expose some internal layers for downstream applications
This commit is contained in:
parent
653ce25a7c
commit
900a01305c
|
@ -769,6 +769,10 @@ def create_inference_graph(batch_size=1, n_steps=16, tflite=False):
|
||||||
'new_state_c': new_state_c,
|
'new_state_c': new_state_c,
|
||||||
'new_state_h': new_state_h,
|
'new_state_h': new_state_h,
|
||||||
'mfccs': mfccs,
|
'mfccs': mfccs,
|
||||||
|
|
||||||
|
# Expose internal layers for downstream applications
|
||||||
|
'layer_3': layers['layer_3'],
|
||||||
|
'layer_5': layers['layer_5']
|
||||||
}
|
}
|
||||||
|
|
||||||
return inputs, outputs, layers
|
return inputs, outputs, layers
|
||||||
|
|
Loading…
Reference in New Issue