10 2020 档案
摘要:人工智能 Artificial Intelligence 认知科学与神经科学Cognitive Science and Neuroscience 图像处理Image Processing 计算机图形学Computer graphics 模式识别Pattern Recognized 图像表示Image
阅读全文
摘要:import numpy as np dict = {'a' : {1,2,3}, 'b': {4,5,6}} np.save('dict.npy', dict) dict_load=np.load('dict.npy', allow_pickle=True) print("dict =", dic
阅读全文
摘要:python:找零钱方案 def zhaoling(price,pay): re=float(pay)-float(price) if re==0: return 0 coins=[50,10,5,1] decoin=[0.5,0.2,0.1] restr=str(re) integer=int(r
阅读全文
摘要:1. 在主系统里运行: $ sudo apt-get install x11-xserver-utils $ xhost + 这两句的作用是开放权限,允许所有用户,当然包括docker,访问X11 的显示接口 2. 在启动docker容器是,添加选项如下: -v /tmp/.X11-unix:/tm
阅读全文
摘要:1. apt-get install vim 提示: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package vim 2.
阅读全文