上一页 1 2 3 4 5 6 7 8 9 ··· 68 下一页
摘要: 1.第一步: 安装git for windows(链接:https://gitforwindows.org/)一路next就好了, 如果遇到什么问题可以参考我另外一篇文章~^ - ^ 2.第二步:安装小乌龟(我习惯把TortoiseGit叫成小乌龟,所以接下来所有的TortoiseGit我都代替为小 阅读全文
posted @ 2019-10-11 11:40 喵小喵~ 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 参考: http://www.linuxandubuntu.com/home/how-to-install-latest-nvidia-drivers-in-linux https://medium.com/@zhanwenchen/install-cuda-and-cudnn-for-tensor 阅读全文
posted @ 2019-10-11 09:58 喵小喵~ 阅读(2713) 评论(0) 推荐(1) 编辑
摘要: import pandas as pd x = [53, 61, 49, 66, 78, 47] s = pd.Series(x) print(s.skew()) print(s.kurt()) 阅读全文
posted @ 2019-09-30 09:22 喵小喵~ 阅读(9853) 评论(0) 推荐(2) 编辑
摘要: 阅读全文
posted @ 2019-09-28 18:05 喵小喵~ 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 作者:风翼冰舟链接:https://www.zhihu.com/question/299068775/answer/525874350来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 我感觉CV还好,毕竟是大趋势,要是研究CG试试,简直是坑得吐血,本人研究方向运动捕捉, 阅读全文
posted @ 2019-09-23 12:44 喵小喵~ 阅读(627) 评论(0) 推荐(0) 编辑
摘要: import sys import numpy # 一定要有,否则会出现_ufuncs错误 from cx_Freeze import setup, Executable base = None if sys.platform == 'win32': base = 'Win32GUI' options = { 'build_exe': { '... 阅读全文
posted @ 2019-09-22 10:30 喵小喵~ 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 1 import sys 2 from PyQt5.QtCore import * 3 from PyQt5.QtGui import * 4 from PyQt5.QtWidgets import * 5 class MyWindow(QWidget): 6 def __init__(self,parent=None): 7 super(MyWindow,self).__init__(paren 阅读全文
posted @ 2019-09-21 21:18 喵小喵~ 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 先安装python环境 和 pycharm 然后: PyCharm环境配置 2.1 添加QtDesigner 2.2 添加PyUIC $FileName$ -o $FileNameWithoutExtension$.py 2.3 添加Pyrcc $FileName$ -o $FileNameWith 阅读全文
posted @ 2019-09-20 11:39 喵小喵~ 阅读(569) 评论(0) 推荐(0) 编辑
摘要: 基本操作 矩阵乘法 矩阵乘,与Numpy dnarray类似,可以使用np.dot()和np.matmul(),除此之外,由于matrix中重载了“*”,因此“*”也能用于矩阵乘。 点乘,只剩下multiply方法了。 矩阵转置 转置有两种方法: 值得一提的是,matrix中求逆还有一种简便方法(n 阅读全文
posted @ 2019-09-19 09:35 喵小喵~ 阅读(3127) 评论(0) 推荐(0) 编辑
摘要: python m pip install 阅读全文
posted @ 2019-09-17 19:55 喵小喵~ 阅读(142) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 68 下一页