上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页
摘要: Python 嵌套列表解析 将一个3*4矩阵转为4*3矩阵Matrix = [ [1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12],]afterMatrix = [[row[i] for row in Matrix] for i in range(4)]) #3* 阅读全文
posted @ 2019-08-26 15:47 交流_QQ_2240410488 阅读(456) 评论(0) 推荐(0) 编辑
摘要: pip3 --default-timeout=1000 install torch 1.2.0 torchvision 0.4.0 -f https://download.pytorch.org/whl/torch_stable.html -i https://pypi.mirrors.ustc.e 阅读全文
posted @ 2019-08-23 14:08 交流_QQ_2240410488 阅读(325) 评论(0) 推荐(0) 编辑
摘要: 2.4 尝试pip --default-timeout=1000 install https://download.pytorch.org/whl/cu100/torch-1.1.0-cp36-cp36m-win_amd64.whl python3 -m pip3 install torch 1.2 阅读全文
posted @ 2019-08-23 14:02 交流_QQ_2240410488 阅读(605) 评论(0) 推荐(0) 编辑
摘要: data=[[[0],1]]df = pd.DataFrame(data, columns=['col1', 'col2']) df = pd.DataFrame({‘col1’:‘’,‘col2’:‘’},index=【0】) 阅读全文
posted @ 2019-08-23 13:53 交流_QQ_2240410488 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 将逗号分隔的字符串转换为Python中的列表 给定一个字符串: 它是由逗号分隔的几个值的序列: mStr = '192.168.1.1,192.168.1.2,192.168.1.3' 如何将字符串转换为列表? mStr = ['192.168.1.1', '192.168.1.2', '192.1 阅读全文
posted @ 2019-08-23 10:32 交流_QQ_2240410488 阅读(2258) 评论(0) 推荐(0) 编辑
摘要: https://pytorch.org/get-started/locally/ pytorch 主页选择后安装 阅读全文
posted @ 2019-08-22 16:38 交流_QQ_2240410488 阅读(1670) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/fandx/p/9311755.html 1:strip()方法,去除字符串开头或者结尾的空格 >>> a = " a b c " >>> a.strip() 'a b c' 2:lstrip()方法,去除字符串开头的空格 >>> a = " a b 阅读全文
posted @ 2019-08-22 14:26 交流_QQ_2240410488 阅读(4484) 评论(0) 推荐(0) 编辑
摘要: 引 机器上总是会有Python2.7的版本和Python3.x的版本,今天接触到一台服务器上面有Python2.7和Python3.4,想在Python3.4下安装一个TensorFlow,但不管怎么装都只能装到Python2.7上,特别头疼,后来发现是因为不论用pip还是pip3,都是指向的Pyt 阅读全文
posted @ 2019-08-22 10:48 交流_QQ_2240410488 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 没有按照 ipython 或者 ide 没有选择编译器 阅读全文
posted @ 2019-08-21 17:47 交流_QQ_2240410488 阅读(2628) 评论(0) 推荐(0) 编辑
摘要: 组策略对于优化和维护Windows系统来说十分重要。众所周知,Windows 10家庭版中并不包含组策略,对于使用家庭版Windows的朋友来说,十分不方便。小编将以Windows10家庭版为例,带大家一起见证如何加入组策略。 组策略对于优化和维护Windows系统来说十分重要。众所周知,Windo 阅读全文
posted @ 2019-08-16 12:49 交流_QQ_2240410488 阅读(1194) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 43 下一页