- 博客(12)
- 资源 (1)
- 收藏
- 关注
原创 使用netplan在Ubuntu 18.04中配置网络
使用netplan在Ubuntu 18.04中配置网络Ubuntu从17.10开始,已放弃在/etc/network/interfaces里固定IP的配置,即使配置也不会生效,而是改成netplan方式 ,配置写在/etc/netplan/*.yaml里。即Ubuntu允许用户使用YAML抽象来配置网络接口# This file describes the network interfaces available on your systemnetwork: version: 2 rende
2021-03-27 14:04:07 1389 2
原创 vm ubuntu如何设置全屏
1. 在终端输入xrandr,并回车这里显示可以修改的分辨率2. 输入我们需要设置的分辨率,xrandr -s 1680x1050,然后回车一下。1920后面的是字母x,分辨率根据上面显示的自行选择这样就可以了,全屏显示...
2021-03-24 23:07:22 269
原创 plt.plot用法
plt.plot(x, y, format_string, **kwargs)参数 说明x X轴数据,列表或数组,可选y Y轴数据,列表或数组format_string 控制曲线的格式字符串,可选**kwargs 第二组或更多(x,y,format_string),可画多条曲线format_string 由颜色字符、风格字符、标记字符组成颜色字符‘b’ 蓝色 ‘m’ 洋红色 magenta‘g’ 绿色 ‘y’ 黄色‘r’ 红色 ‘k’ 黑色‘w’ 白色 ‘c’ 青绿色 cyan‘#0
2021-03-11 10:38:23 2000
原创 np.arange()用法
np.arange()用法函数返回一个有终点和起点的固定步长的排列,如[1,2,3,4,5],起点是1,终点是6,步长为1。参数个数情况: np.arange()函数分为一个参数,两个参数,三个参数三种情况1)一个参数时,参数值为终点,起点取默认值0,步长取默认值1。2)两个参数时,第一个参数为起点,第二个参数为终点,步长取默认值1。3)三个参数时,第一个参数为起点,第二个参数为终点,第三个参数为步长。其中步长支持小数#一个参数 默认起点0,步长为1 输出:[0 1 2]a = np.aran
2021-03-11 10:33:42 957
原创 问题解决:UnicodeDecodeError: ‘ascii‘ codec can‘t decode byte 0x8b in position 6
源代码def unpickle(file): import pickle fo = open(file, 'rb') dict = pickle.load(fo) fo.close() return dict错误提示错误原因:编码问题在后面添加**encoding = ‘bytes’**即可修改后代码:def unpickle(file): import pickle fo = open(file, 'rb') dict = p
2020-12-25 14:59:58 145
原创 问题解决:cPickle
1、在python2.X中,需要安装cPickle,import cPickleimport cPickle2、在python3.X中,这个包已被别的包替换,使用以下语句即可import _pickle as cPickle
2020-12-21 16:47:08 376 1
原创 anaconda创建虚拟环境,安装tensorflow
1、创建虚拟环境:其中tf1为虚拟环境名,3.5.对应python版本号conda create -n tf1 python=3.52、激活虚拟环境activate tf13、安装tensorflow1.0.0, -i 临时更换镜像源pip install tensorflow==1.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/4、测试代码:import tensorflow as tf sess = tf.Session() a
2020-12-21 16:43:30 5315 2
原创 问题解决:KeyError: ‘data‘
KeyError: 'data’data = dicts['data'] if is_random_label is False: label = np.array(dicts['labels']) else: labels = np.random.randint(low=0, high=10, size=10000) label = np.array(labels) return data, label百度之后发现b:byte
2020-12-21 16:28:22 18268 3
原创 最大连续子序列和
题目给定K个整数的序列{ A1, A2, …, Ak },其任意连续子序列可表示为{ Ai, Ai+1, …, Aj },其中 1 <= i <= j <= K。最大连续子序列是所有连续子序列中元素和最大的一个。例如给定序列{ -2, 11, -4, 13, -5, -2 },其最大连续子序列为{ 11, -4, 13 },最大和为20。#include<cstdio>#include<algorithm>using namespace std;#de
2020-11-06 21:48:39 2092
原创 Prime Ring Problem
Prime Ring ProblemProblem DescriptionA ring is compose of n circles as shown in diagram. Put natural number 1, 2, …, n into each circle separately, and the sum of numbers in two adjacent circles should be a prime.Note: the number of first circle should
2020-10-23 13:26:40 418
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人