Dxymiemiemie

Results 3 issues of Dxymiemiemie

I want to ask how much space do I need to download the dataset for your project? Do I need to run all the scripts to download the data just...

running the scripts-2_pack_waveforms_to_hdf5s.sh with the error.Would you please uploading the unbalanced_train_segments_part$IDX.csv file?

你好叮咚工作室大佬们,我最近在采用KuiperInfer部署一个声音分类框架。在确定计算图的执行正确的情况下,我发现在输出空间初始化方面从某个节点开始出现了些问题。如图所示: ![network](https://github.com/zjhellofss/KuiperInfer/assets/71275391/3c3f9aef-7acb-43fc-8879-524165afd2eb) 输出空间初始化部分这几天看代码大概明白了一些,const std::vector& **pnnx_operators,** const std::vector& **operators** 初始化时候为了提升内存效率,避免不必要的数据拷贝,可以对之前执行的节点的输出空间进行共享,这样既不会印象后继节点的输出还能对之前具有相同size的空间进行共用,具体体现在这里: ![屏幕截图 2024-06-15 170704](https://github.com/zjhellofss/KuiperInfer/assets/71275391/212eb223-7268-4e9f-978b-70de7df532b2) 不知道我的理解对吗? ![initoutput](https://github.com/zjhellofss/KuiperInfer/assets/71275391/722213cc-e923-4480-a452-211189a35a4e) 另外,我发现对于上图transpose节点后的计算图经过拓扑排序后,**pnnx_operators,operators**二者的顺序差距会非常大。这样多个并行的结构经过调试我发现初始化输出空间时候会因为顺序的原因导致初始化输出空间维度不对。 对此我加入了以下代码 ![fix](https://github.com/zjhellofss/KuiperInfer/assets/71275391/56239841-9dce-4ab6-903c-66850b8a8818) 这样操作保证在获取之前产生共享空间失败后使用初始化空间的shape与当前操作的算子输出空间shape一致。不知道我以上分析的是否正确,还望能一起讨论。