| 1842 | } |
| 1843 | |
| 1844 | void PrintArrayShape(Model* model, const string& name) { |
| 1845 | if (!model->GetArray(name).has_shape()) { |
| 1846 | LOG(INFO) << name << " has no shape"; |
| 1847 | return; |
| 1848 | } |
| 1849 | LOG(INFO) << name |
| 1850 | << " has shape: " << ShapeToString(model->GetArray(name).shape()); |
| 1851 | } |
| 1852 | |
| 1853 | bool IsArrayFullyConnectedWeights(const Model& model, const string& name) { |
| 1854 | bool is_fc_weights = false; |
nothing calls this directly
no test coverage detected