自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (34)
  • 收藏
  • 关注

翻译 pytorch-Tersor

查看Tensor中的元素总个数,可使用Tensor.numel()或者Tensor.nelement()函数,两者等价。

2020-07-29 09:27:26 288

翻译 python基础-类

在Python中,属性和方法的访问权限只有两种,也就是公开的和私有的,如果希望属性是私有的,在给属性命名时可以用两个下划线作为开头。大多数Python程序员会遵循一种命名惯例就是让属性名以单下划线开头来表示属性是受保护的,本类之外的代码在访问这样的属性时应该要保持慎重。那么如果想访问属性可以通过属性的getter(访问器)和setter(修改器)方法进行对应的操作。# 访问器 - getter方法 @property def age(self): return se

2020-07-16 16:36:18 434

翻译 python基础-字符串

字符串类型是一种结构化的、非标量类型。字符串中的\表示转义,通过在字符串的最前面加上字母r来加以说明“\”不是转义。+运算符来实现字符串的拼接*运算符来重复一个字符串的内容in和not in来判断一个字符串是否包含另外一个字符串(成员运算)[]和[:]运算符从字符串取出某个字符或某些字符(切片运算)a, b = 5, 10print('{0} * {1} = {2}'.format(a, b, a * b))print(f'{a} * {b} = {a * b}')...

2020-07-16 14:08:11 114

翻译 python基础-for和while

for i in range(1, 101, 2):#range(start, stop, stride)前闭后开 print('i:', i)while:break关键字来提前终止循环,需要注意的是break只能终止它所在的那个循环;continue,它可以用来放弃本次循环后续的代码直接让循环进入下一轮import randomanswer = random.randint(1, 100)counter = 0while True: counter += 1 ..

2020-07-15 12:51:31 132 1

翻译 python基础-输出

a = 9b = 2print('%d + %d = %d' % (a, b, a + b))print('%d - %d = %d' % (a, b, a - b))print('%d * %d = %d' % (a, b, a * b))print('%d / %d = %f' % (a, b, a / b))print('%d // %d = %d' % (a, b, a // b))print('%d %% %d = %d' % (a, b, a % b))print('%d **.

2020-07-15 11:41:31 363

原创 Ubuntu常用命令总结

sudo chmod -R 777 ****,****代表文件名sudo rm -rf ****,****代表文件名

2020-07-06 22:39:01 162

原创 pytorch—yolov3训练自己的数据集

注意:本篇博客直接使用VOC2007数据集1.数据集Labelimg软件构建数据集,Labelimg项目地址:https://github.com/tzutalin/labelImg,Labelimg快捷键:Ctrl + u Load all of the images from a directoryCtrl + r Change the default annotation target dirCtrl + s SaveCtrl + d Copy the cur...

2020-07-05 17:26:22 1336

原创 darknet-yolov3训练自己的数据

注意:本篇博客直接使用VOC2007数据集1.数据集Labelimg软件构建数据集,Labelimg项目地址:https://github.com/tzutalin/labelImg,Labelimg快捷键:Ctrl + u Load all of the images from a directory Ctrl + r Change the default annotation target dir Ctrl + s Save Ctrl + d Copy t

2020-07-05 16:43:04 266

翻译 安装

在Windows, 运行:pip install git+https://github.com/philferriere/cocoapi.git#egg=pycocotools^&subdirectory=PythonAPI作者:避雷殝链接:https://www.jianshu.com/p/9a9cc045518b来源:简书著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。...

2020-07-04 21:54:00 153

翻译 python基础-list

序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0。序列都可以进行的操作包括索引,切片,加,乘,检查成员。创建列表:list= [1, 2, 3, 4, 5 ]list[1] #2 使用下标索引来访问列表中的值list.append('6') 使用append()方法来添加del list[-1] ...

2020-07-02 10:53:02 187

pytorch思维导图.zip

pytorch参考手册的思维导图,其中包括torch操作、nn模块、autograd模块、torchvision基础等知识。

2020-11-05

pytorch参考总结

pytorch参考手册的思维导图,其中包括torch操作、nn模块、autograd模块、torchvision基础等知识。

2020-11-05

后台管理系统源码.rar

整理一些各种Javaweb后台管理系统源码,希望可以帮助大家!

2019-07-09

卷积神经网络模型总结.rar

本资源整理了近几年比较流行的卷积神经网络模型,CNN、resnet、VGG、densenet等。

2019-07-07

神经网络和深度学习.rar

神经网络和深度学习,内含中英文文档,源码。适合不同开发者使用!

2019-07-07

Python-100-Days-master.zip

Python学习资源,含源码,从入门到精通,不同阶段进阶,共计100天。

2019-07-07

deeplearning-models-master.zip

神经网络与深度学习各个模型,比较适合初学者,希望对大家有用!

2019-07-07

eclipse_springboot_mybatis3 web项目

eclipse创建springboot_mybatis3 web项目,测试已完成。

2018-10-06

springboot+mybtais3+junit4

IntelliJ IDEA创建springboot_mybatis3_ junit4 web项目

2018-10-03

JFinal logoJAVA 极速WEB+ORM框架 JFinal

Final 是基于 Java 语言的极速 WEB + ORM 框架,其核心设计目标是开发迅速、代码量少、学习简单、功能强大、轻量级、易扩展、Restful。在拥有Java语言所有优势的同时再拥有ruby、python、php等动态语言的开发效率!

2016-07-28

sprigmvc4_hibernate5_maven

eclipse 创建sprigmvc4_hibernate5_maven web工程

2016-07-27

springmvc4_hibernate5_maven

intellij idea 创建maven springmvc_hibernate web的demo,测试通过

2016-07-26

springmvc_hibernate4

springmvc_hibernate4 配置的总结

2016-07-25

iBase4J-springmvc-mybatis

Base4J应用于SpringMVC,Mybatis,Redis缓存,Dubbo,ActiveMQ,面向模块分布式基础SpringSession统一管理session,Druid数据库连接等等

2016-07-24

springmvc4_maven_mybatis3

intellij idea 创建maven springmvc4_maven_mybatis3 web框架的demo

2016-07-21

svn_visual_svn_server

svn_visual_svn_server

2016-07-20

jdk8_api_doc

jdk8 doc api

2016-07-20

GIT-2.9.0-64-bit.exe

Git-2.9.0-64-bit.exe

2016-07-20

intellij_idea

intellij_idea,整理的笔记

2016-07-19

myeclipse10.7破解版

myeclipse10.7破解版

2016-07-18

eclipse_springmvc_maven_mybstis3_junit4

eclipse创建的springmvc_maven_mybstis3_junit4 web的小demo,测试通过。

2016-07-11

springmvc_mybatis3_maven

eclipse创建springmvc_mybatis3_maven web的小demo

2016-07-10

maven_springmvc

eclipse创建springmvc+maven+json的demo,测试通过,学习了。

2016-07-08

spring_maven_mybatis3_junit4

Intellij IDEA创建 SpringMVC+Spring4+MyBatis3+Maven3+junit4的Maven Web项目demo,测试通过。

2016-07-08

springmvc_mybatis3_maven_junit4

Intellij IDEA创建Maven+springmvc+mybatis3+junit4的web项目,测试通过!需要的下载学习

2016-07-08

javaweb文件上传与下载

Servlet上传文件功能,Servlet下载文件功能。完成的demo。

2016-06-23

jsf2.1demo

JavaServer Faces+eclipse,入门教程。本人觉得挺好用,和jsp细节不同。需要自己体会

2016-06-21

springmvc4.2+mybatis3.0+jboss

sppring4.2,mybatis3.0,jboss

2016-05-23

springmvc+mybatis+spring4.2

完美整合springmvc+mybatis+springmvc4.2。测试也过了,现在正在用开发项目,感觉很方便。

2016-05-18

空空如也

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

TA关注的人

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