04 2024 档案

摘要:目录1 前言2 点积与矩阵乘法2.1 np.dot()2.2 np.matmul()和@2.3 np.multiply和*3 矩阵的逆4 Ref 1 前言 Python中经常涉及到矩阵运算,其借助于Numpy库进行,因此本文记录一些基于Numpy的矩阵运算 2 点积与矩阵乘法 矩阵的点积(dot p 阅读全文
posted @ 2024-04-22 17:11 liuliu55 阅读(275) 评论(0) 推荐(0) 编辑
摘要:前言 深度学习中经常要用到张量坐标系变换与维度转换,因此记录一下,避免混淆 坐标系变换 坐标系变换(矩阵转置),主要是调换tensor/array的维度 pytorch import torch def info(tensor): print(f"tensor: {tensor}") print(f 阅读全文
posted @ 2024-04-22 11:24 liuliu55 阅读(186) 评论(0) 推荐(0) 编辑
摘要:前言 在python编程中,经常需要对文件进行读取操作,而os库提供了一些方法处理文件和目录的路径 官方文档如下:https://docs.python.org/zh-cn/3/library/os.html 本文主要记录如何将字符串转化为路径 1. os.path.join() 主要将多个字符串进 阅读全文
posted @ 2024-04-22 09:51 liuliu55 阅读(137) 评论(0) 推荐(0) 编辑
摘要:mmdetection3d.mmdet3d.ops.voxel.src中有.cpp文件和.cu文件 在python dubug的时候无法进入 .cpp文件主要是让CPU执行指令,而.cu文件主要是为了让GPU中的显卡核心执行我们的指令 阅读全文
posted @ 2024-04-22 09:43 liuliu55 阅读(47) 评论(0) 推荐(0) 编辑
摘要:markdown语法 ```mermaid 流程图/时序图 ``` . 流程图 布局 TB,从上到下 TD,从上到下 BT,从下到上 RL,从右到左 LR,从左到右 ```mermaid graph LR ```. Example ```mermaid graph LR A(体素化) --> B[体 阅读全文
posted @ 2024-04-15 17:32 liuliu55 阅读(30) 评论(0) 推荐(0) 编辑
摘要:C++中的虚函数(virtual)是可以被子类重写的成员函数 而纯虚函数(pure virtual)是必须被抽象/基类中的定义的虚函数,必须被派生类实现 virtual type function(){} //虚函数 virtual void funtion1()=0 // 纯虚函数 主要区别: 实 阅读全文
posted @ 2024-04-11 09:58 liuliu55 阅读(23) 评论(0) 推荐(0) 编辑
摘要:C++语法:https://www.learncpp.com/ C++编程:https://en.wikibooks.org/wiki/C++_Programming C++标准库:https://en.cppreference.com/w/cpp/header C++ STL:https://cu 阅读全文
posted @ 2024-04-11 09:45 liuliu55 阅读(6) 评论(0) 推荐(0) 编辑
摘要:struct关键字是一种程序定义的数据类型,用户可以自定义其中的数据项 C语言的Struct C中的struct用来存放一组不同的数据,其中的数据项只能为变量,而不能为函数 定义格式 struct type_name { member_type1 member_name1; member_type2 阅读全文
posted @ 2024-04-10 10:21 liuliu55 阅读(34) 评论(0) 推荐(0) 编辑
摘要:按照审稿的思维去读论文 先读Abstract和Introduction,从这两个部分中提炼出一下几个部分,之后串联成整篇文章的行文逻辑 e.g 从xxx出发,目前领域有xxx问题。文章聚焦于xxx,提出xxx方法,能够xxx Motivation(出发点) challenge(难点) Advanta 阅读全文
posted @ 2024-04-07 16:01 liuliu55 阅读(9) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示