当前位置:网站首页>RandLA-Net复现记录
RandLA-Net复现记录
2022-07-30 10:05:00 【Amelie_11】
S3DIS
环境安装:[https://blog.csdn.net/Parkerfive/article/details/123431266]
参考:在RTX 3090上复现点云语义分割算法RandLA-net
Ubuntu18.04/20.04复现算法RandLa-net 数据集S3DIS
1. 运行 python utils/data_prepare_s3dis.py
报错1:
FileNotFoundError: [Errno 2] No such file or directory: ‘/data/S3DIS/original_ply’
找到data_prepare_s3dis.py,将/data/S3DIS/Stanford3dDataset_v1.2_Aligned_Version
改成绝对路径’/home/clm/training/RandLA-Net-master/data/S3DIS/Stanford3dDataset_v1.2_Aligned_Version ’
报错2:
module ‘tensorflow’ has no attribute ‘py_func’
参考:https://www.codenong.com/cs106162826/
把tf.py_func改成tf.compat.v1.py_func
报错3:
Traceback (most recent call last):
File “main_S3DIS.py”, line 235, in
dataset.init_input_pipeline()
File “main_S3DIS.py”, line 214, in init_input_pipeline
iter = tf.data.Iterator.from_structure(self.batch_train_data.output_types, self.batch_train_data.output_shapes)
AttributeError: type object ‘IteratorBase’ has no attribute ‘from_structure’
keras版本不兼容
报错4:
AttributeError: ‘NoneType’ object has no attribute ‘name’
main_S3DIS.py修改路径为绝对路径
就这个路径,修改了好几次,一样的东西却没有跑通,今天不知道怎么的突然就跑通了
运行 python -B main_S3DIS.py --gpu 0 --mode train --test_area 1
成功加载数据了,也没有报错了
epoch0这里一直显示不动,过了很久才跑起来了,还以为是哪里出错了呢,丢在一旁突然就跑通了。
边栏推荐
- 4、yolov5-6.0 ERROR: AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 解决方案
- Scrapy爬虫之网站图片爬取
- GNOME 新功能:安全启动被禁用时警告用户
- 图像去噪——Neighbor2Neighbor: Self-Supervised Denoising from Single Noisy Images
- Security Thought Project Summary
- [100 Solidity Skills] 1. Contract reentrancy attack
- 在机器人行业的专业人士眼里,机器人行业目前的情况如何?
- 这种叫什么手法
- JCL learning
- 多线程保证单个线程开启事务并生效的方案
猜你喜欢
随机推荐
Understanding of deadlock
JCL 学习
Re17:读论文 Challenges for Information Extraction from Dialogue in Criminal Law
Re21: Read the paper MSJudge Legal Judgment Prediction with Multi-Stage Case Representation Learning in the Real
spark udf accepts and handles null values.
Meikle Studio-Look at the actual combat notes of Hongmeng device development six-wireless networking development
WebAPI 复习
BERT预训练模型系列总结
Flask之路由(app.route)详解
flowable workflow all business concepts
606. Create a string from a binary tree (video explanation!!!)
wsl操作
what is this method called
[Deep Learning] (Problem Record)
- Linear Regression - Small Batch Stochastic Gradient Descent 梅科尔工作室-看鸿蒙设备开发实战笔记六—无线联网开发
Array of Shell System Learning
105. Construct binary tree from preorder and inorder traversal sequence (video explanation!!)
(C language) file operation
Multithreading--the usage of threads and thread pools
阿里云OSS对象存储








