2020年3月18日

coursera Deeplearning_1

摘要: Deeplearning在coursera总共有5章节,分别如下 1neural networks and deep learning 1.1introduction to deep learning ReLU function: rectified linear unite 修正线性单元 1.1. 阅读全文

posted @ 2020-03-18 11:52 yukun093 阅读(171) 评论(0) 推荐(0) 编辑

2020年3月14日

JavaScript数据类型,数组,函数

摘要: 1JS基础规范 1.1基础规范 DOM全称是document object model,是html的每一个文档,整合js,css,html. BOM是html的每一个标签; JS在开发中绝大多数情况是基于对象的,也是面向对象的。 JS引入的两种方式: 在<script></script>中定义命令; 阅读全文

posted @ 2020-03-14 21:21 yukun093 阅读(252) 评论(0) 推荐(0) 编辑

2020年3月6日

机器学习 coursera【week10-11】

摘要: week10Large scale machine learning 10.1Gradient Descent with Large Datasets 大数据集的好处是可以让拟合更加完美,也就是说Jcv和Jtrain的误差error更小。 10.2Stochastic Gradient Descen 阅读全文

posted @ 2020-03-06 14:53 yukun093 阅读(185) 评论(0) 推荐(0) 编辑

2020年2月25日

机器学习 coursera【week7-9】

摘要: week07Support Vector Machines 7.1Large Margin Classification it is a more cleaner and more powerful way to learn complex non-linear function start fro 阅读全文

posted @ 2020-02-25 12:27 yukun093 阅读(262) 评论(0) 推荐(0) 编辑

2020年2月8日

线程与进程

摘要: 一、线进程若干概念 1.并发:程序,任务,用户 2.多道程序设计:A_IO阻塞 >切换到B_通道 >B_IO阻塞 >切换到C_通道 3.spooling(外部设备联机并行操作):它是Simultaneous Peripheral Operations On-Line的缩写,它是关于慢速字符设备如何与 阅读全文

posted @ 2020-02-08 23:45 yukun093 阅读(196) 评论(0) 推荐(0) 编辑

2020年2月7日

机器学习 coursera【week4-6】

摘要: week4 neural networks I 4.1definitions of neural networks 4.1.1dimensions of neural networks(how to define the hypothesis of neural networks) input层(层 阅读全文

posted @ 2020-02-07 16:26 yukun093 阅读(348) 评论(0) 推荐(0) 编辑

2020年1月29日

web表达三剑客之css

摘要: 1.css快速入门1 1.1css的四种引入方式 代码中用了第三种方式,在<head></head>中引入<style></style>标签,并在其中定义<p></p>标签,同时外部定义.css文件,对<p></p>; 其次也对四种引入方式进行了总结。 <!DOCTYPE html> <html l 阅读全文

posted @ 2020-01-29 21:09 yukun093 阅读(242) 评论(0) 推荐(0) 编辑

2020年1月21日

web表达三剑客之html

摘要: 一.web入门之html 1.html小试牛刀 电脑做client,browser做server,进行bs通信;原理与之前的电脑自建client和server相似,server和client进行cs通信。 import socket def main(): sock = socket.socket( 阅读全文

posted @ 2020-01-21 23:49 yukun093 阅读(269) 评论(0) 推荐(0) 编辑

2019年12月18日

Python科学计算三维可视化【完结】

摘要: 中国MOOC《Pyhton计算计算三维可视化》总结 课程url:here ,教师:黄天宇,嵩天 下文的图片和问题,答案都是从eclipse和上完课后总结的,转载请声明。 Python数据三维可视化 1Introduction 1.1可视化计算工具 1.1.1TVTK 科学计算三维可视化基础 Maya 阅读全文

posted @ 2019-12-18 20:46 yukun093 阅读(11945) 评论(1) 推荐(2) 编辑

2019年12月4日

tensorflow学习框架【炼数成金网络版学习记录】

摘要: chapter01 #变量 import tensorflow as tf x = tf.Variable([1,2]) a = tf.constant([3,3]) #增加一个减法op sub = tf.subtract(x,a) #增加一个假发op add = tf.add(x,sub) #初始 阅读全文

posted @ 2019-12-04 19:55 yukun093 阅读(552) 评论(0) 推荐(1) 编辑

导航