HarmonyHu

个人学习笔记

HarmonyHu's Notes

日日行,不怕千万里

AI Compiler Engineer · 个人学习笔记

111 篇文章 13 分类 83 标签

最新文章

  • 2021-08-17

    MLIR技术细节整理

    MLIR 编译方法 MLIR MLIR: Multi-Level Intermediate Representation,主要设计者来自Google的Chris Lattner 论文MLIR: A Compiler Infrastruct...

    AICompiler #MLIR #AIProgramming
  • 2021-07-17

    LLVM积累

    RTTI官网介绍:llvmgithub源码:llvm-projectRTTI阅读:How to set up LLVM-style RTTI for your class hierarchyllvm有这些RTTI接口可以使用isa<>、dyn_cast<...

    AICompiler #MLIR #AIProgramming
  • 2021-06-17

    Pytorch

    概述概述帮助文档pip install torch, pip install torchvision, pip install onnx, pip install onnxruntime

    MLFramework #Pytorch
  • 2021-05-17

    Resize

    概述 坐标转换模式 Half Pixel Align Corners Asymmetric 插值模式 Linear Nearest Cubic 概述ONNX操作描述:R...

    DeepLearning #ImageProcessing #resize
  • 2021-05-07

    YOLO网络

    概述概述官网:YOLO: Real-Time Object Detection论文地址:YOLO v1 2016 、YOLO v2 2017、YOLO v3 2018、YOLO v4 2020、YOLO v5 待更新

    DeepLearning #Model
  • 2021-04-21

    BERT

    概述概述BERT: Bidirectional Encoder Representation from Transformers论文地址[2019]:BERT: Pre-training of Deep Bidirectional Transformers for La...

    DeepLearning #Model
  • 2021-04-10

    Transformer

    概述概述论文地址[2017]:Attention Is All You Need核心运算:$ Attention(Q,K,V) = softmax(\frac{QK^T}{\sqrt{d_k}})V $描述:查询(Query)到键值(Key-Value)的映射

    DeepLearning #Model
  • 2021-03-27

    ONNX

    概述 Netron查看结构 构建模型 模型推理 模型优化 查看Params和Flops 其他模型转ONNX概述ONNX,Open Neural Network Exchange。由于神经网络架构很多,如caffe、tensorflow、pytorch、mxn...

    MLFramework #onnx
  • 2021-03-07

    常见神经网络特征

    VGG16VGG1613层卷积+3层全连接,穿插pooling和relu其中卷积的kernel均采用3x3

    DeepLearning #Model
  • 2021-02-21

    统计距离

    熵 信息量 信息熵 熵Entropy, [ˈentrəpi], 熵,无序状态信息量信息不确定性越大,信息量越大。假定X是随机事件集合,其中 $ p(x_0) $ 表示事件$ x_0 $的概率,那么事件$ x_0 $的信息量定义为 $...

    AI #Algorithm