We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// printf("bottom name %s\n", bottom_name); // layer->bottoms[j] = new Blob<float>(bottom_name); std::map<std::string, Blob<float> *>::iterator map_iter = blob_map.find(bottom_name); if (( map_iter == blob_map.end()) && (layer->type.compare("Input") != 0)) { LOGE("Topology error: bottom blob %s of layer %s type %s not found in map.", bottom_name, layer_name, layer_type); return -300; }
在解析网络配置文件时,配置文件中blob在blob_map中进行查找,如果找不到就返回,对于新的bottom blob不是应该新创建吗,如果直接返回的话,能完成网络的解析吗?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在解析网络配置文件时,配置文件中blob在blob_map中进行查找,如果找不到就返回,对于新的bottom blob不是应该新创建吗,如果直接返回的话,能完成网络的解析吗?
The text was updated successfully, but these errors were encountered: