自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 pytorch3D conda安装的坑

conda linux 装pytorch3D

2022-12-17 13:45:30 424 1

原创 在dick字典里找最大值并返回key的办法

在dick字典里找最大值并返回key的办法a={‘ndp’: 1234, ‘lib’: 1345, ‘pc’: 1456}max(a[“r1”],key =a[“r1”].get)“pc”

2019-01-22 09:34:18 1654

原创 Class里 print 整个class的办法

str__和__repr如果要把一个类的实例变成 str,就需要实现特殊方法__str__():class Person(object):def init(self, name, gender):self.name = nameself.gender = genderdef str(self):return ‘(Person: %s, %s)’ % (self.name, self...

2019-01-16 01:19:22 2173 1

原创 python 四种高级type

Anyfrom typing import Anydef get_first(items: list) -> Any:return items[0]Warning: beginners often get lazy with their type annotations, and tend to write Any even when a more specific type ann...

2019-01-14 05:05:33 902 1

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除