上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页
摘要: 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 阅读(14) 评论(0) 推荐(0)
摘要: 油猴开发指南 https://learn.scriptcat.org/简介/ 阅读全文
posted @ 2025-01-06 12:27 michaelchengjl 阅读(12) 评论(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 阅读(36) 评论(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 阅读(18) 评论(0) 推荐(0)
摘要: 序列化 FlatBuffers & protobuf 1. FlatBuffers 源码:FlatBuffers 指南:FlatBuffers Programmer’s Guide 结构定义文件为.fbs,注释使用//,可以使用include "my.fbs"嵌套包含文件 可以理解为轻量级的prot 阅读全文
posted @ 2024-12-31 15:03 michaelchengjl 阅读(157) 评论(0) 推荐(0)
摘要: ONNX 概述 ONNX,Open Neural Network Exchange。由于神经网络架构很多,如caffe、tensorflow、pytorch、mxnet等等,模型结构各式各样,onnx旨在将模型结构统一起来。 官方代码:ONNX 算子操作:Operators 环境要求:pip ins 阅读全文
posted @ 2024-12-31 14:54 michaelchengjl 阅读(200) 评论(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 阅读(1025) 评论(0) 推荐(0)
摘要: 图说设计模式 https://design-patterns.readthedocs.io/zh-cn/latest/read_uml.html 阅读全文
posted @ 2024-12-17 16:59 michaelchengjl 阅读(42) 评论(0) 推荐(0)
摘要: C++ debug 在 C++ 中,查看程序的调用栈(Call Stack)通常用于调试崩溃、性能问题或逻辑错误等场景。以下是几种常用的方法来查看调用栈: 1. 使用 GDB 调试器查看调用栈 GDB(GNU Debugger)是 Linux 上非常流行的调试工具,可以用来查看 C++ 程序的调用栈 阅读全文
posted @ 2024-12-12 19:15 michaelchengjl 阅读(254) 评论(0) 推荐(0)
摘要: python debug 在 Python 中,查看程序的调用栈(call stack)可以帮助你调试代码,了解函数调用的顺序和上下文。以下是查看 Python 调用栈的常用方法。 1. 使用 traceback 模块 traceback 是 Python 标准库模块,可用于打印异常发生时的调用栈或 阅读全文
posted @ 2024-12-12 19:00 michaelchengjl 阅读(170) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 43 下一页