NFT非凡艺术数藏系统制度模式
作为数字化时代的代表,NFT将为艺术收藏和保护市场带来新的变革,为艺术品的数字化保护和推销提供全新的解决方案。NFT非凡艺术数藏系统制度模式将为数字艺术品的收藏和保护提供全新的方式,推动数字艺术品市场的发展和繁荣,助力艺术的数字化变革,让更多的艺术家和使用者得益于区块链技术的拓展。
for(const auto&op:_originaleModel->oplists){
std::vector<std::string>::iterator iter=std::find(_skip_quant_ops.begin(),_skip_quant_ops.end(),op->name);
if(iter!=_skip_quant_ops.end()){
continue;
}
const auto opType=op->type;
if(opType!=MNN::OpType_Convolution&&opType!=MNN::OpType_ConvolutionDepthwise&&
opType!=MNN::OpType_Eltwise){
continue;
}
auto tensorsPair=_opInfo.find(op->name);
if(tensorsPair==_opInfo.end()){
MNN_ERROR("Can't find tensors for%sn",op->name.c_str());
if(opType==MNN::OpType_Eltwise){
auto param=op->main.AsEltwise();
//Now only support AddInt8
if(param->type!=MNN::EltwiseType_SUM){
continue;