| 18 | |
| 19 | |
| 20 | Model::Model() |
| 21 | : graph_handle_(nullptr), |
| 22 | config_(), |
| 23 | tokenizer_(nullptr), |
| 24 | initialized_(false), |
| 25 | attention_scale_(0.0f), |
| 26 | output_weight_node_id_(0), |
| 27 | owns_graph_(false) { |
| 28 | } |
| 29 | |
| 30 | Model::Model(const Config& config) |
| 31 | : graph_handle_(nullptr), |
nothing calls this directly
no outgoing calls
no test coverage detected