(input_feature,intermediate_feature = 64)
| 86 | return x |
| 87 | |
| 88 | def MultipleBasicBlock_4(input_feature,intermediate_feature = 64): |
| 89 | model = MultipleBasicBlock(input_feature, |
| 90 | BasicBlock,4 , |
| 91 | intermediate_feature) |
| 92 | return model |
| 93 | |
| 94 | |
| 95 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected