资源简介

机器学习是一门多学科交叉专业,涵盖概率论知识,统计学知识,近似理论知识和复杂算法知识,使用计算机作为工具并致力于真实实时的模拟人类学习方式, 并将现有内容进行知识结构划分来有效提高学习效率。 [1]

资源截图

代码片段和文件信息

import matplotlib.pyplot as plt
import numpy as np
file =open(‘easy.txt‘)
try:
    fileContent=file.read().split(‘\n‘)
finally:
    file.close()
print(‘kinds of vm‘len(fileContent)-2)
index=0;
pp=[]
pall=[]
alln=[0 for i in range(30)]
cpuuse=[]
memuse=[]
for i in fileContent:
    index+=1
    l=i.split(‘\t‘)
    ln=[]
    jj=0;
    for j in l:
        jj+=1;
        try:
            ln.append(int(j))
       #     alln[jj]+=int(j)
        except:
            print()
    print(ln)
    if index==1:
        p=plt.plot(ln)
        pp.append(p)
    elif index==16:
        plt.legend(pp [i + 1 for i in range(15)] loc=“upper left“)
        plt.figure()
        cpuuse=ln
        p = plt.plot(ln)
        pall.append(p)
    elif index==17:
        p = plt.plot(ln)
        memuse=ln
        pall.append(p)
plt.legend(pall[‘cpu‘‘mem‘]loc=‘upper right‘)

division=[memuse[i]/cpuuse[i] for i in  range(30)]

a=np.polyfit([i for  i in range(len(memuse))]memuse1)
predict=[]
for i in range(30):
    predict.append(i*a[0]+a[1])
plt.plot(predict)
plt.figure()
plt.plot(division)
plt.show()

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-11 20:56  华为数据\
     目录           0  2018-04-12 21:15  华为数据\.idea\
     目录           0  2018-07-01 16:24  华为数据\.idea\inspectionProfiles\
     文件         301  2018-04-08 19:28  华为数据\.idea\misc.xml
     文件         276  2018-04-08 19:27  华为数据\.idea\modules.xml
     文件       13761  2018-04-12 21:15  华为数据\.idea\workspace.xml
     文件         398  2018-04-08 19:28  华为数据\.idea\华为数据.iml
     文件        1143  2018-04-11 20:56  华为数据\PoltDate.py
     文件        1201  2018-04-11 20:10  华为数据\easy.txt
     目录           0  2018-07-01 16:24  华为数据\picture\
     目录           0  2018-04-27 19:08  实验三\
     目录           0  2018-05-12 08:54  实验三\.idea\
     目录           0  2018-07-01 16:24  实验三\.idea\inspectionProfiles\
     文件         301  2018-04-18 16:32  实验三\.idea\misc.xml
     文件         270  2018-04-18 16:32  实验三\.idea\modules.xml
     文件       28920  2018-05-12 08:54  实验三\.idea\workspace.xml
     文件         398  2018-04-18 16:32  实验三\.idea\实验三.iml
     文件         555  2018-04-20 18:55  实验三\data3.txt
     文件        4231  2018-04-27 19:08  实验三\lab3.py
     目录           0  2018-05-18 20:50  实验二\
     目录           0  2018-05-18 21:24  实验二\.idea\
     目录           0  2018-07-01 16:24  实验二\.idea\inspectionProfiles\
     文件         301  2018-04-17 20:38  实验二\.idea\misc.xml
     文件         270  2018-04-17 20:38  实验二\.idea\modules.xml
     文件       30665  2018-05-18 21:24  实验二\.idea\workspace.xml
     文件         398  2018-04-17 20:45  实验二\.idea\实验二.iml
     文件         569  2018-04-17 20:45  实验二\data2.txt
     文件        2740  2018-05-18 20:50  实验二\lab2.py
     目录           0  2018-05-16 15:43  实验四\
     目录           0  2018-05-30 20:06  实验四\.idea\
     目录           0  2018-07-01 16:24  实验四\.idea\inspectionProfiles\
............此处省略49个文件信息

评论

共有 条评论