Pythonfor循环及作业要求foriinrange(0,10):ifi<5:print("loop",i)else:continueprint("hehe")continue跳出本次循环,继续下次循环break结束循环foriinrange(10):print('-----------',i)forjinrange(10):print(j)ifj>5:break
原创
2020-11-10 20:11:29
238阅读
开始看一本叫做learning the bash SHELL的书.
不知道为什么,看那些翻译过来的书老是让我想睡觉,觉得很无聊。
看看英文书,觉得很多概念都很浅显易懂(才看了几页的感觉。),既可以学技术,又可以学新单词。。一举两得
今天开始看getting bash
echo $SHELL #查看当前的shell 版本
我这台机器是csh
输入bash若能进入一个类似bas
原创
2012-07-09 17:09:38
483阅读
深度学习是机器学习研究中的一个新的领域,其动机在于建立、模拟人脑进行分析学习的神经网络,它模仿人脑的机制来解释数据,例如图像,声音和文本。深度学习是无监督学习的一种。深度学习的概念源于人工神经网络的研究。含多隐层的多层感知器就是一种深度学习结构。深度学习通过组合低层特征形成更加抽象的高层表示属性类别或特征,以发现数据的分布式特征表示。深度学习的概念由Hinton等人于2006年提出。基于深信度网(DBN)提出非监督贪心逐层训练算法,为解决深层结构相关的优化难题带来希望,随后提出多层自动编码器深层结构。此外Lecun等人提出的卷积神经网络是第一个真正多层结构学习算法,它利用空间相对关系减少参数数
转载
2013-07-04 22:33:00
206阅读
2评论
1. 数字
(1).所有整数和浮点数都按double类型存储。例如0, -40, 0377, 0xFF,1.25, 255.0, -6.5e24 (2).可以插入下划线吧若干位数分开61_298_040_283_768(应该用逗号来分,但是逗号在perl中有其他意义)
(3).运算:除法总是按浮点数运算.例如10/3=3.33333...
支持整数取
原创
2011-06-10 17:21:11
589阅读
点赞
deep learning with python 学习笔记(1)
原创
2021-12-24 11:26:05
175阅读
3 Parameter Learning Video: Gradient Descent Reading: Gradient Descent Video: Gradient Descent Intuition Reading: Gradient Descent Intuition Video: Gr ...
转载
2021-10-06 08:58:00
114阅读
2评论
Markdowm语言基本使用1.标题一级标题:# +名字 ; 二级标题:## +名字;三级标题者:### +名字;以此类推最多6级标题。例如2.字体用*左右包裹字,一个为斜体 ;两个为黑体 ;三个位黑斜体。例如hellohellhello3.引用用'>'+文字表示引用别人的话。例如不积跬步无以至千里,不积小流无以成江河。4.分割线用'***'或'---'。例如5.图片!+[图片名字]+(图片
转载
2021-05-08 20:32:28
142阅读
2评论
顺序表 md忘更顺序表了 定义顺序表 #define N 10 //顺序表初始长度 typedef struct { int len;//顺序表当前长度 int maxsize ;//顺序表最大容量 int *data ; //指针 }List; 初始化 void ini(List &L){ L.l ...
转载
2021-09-24 22:58:00
75阅读
2评论
CONTENTSA central problem in machine learning is how to make an algorithm that will perform well not just on the training data, but also on new inputs.
原创
2022-01-11 10:12:33
118阅读
est?.c | wc -l 以testX.c的文件有几个ps命令是显示进程 ps -e // pe -ef 加入&为后台运行命令//
原创
2023-04-20 15:41:29
49阅读
CODE WORKSWork Here!CONTENTSLearning AlgorithmsA machine learning algorithm is an algorithm that is able to learn from data.
原创
2022-01-14 14:06:56
55阅读
CONTENTSA central problem in machine learning is how to make an algorithm that will perform well not just on the training data, but also on new inputs. Many strategies used in machine learning are explicitly designed to reduce the test error, possibly at
原创
2021-07-28 14:09:56
345阅读
CODE WORKSWork Here!CONTENTSLearning AlgorithmsA machine learning algorithm is
原创
2021-07-09 14:18:08
195阅读
Kioptrix Level 1.1 Walkthrough Preparation: Download the virtual machine from the following website: https://www.vulnhub.com/entry/kioptrix-level-11-2
转载
2019-08-03 19:53:00
508阅读
2评论
Installing Kioptrix: Level 1 Download the vm machine form https://www.vulnhub.com/entry/kioptrix-level-1-1,22/. In the Kali Linux: Find the devices in
转载
2019-06-22 19:08:00
90阅读
2评论
TCP vs UDP TCP: Connection-oriented Suited for applications that require high reliablity[HTTP, FTP,Telnet] Three-way handshake UDP: Connectionless Sui
转载
2019-06-20 23:30:00
194阅读
2评论
Gaining Root with Metasploit Platform: Kali Linux, Kioptrix Level 1 1. Find the IP of Kioptirx 2. Scan the Kioptrix server and analyst the result. 3.
转载
2019-07-06 17:44:00
90阅读
2评论
C#是.NET的基础,学好C#是掌握高级技术的前提,新的一轮学习,新的一轮体会,今天开始一步步的加深对C#的理解。
一、 .Net Framework 简介
1.什么是.Net
Developer Tools—开发工具:Microsoft visual studio 2005
User&nb
原创
2010-07-22 11:07:23
431阅读
0 Welcome Video: Welcome to Machine Learning! Reading: Machine Learning Honor Code 0.1 Video: Welcome to Machine Learning! Transcript What is machine ...
转载
2021-10-06 08:36:00
128阅读
2评论
SummaryThis chapter covered a lot of ground,beginning with a look at the purpose of WCF,the problems it solves and its alignment with SOA,through disc
转载
2015-07-17 15:26:00
50阅读