上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 178 下一页
  2020年11月12日
摘要: 深度学习:用深度神经网络进行机器学习和数据挖掘, 注解:机器学习的范围应该是大于深度学习的。 近几年的应用:图像识别,语音识别,自然语言处理。 处理图像数据--卷积神经网络 处理序列数据--循环神经网络 阅读全文
posted @ 2020-11-12 17:17 一杯明月 阅读(135) 评论(0) 推荐(0)
  2020年11月11日
摘要: 统计数值型数组中各元素出现的频数、频率。例子1: >> x = [2 2 6 5 2 3 2 4 3 4 3 4 4 4 4 2 2 6 0 4 7 2 5 8 3 1 3 2 5 3 6 2 3 5 4 3 1 4 2 2 2 3 1 5 2 6 3 4 1 2 5]; >> tabulate(x 阅读全文
posted @ 2020-11-11 15:21 一杯明月 阅读(2455) 评论(0) 推荐(0)
  2020年11月9日
摘要: http://post.smzdm.com/p/aekwvle3/ 小米手表标准版: 系统:MIUI for watch 屏幕:1.78AMOLED 分辨率368*448 ppi 326 四曲面玻璃 处理器:骁龙3100 4G版 目前最好的手表处理器 存储:1+8G 表盘尺寸:44mm 重量:67g 阅读全文
posted @ 2020-11-09 19:09 一杯明月 阅读(1631) 评论(0) 推荐(0)
  2020年11月6日
摘要: import tensorflow as tf import numpy as np a = np.array([1,2,3,4,5,6,7,8,9],dtype='float32'); a = a.reshape(3,3); c = a + [22,33,44];#c.dtype='float64 阅读全文
posted @ 2020-11-06 11:07 一杯明月 阅读(7833) 评论(0) 推荐(0)
摘要: http://cnblogs.com/dabiao/archive/2010/03/07/1680096.html 一、int函数能够 (1)把符合数学格式的数字型字符串转换成整数 (2)把浮点数转换成整数,但是只是简单的取整,而非四舍五入。 举例: 1 aa = int("124") #Corre 阅读全文
posted @ 2020-11-06 10:57 一杯明月 阅读(36338) 评论(0) 推荐(0)
  2020年11月5日
摘要: https://www.cnblogs.com/liuqi-beijing/p/6228561.html shutil.copyfile(src, dst):复制文件内容(不包含元数据)从src到dst。 DST必须是完整的目标文件名; 如果src和dst是同一文件,就会引发错误shutil.Err 阅读全文
posted @ 2020-11-05 21:47 一杯明月 阅读(11044) 评论(0) 推荐(0)
摘要: import os if os.path.isdir(path): print "it's a directory" elif os.path.isfile(path): print "it's a normal file" else: print "it's a special file(sock 阅读全文
posted @ 2020-11-05 16:54 一杯明月 阅读(10107) 评论(0) 推荐(0)
摘要: https://zhuanlan.zhihu.com/p/162867000 人要找到自己所爱又擅长的事情,然后下定决心要把这件事坚持做一辈子,并且要越做越好,越做越快,我们才能收获喜悦和财富。 他说:努力是没有用的,如果你没有发挥你的天赋才华。你听从父母的意见,努力学习,努力工作,努力经营家庭。 阅读全文
posted @ 2020-11-05 16:09 一杯明月 阅读(188) 评论(0) 推荐(0)
  2020年11月2日
摘要: import tensorflow as tf import numpy as np a = np.array([1,2,3,4,5,6,7,8,9],dtype='float32'); a = a.reshape(3,3); c = a + [22,33,44];#c.dtype='float64 阅读全文
posted @ 2020-11-02 12:31 一杯明月 阅读(11030) 评论(0) 推荐(0)
  2020年11月1日
摘要: a=mean(A,1) %按列平均b=mean(A,2) %按行平均c=mean(A(:)) %全部平均 阅读全文
posted @ 2020-11-01 21:53 一杯明月 阅读(3093) 评论(0) 推荐(0)
上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 178 下一页