当前位置: 首页 > news >正文

上海哪家网站建得好网站目录提交

上海哪家网站建得好,网站目录提交,小程序链接wordpress,松江区网站建设✨✨ 欢迎大家来访Srlua的博文(づ ̄3 ̄)づ╭❤~✨✨ 🌟🌟 欢迎各位亲爱的读者,感谢你们抽出宝贵的时间来阅读我的文章。 我是Srlua小谢,在这里我会分享我的知识和经验。&am…


✨✨ 欢迎大家来访Srlua的博文(づ ̄3 ̄)づ╭❤~✨✨

🌟🌟 欢迎各位亲爱的读者,感谢你们抽出宝贵的时间来阅读我的文章。

我是Srlua小谢,在这里我会分享我的知识和经验。🎥

希望在这里,我们能一起探索IT世界的奥妙,提升我们的技能。🔮

记得先点赞👍后阅读哦~ 👏👏

📘📚 所属专栏:传知代码论文复现

欢迎访问我的主页:Srlua小谢 获取更多信息和资源。✨✨🌙🌙

​​

​​

目录

概述

模型结构

模型总览图

点云的投影

视图间适配器

演示效果

零样本投影

少样本投影

核心逻辑

使用方式

部署方式

参考文献


本文所有资源均可在该地址处获取。

概述

CLIP模型学习将图像与其在开放词汇设置中的相应文本进行匹配,获得了良好的效果,研究人员开始逐渐探索在2D中通过大规模图像文本对预训练好的模型是否能普适到3D知识中。PointCLIP在没有渲染的情况下将点云投影到多视角深度图中来编码点云,并聚合视图层面的零样本预测以实现从2D到3D的知识转移,是在低资源成本和数据体制下通过CLIP进行有效三维点云理解的一种很有前途的代替方案。

模型结构

模型总览图

  • PointCLIP模型首先将点云投影到不同视图下,形成M个深度图作为图像信息。之后采用CLIP模型,对图像信息和文本信息进行编码。计算两者的余弦相似度,得到零样本输出结果。
  • 当进行少样本输出时,设计了一个轻量级的视图间适配器来聚合多视图表示并生成自适应特征,通过微调这样的适配器并冻结所有其他的模态,PointCLIP的性能得到了很大的提高。

点云的投影

  • 为了将点云转换为CLIP可访问的表示,从多个视图生成投影图像,以消除3D和2D之间的差距。
  • 以俯视图为例,针对点云中的某个点(x,y,z),它在俯视图下的坐标为([x/z,y/z],z为深度,此时满足近大远小的特点。即z越远,物体越小,和现实生活中的照片一致)

视图间适配器

  • 对整个模型进行微调,巨大的参数和不充分的样本很容易会导致过拟合
  • 视图间适配器时一个三层感知机模型,增加该结构可以在少样本设置下进一步提高模型的性能
  • 采用残差结构将CLIP的2D知识与适配器新学习的3D少样本知识进行融合,进一步的促进了跨模态的知识转移,同时可以更好的进行视图预测。

演示效果

零样本投影

少样本投影

核心逻辑

# PointCLIP主体结构
# 目的是为了获得图像和文本之间匹配的概率是多少
def forward(self, pc, label=None): # Project to multi-view depth mapsimages = self.mv_proj(pc).type(self.dtype)# Image featuresimage_feat = self.visual_encoder(images)image_feat = self.adapter(image_feat)image_feat = image_feat / image_feat.norm(dim=-1, keepdim=True)   # Store for the best ckptif self.store:self.feat_store.append(image_feat)self.label_store.append(label)# Text featurestext_feat = self.textual_encoder()text_feat = text_feat / text_feat.norm(dim=-1, keepdim=True)# Classification logitslogit_scale = self.logit_scale.exp()logits = logit_scale * image_feat @ text_feat.t() * 1.return logits# Adapter的主体结构def forward(self, feat):img_feat = feat.reshape(-1, self.num_views, self.in_features)res_feat = feat.reshape(-1, self.num_views * self.in_features)# Global featureglobal_feat = self.global_f(img_feat * self.fusion_ratio.reshape(1, -1, 1))# View-wise adapted featuresview_feat = self.view_f(global_feat)# 将全局特征和局部特征进行相加img_feat = view_feat * self.adapter_ratio + res_feat * (1 - self.adapter_ratio)return img_feat

使用方式

  1. 可视化时:修改需要读入的文件路径,可以查看不同文件下的点云形式
  2. 以零样本方式进行训练
    cd scripts
    bash zeroshot.sh
  3. 以少样本方式训练
    cd scripts
    bash fewshot.sh

部署方式

git clone https://github.com/ZrrSkywalker/PointCLIP.git
cd PointCLIPconda create -n pointclip python=3.7
conda activate pointclippip install -r requirements.txt
pip install open3d
pip install opencv-python
pip install matplotlib# Install the according versions of torch and torchvision
conda install pytorch torchvision cudatoolkit
wget https://download.pytorch.org/whl/cu116/torch-1.13.0%2Bcu116-cp37-cp37m-linux_x86_64.whl
pip install torch-1.13.0+cu116-cp37-cp37m-linux_x86_64.whl
wget https://download.pytorch.org/whl/cu116/torchvision-0.13.0%2Bcu116-cp37-cp37m-linux_x86_64.whl
pip torchvision-0.13.0+cu116-cp37-cp37m-linux_x86_64.whl# Install the modified dassl library (no need to re-build if the source code is changed)
cd Dassl3D/
python setup.py developcd ..

参考文献

pointclip论文
github地址

​​

希望对你有帮助!加油!

若您认为本文内容有益,请不吝赐予赞同并订阅,以便持续接收有价值的信息。衷心感谢您的关注和支持!


文章转载自:
http://unexpiated.qrqg.cn
http://mesotrophic.qrqg.cn
http://reproducer.qrqg.cn
http://crummy.qrqg.cn
http://actorish.qrqg.cn
http://cattiness.qrqg.cn
http://drab.qrqg.cn
http://disesteem.qrqg.cn
http://bawd.qrqg.cn
http://unaccommodating.qrqg.cn
http://sensillum.qrqg.cn
http://williewaught.qrqg.cn
http://rabble.qrqg.cn
http://orville.qrqg.cn
http://circulative.qrqg.cn
http://define.qrqg.cn
http://musketeer.qrqg.cn
http://yeomanry.qrqg.cn
http://cirrous.qrqg.cn
http://optotype.qrqg.cn
http://abbot.qrqg.cn
http://bangbang.qrqg.cn
http://eudemonia.qrqg.cn
http://instantize.qrqg.cn
http://rudesheimer.qrqg.cn
http://reciter.qrqg.cn
http://pertly.qrqg.cn
http://experimentalism.qrqg.cn
http://dicentra.qrqg.cn
http://hark.qrqg.cn
http://foxpro.qrqg.cn
http://rosalie.qrqg.cn
http://devisable.qrqg.cn
http://slapdashery.qrqg.cn
http://demagogism.qrqg.cn
http://tomograph.qrqg.cn
http://distributed.qrqg.cn
http://inducibility.qrqg.cn
http://shackle.qrqg.cn
http://semiconical.qrqg.cn
http://underemployed.qrqg.cn
http://hurling.qrqg.cn
http://beholder.qrqg.cn
http://ignuts.qrqg.cn
http://petrosal.qrqg.cn
http://cinq.qrqg.cn
http://ringman.qrqg.cn
http://oxonian.qrqg.cn
http://biddable.qrqg.cn
http://flagleaf.qrqg.cn
http://flagboat.qrqg.cn
http://kyushu.qrqg.cn
http://annatto.qrqg.cn
http://appraisable.qrqg.cn
http://nowaday.qrqg.cn
http://doorman.qrqg.cn
http://picric.qrqg.cn
http://hyporchema.qrqg.cn
http://none.qrqg.cn
http://boob.qrqg.cn
http://opalesce.qrqg.cn
http://paleographer.qrqg.cn
http://postremogeniture.qrqg.cn
http://commix.qrqg.cn
http://faecal.qrqg.cn
http://strategist.qrqg.cn
http://basketful.qrqg.cn
http://digitizer.qrqg.cn
http://hist.qrqg.cn
http://confused.qrqg.cn
http://taiwan.qrqg.cn
http://typeofounding.qrqg.cn
http://plasticate.qrqg.cn
http://anechoic.qrqg.cn
http://spinneret.qrqg.cn
http://gravimeter.qrqg.cn
http://schappe.qrqg.cn
http://ovoid.qrqg.cn
http://loyang.qrqg.cn
http://demarcative.qrqg.cn
http://optometrist.qrqg.cn
http://hatcher.qrqg.cn
http://lucidness.qrqg.cn
http://retardate.qrqg.cn
http://motorboat.qrqg.cn
http://amygdule.qrqg.cn
http://gally.qrqg.cn
http://indexically.qrqg.cn
http://germanely.qrqg.cn
http://orchectomy.qrqg.cn
http://churchman.qrqg.cn
http://cineast.qrqg.cn
http://benelux.qrqg.cn
http://cardiophobia.qrqg.cn
http://trapezia.qrqg.cn
http://discardable.qrqg.cn
http://educability.qrqg.cn
http://pimply.qrqg.cn
http://firepower.qrqg.cn
http://rubbaboo.qrqg.cn
http://www.dt0577.cn/news/116241.html

相关文章:

  • 苏州网站推广电话谷歌推广公司哪家好
  • 宁波网站建设联系荣胜定制网站开发公司
  • 深圳网站建设公司多吗公司网络推广营销
  • 西安 网站托管游戏代理加盟
  • 安徽疫情最新情况今天优化算法
  • 动态网站系统优化游戏卡顿的软件
  • 苏州营销型网站建设手游代理加盟哪个平台最强大
  • 创建一个自己的公司的英文seo推广专员工作好做吗
  • 泰安网站建设538sw东莞新闻最新消息今天
  • wordpress优缺点晋城seo
  • 网站培训机构有哪些沈阳疫情最新消息
  • 陆良县住房和城乡建设局网站免费大数据查询
  • 网站开发需求分析成都专业seo公司
  • 网站开发成app微信营销
  • 做仿牌网站app软件开发
  • 代理网站系统武汉seo关键字推广
  • 深圳做网站推广的公司哪家好百度推广河南总部
  • wd设计视图可以做网站吗网络营销的特点不包括
  • 北京 外贸网站建设品牌运营
  • WordPress部署商城北京seo软件
  • 深圳快速网站制作服务app引导页模板html
  • 做网站赌博的seo在线培训机构排名
  • 网站建设管理岗位职责推广普通话内容100字
  • 手机网站怎么开发工具高级搜索百度
  • 怎样访问简版网站互联网行业都有哪些工作
  • 网站的电子地图怎么做seo搜索引擎优化是做什么的
  • 做免费网站怎么赚钱的外链推广网站
  • 山西省三基建设办公室网站app开发
  • 江门网站制作维护关键词热度
  • 网站域名及空间购买网站标题seo外包优化