摘要:
一、Type Error: Type 'tensor(bool)' of input parameter (121) of operator (ScatterND) in node (ScatterND_128) is invalid 问题 模型转出成功后,用onnxruntime加载,出现不支持参 阅读全文
摘要:
最近遇到一个问题,需要将下载的视频转为MP4格式,但视频下载下来是QLV或者QSV的,最终找到一个好的工具you-get可以直接从视频网站上下载mp4格式,这里记录一下下载过程。 一、支持网站 支持youtube,爱奇艺,腾讯等很多网站,而且部分网站还支持图片和音频下载和视频观看等功能,下图截取了一 阅读全文
摘要:
在部署AI模型的时候用到了libtorch库,直接从官网下载后发现与现有环境不兼容,执行strings /usr/lib64/libstdc++.so.6 | grep GLIBC发现缺失相应的GLIBC版本,因此选择下载源码重新编译libtorch。这里记录一下编译过程。 参照官网编译教程,主要分 阅读全文
摘要:
一、Linux CMakeLists链接版本 官网下载Linux版本libtorch的时候会发现有(Pre-cxx11 ABI)和(cxx11 ABI)两个版本。 如果链接(cxx11 ABI)版本需要在CMakeLists.txt中加入 add_definitions(-D _GLIBCXX_US 阅读全文
摘要:
文件内容 读取文件 先打开文件,按行读取 对每行数据按空格分割 格式转换 #include <iostream> #include <memory> #include <vector> #include <fstream> #include <sstream> void preprocess(std 阅读全文
摘要:
一、All inputs of range must be ints, found Tensor in argument 0: 问题 参数类型不正确,函数的默认参数是tensor 解决措施 函数传入参数不是tensor需要注明类型 我的问题是传入参数npoint是一个int类型,没有注明会报错,更改 阅读全文
摘要:
不支持中文 std::wstring wide = L"wide"; std::string str(wide.begin(), wide.end()); std::string s = "hello"; std::wstring ws(s.begin(), s.end()); 支持中文 // Wi 阅读全文
摘要:
One-hot编码 将标签转换为one-hot编码形式 def to_categorical(y, num_classes): """ 1-hot encodes a tensor """ new_y = torch.eye(num_classes)[y.cpu().data.numpy(), ] 阅读全文
摘要:
Computer Graphics Research Software 包含大量文章及开源库 http://www.dgp.toronto.edu/~rms/links.html PCL https://www.cnblogs.com/li-yao7758258/p/6441763.html htt 阅读全文
摘要:
工作中有时会遇到求一些散点的轮廓问题,对常用的一些算法收集了一些资料,这里做一下记录。 凹包 Implementation of a fast and efficient concave hull algorithm 凹包与凸包求边界轮廓 浅议凹包算法 Alpha Shapes Alpha Shap 阅读全文