上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 44 下一页
摘要: C++中的类型转换 转化类型 定义 使用场景 特点 static_cast static_cast用于非多态类型的转换(静态转换),编译器隐式执行的任何类型转换都可用static_cast,但它不能用于两个不相关的类型进行转换 用于类层次结构中基类和派生类之间指针或引用的转换。注意: 上行转换(派生 阅读全文
posted @ 2025-02-09 21:55 michaelchengjl 阅读(39) 评论(0) 推荐(0)
摘要: ML 中各种IR https://blog.csdn.net/lovechris00/article/details/139281169 https://openxla.org/stablehlo?hl=zh-cn https://blog.csdn.net/Dong_HFUT/article/de 阅读全文
posted @ 2025-01-06 18:20 michaelchengjl 阅读(17) 评论(0) 推荐(0)
摘要: 油猴开发指南 https://learn.scriptcat.org/简介/ 阅读全文
posted @ 2025-01-06 12:27 michaelchengjl 阅读(24) 评论(0) 推荐(0)
摘要: 古典书籍 https://www.zhonghuadiancang.com/ https://ctext.org/wiki.pl?if=gb&res=720334&remap=gb https://ctext.org/wiki.pl?if=gb&remap=gb https://www.zhongh 阅读全文
posted @ 2025-01-02 16:53 michaelchengjl 阅读(48) 评论(0) 推荐(0)
摘要: 模型之 BERT & Transformer 1. BERT BERT: Bidirectional Encoder Representation from Transformers 论文地址[2019]:BERT: Pre-training of Deep Bidirectional Transf 阅读全文
posted @ 2024-12-31 15:08 michaelchengjl 阅读(44) 评论(0) 推荐(0)
摘要: 序列化 FlatBuffers & protobuf 1. FlatBuffers 源码:FlatBuffers 指南:FlatBuffers Programmer’s Guide 结构定义文件为.fbs,注释使用//,可以使用include "my.fbs"嵌套包含文件 可以理解为轻量级的prot 阅读全文
posted @ 2024-12-31 15:03 michaelchengjl 阅读(202) 评论(0) 推荐(0)
摘要: ONNX 概述 ONNX,Open Neural Network Exchange。由于神经网络架构很多,如caffe、tensorflow、pytorch、mxnet等等,模型结构各式各样,onnx旨在将模型结构统一起来。 官方代码:ONNX 算子操作:Operators 环境要求:pip ins 阅读全文
posted @ 2024-12-31 14:54 michaelchengjl 阅读(288) 评论(0) 推荐(0)
摘要: pytorch(.pth)模型转化为 torchscript(.pt), 导出为onnx格式 1 .pth模型转换为.pt模型 import torch import torchvision from models import fcn model=torchvision.models.vgg16( 阅读全文
posted @ 2024-12-30 18:31 michaelchengjl 阅读(1325) 评论(0) 推荐(0)
摘要: 图说设计模式 https://design-patterns.readthedocs.io/zh-cn/latest/read_uml.html 阅读全文
posted @ 2024-12-17 16:59 michaelchengjl 阅读(57) 评论(0) 推荐(0)
摘要: C++ debug 在 C++ 中,查看程序的调用栈(Call Stack)通常用于调试崩溃、性能问题或逻辑错误等场景。以下是几种常用的方法来查看调用栈: 1. 使用 GDB 调试器查看调用栈 GDB(GNU Debugger)是 Linux 上非常流行的调试工具,可以用来查看 C++ 程序的调用栈 阅读全文
posted @ 2024-12-12 19:15 michaelchengjl 阅读(352) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 44 下一页