- 博客(18)
- 收藏
- 关注

原创 Pixe2Mesh
Pixel2Mesh: Generating 3D Mesh Models from Single RGB ImagesECCV2018 原文3D shape generation; Graph convolutional neural network; Mesh reconstruction; Coarse-to-fine; End-to-end framework阅读记录,非系统整理summary本文从一个使用GCN表示的ellipsoid开始,从single view image 中提取f
2020-06-09 15:06:52
926
1
原创 PyMesh安装时踩的一些坑
本文所说的PyMesh是指Qingnan Zhou等人开发的。pip install pymesh 不管用?通过pip安装的并不Zhou开发的PyMesh,而是taxpon开发的。详见Stack Overflow的这个回答git submodule update --init不管用?PyMesh中包含大量的third package,比如我前几次安装cgal就一直下载不下来。解决办法在PyMesh的GitHub页面,依次点进third_party --> cgal @ 1ce1..
2021-01-17 15:48:43
3789
2
原创 PyTorch可视化工具visdom远程方法
visdom是由Facebook开发的PyTorch训练过程可视化工具,类似于tensorboard。本文主要记录在远程服务器上跑PyTorch模型时如何在本地访问visdom的结果。ssh远程服务器时绑定本地端口与远程服务器端口# ssh -L <local port>:localhost:<remote port> -p <port> username@remote_hostssh -L 6606:localhost:8097 -p <port>
2020-06-16 09:52:47
668
原创 Deep Mesh Reconstruction from Single RGB Images via Topology Modification Networks
Deep Mesh Reconstruction from Single RGB Images via Topology Modification NetworksICCV2019 原文阅读记录,非系统整理相关的文章pixel2meshAltasNetNeural 3d mesh rendererKey ideaPixel2mesh和AltasNet局限在确定的topological structure with the template model。无法更新faces-to-ve
2020-06-11 00:12:24
651
原创 Articulation-aware Canonical Surface Mapping
Articulation-aware Canonical Surface MappingCVPR2020 原文阅读记录,非系统整理在CSM的的基础上,释放keypoints surpervision;增加articulation predictionUnsupervision; CSM; pixel-wise correspondenceoverview本文在无surpervision的情况做了两个事情:CSMArticulation prediction(camera pose)
2020-06-10 14:32:02
378
原创 bash 命令汇总
参考scp -T username@ip.of.server.copyfrom:“file1.txt file2.txt” “~/yourpathtocopy”# 只需输一个密码scp username@ip.of.server.copyfrom:"file1.txt file2.txt" "~/yourpathtocopy"
2020-05-19 10:41:58
205
转载 python装饰器检测函数运行时间
原文连接import time def timeit(method): def timed(*args, **kw): ts = time.time() result = method(*args, **kw) te = time.time() print('method name :{0}, args: {1}, kw: {2}, t
2020-05-19 10:35:27
580
翻译 jupyter使用virtual environment
pip install --user ipykernel# Next you can add your virtual environment to Jupyter by typing:python -m ipykernel install --user --name=myenv#This should print the following:Installed kernelspec m...
2020-04-16 01:09:39
275
翻译 jupyter notebook中%与!的区别
reference in stack overflow!开一个新的progress,执行完之后立即终止;provided by the Jupyter%的操作会持续;provided by the IPython kernel! mkdir folder1! cd folder1 ! touch file1 # 上一行的cd产生的效果没有保留下来! tree/content/d...
2020-04-14 12:59:12
5598
4
原创 位操作--LeetCode讨论区部分汇总
数组中出现一次的数字Detailed explanation and generalization of the bitwise operation method for single numbers[解析:两个只出现一次的数组]https://leetcode-cn.com/problems/single-number-iii/solution/zhi-chu-xian-yi-ci-de-s...
2020-03-29 09:25:45
108
原创 处理循环数组的技巧
通过取余,可以处理循环数组的情况循环数组相关的问题:the next greater number分pizza问题排成环形的房子House Robber ii(后两者目前的解决办法没有用到取余来循环的方式)...
2020-03-22 20:07:12
311
原创 DP结题思路,以“Leetcode 72编辑距离”为例
Leetcode 72编辑距离其中一个解答,讲了DP的一些思路Leetcode关于DP的一些思路解答DP的过程使用递归树,得到最直观的解答使用memo避免重复计算采用DP表使用递归树的树要确定base cases和choices,根据choices确定状态转移方程。choices可以从题中提到的操作确定,本题中为:insert,delete,replace,将这三种操作转化成...
2020-03-13 17:34:20
134
转载 Dijkstra算法python实现
这位大哥真厉害,图为讲解Dijkstra根据他的讲解,python实现如下import mathclass Graph: def __init__(self,vexs,matrix): self.vexs = vexs self.vexNum = len(self.vexs) self.matrix = matrixclass Sh...
2020-02-15 22:10:05
377
1
原创 创建以virtualenv创建的环境为后台的jupyter kernel
创建以virtualenv创建的环境为jupyter kernel$ virtualenv env_name$ source .\env\bin\activate(env_name)$ ipython kernel install --user --name=env_name
2019-08-01 09:59:31
159
转载 tensorflow使用GPU
原文链接:https://stackoverflow.com/questions/45662253/can-i-run-keras-model-on-gpu查看是否有GPU可用 from tensorflow.python.client import device_lib print(device_lib.list_local_devices())使用GPU from kera...
2019-06-19 16:07:14
127
原创 使用pip实现内网/离线安装包,以tensorflow、keras等为例
问题实验室的工作站不能联网,想配置深度学习的环境,安装keras、tensorflow准备一台与内网电脑(称为S)相同系统的可联网电脑(称为L)环境说明实验室工作站S安装的是Window10用来下载包的笔记本L是Window7实现内网/离线安装的基本原理在可联网的电脑L中使用pip download 下载相应的包将安装包转移到内网电脑S在内网电脑S中使用pip ...
2019-06-19 15:58:10
3323
1
原创 windows10安装CUDA V10.0 + cudnn10.0
windows10安装CUDA V10.0 + cudnn10.0安装 cuda 10.0软件要求系统:windows10编译器:VS2015(官方介绍VS2017也可以)显卡:Quadro P2000 4G官方文档(链接为V10.1):https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/in...
2019-06-19 15:30:22
5793
6
原创 国内pip及conda源集合及更改源
国内pip、conda源合集pip 源conda 源pip 源清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣(douban) http://pypi.douban.c...
2019-06-19 14:55:35
1976
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人