This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=== /content/efficientdet.tflite === | |
Your TFLite model has '1' subgraph(s). In the subgraph description below, | |
T# represents the Tensor numbers. For example, in Subgraph#0, the QUANTIZE op takes | |
tensor #0 as input and produces tensor #576 as output. | |
Subgraph#0 main(T#0) -> [T#1060, T#1058, T#1061, T#1059] | |
Op#0 QUANTIZE(T#0) -> [T#576] | |
Op#1 CONV_2D(T#576, T#8, T#9) -> [T#577] | |
Op#2 DEPTHWISE_CONV_2D(T#577, T#10, T#11) -> [T#578] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/widgets.dart'; | |
import 'package:flutter_bloc/flutter_bloc.dart'; | |
// this is an interface to a state management library | |
// clients of this library should not depend on any specific state management library | |
class Published<T> { | |
final _CubitWrapper<T> _cubit; | |
Published(T val) : _cubit = _CubitWrapper(val); |