2018年8月31日

摘要: JavaScript 3 阅读全文
posted @ 2018-08-31 21:41 微子天明 阅读(101) 评论(0) 推荐(0) 编辑

2018年8月30日

摘要: JavaScript 2 一,数据类型: 作用: 约束了数据在内存中所占空间大小问题的; JS数据类型分类: 基本数据类型(值类型) (1) number 类型; 数字类型,可以表示32位的整数或64位的浮点数; 整数: 表示十进制,八进制,十六进制 十进制:var num = 111;var nu 阅读全文
posted @ 2018-08-30 21:17 微子天明 阅读(247) 评论(0) 推荐(0) 编辑
摘要: JavaScript 1 一、JavaScript 概述什么是JavaScript: JavaScript 简称 JS,是一种专门运行于JS解释器/引擎中的解释型脚本语言JS发展史: 1、1992年Nombas公司开发了一款运行在网页中的脚本语言,名称为 CMM(C--),后来更名为 ScriptE 阅读全文
posted @ 2018-08-30 20:05 微子天明 阅读(151) 评论(0) 推荐(0) 编辑

2018年8月27日

摘要: CSS 1、框模型 1、内边距 属性: padding:value; padding-top / right / bottom / left:value; 2、box-sizing 作用:指定框模型的计算方式 取值: 1、content-box width 和 height 只表示内容区域的尺寸 2 阅读全文
posted @ 2018-08-27 21:37 微子天明 阅读(329) 评论(0) 推荐(0) 编辑

2018年8月26日

摘要: CSS知识3 框模型: 一,外边距(上文) 二, 内边距 1,什么是内边距? 内边距就是内容与元素边缘之间的距离; 注: 内边距会扩大元素边框内所占的区域的 语法: padding: 四个方向的内边距 padding-top / right / bottom / left : 值 ; 取值:(1)以 阅读全文
posted @ 2018-08-26 17:41 微子天明 阅读(130) 评论(0) 推荐(0) 编辑

2018年8月24日

摘要: tensorflow3 tensorflow 可视化好帮手; tf.train.SummaryWriter报错,改为tf.summary.FileWriter #tensorboard --logdir='/logs/' 访问浏览器:、、、、 1报错位置:.tf.scalar_summary('ba 阅读全文
posted @ 2018-08-24 22:36 微子天明 阅读(150) 评论(0) 推荐(0) 编辑

2018年8月22日

摘要: TensorFlow 2 TensorFlow 激励函数 TensorFlow 添加层: 思考:matmul和multiply两种乘法的区别:http://www.soaringroad.com/?p=560 TensorFlow建造神经网络: np.linspace() 在指定的间隔内返回均匀间隔 阅读全文
posted @ 2018-08-22 19:44 微子天明 阅读(290) 评论(0) 推荐(0) 编辑

2018年8月21日

摘要: CSS知识2 一, 尺寸 与 边框 CSS单位 1,尺寸单位:(1)px 像素 (2)% (3) in 英寸 lin = 2.54cm (4)pt 磅 1pt = 1/72in ppi : Pixel Per Inch = 72 (5)mm 毫米(6)cm厘米 2,颜色单位(取值) (1) rgb( 阅读全文
posted @ 2018-08-21 22:01 微子天明 阅读(126) 评论(0) 推荐(0) 编辑

2018年8月20日

摘要: TensorFlow 1 分类: 1,protocol Buffer 处理结构化数据工具; (xml,json) 2,Bazel 自动化构建工具, 编译; tensor 张量; 张量就是多维数组; flow 流; 两个阶段:1 定义计算图中所有的计算; 2,执行计算; 张量tensor: 1,多维数 阅读全文
posted @ 2018-08-20 21:05 微子天明 阅读(156) 评论(0) 推荐(0) 编辑

2018年8月19日

摘要: 第二篇:python数学知识2 线性代数 导入相应的模块; >>> import numpy as np (数值处理模块)>>> import scipy as sp 1,张量实现; 生成元素全为0 的二维张量,两个维度分别3,4. >>> np.zeros((3,4))array([[0., 0. 阅读全文
posted @ 2018-08-19 14:51 微子天明 阅读(218) 评论(0) 推荐(0) 编辑

导航