VesperCi
码龄6年
求更新 关注
提问 私信
  • 博客:1,269
    1,269
    总访问量
  • 7
    原创
  • 0
    粉丝
  • 26
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:北京市
加入CSDN时间: 2020-10-13
博客简介:

m0_51515924的博客

查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得0次评论
  • 获得0次收藏
  • 博客总排名1,140,790名
创作历程
  • 7篇
    2020年
成就勋章

TA关注的专栏 1

TA关注的收藏夹 0

TA关注的社区 1

TA参与的活动 0

创作活动更多

「谁说嵌入式只是调包和焊板子?」—— 2026嵌入式全栈技术征锋令

谁说嵌入式只会“Ctrl+C 调包”和“拿电烙铁焊板子”?2026嵌入式全栈技术征锋令正式启幕! 本次活动专为硬核硬件/软件开发者打造,无论你是刚玩转裸机外设的萌新,还是精通RTOS调度、死磕底层驱动的行业老手,亦或是执掌系统架构的大神,这里都是你证明实力的舞台! 拒绝表面功夫,每一行代码,都有撬动硬件的力量!晒出你的硬核工程实战,为嵌入式开发者的全栈硬实力正名!

210人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

2020-10-27

Machine Learning A-Z K-means Custering #Import the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd import numpy as np # Importing the dataset dataset = pd.read_csv('Mall_Customers.csv') X = dataset.iloc[:, 3:5].valu
原创
博文更新于 2020.10.27 ·
168 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2020-10-27

Machine Learning A-Z Random_forest_classification #Import the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd import numpy as np # Importing the dataset dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc
原创
博文更新于 2020.10.27 ·
174 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2020-10-27

Machine Learning A-Z Decision_tree_classification #Import the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd import numpy as np # Importing the dataset dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc
原创
博文更新于 2020.10.27 ·
155 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2020-10-27

Machine Learning A-Z Naive_bayes # Importing the dataset dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc[:, [2, 3]].values y = dataset.iloc[:, 4].values # Splitting the dataset into the Training set and Test set from sklearn.model_selec
原创
博文更新于 2020.10.27 ·
168 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

2020-10-27

Machine Learning A-Z kernel SVM #Import the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd import numpy as np``` # Importing the dataset dataset = pd.read_csv('Social_Network_Ads.csv') X = dataset.iloc[:, [2, 3]].valu
原创
博文更新于 2020.10.27 ·
123 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Machine Learning A-Z Polynomial Regression

Machine Learning A-Z Polynomial Regression #Import the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd import numpy as np #Importing the dataset dataset = pd.read_csv('Position_Salaries.csv') X = dataset.iloc[:,1:2].v
原创
博文更新于 2020.10.19 ·
235 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Machine Learning A-Z Simple Linear Regression

Machine Learning A-Z Simple Linear Regression #Importing the libraries import tensorflow as tf import matplotlib.pyplot as plt import pandas as pd #Importing the dataset dataset = pd.read_csv('Salary_Data.csv') X = dataset.iloc[:, :-1].values y = dataset.
原创
博文更新于 2020.10.19 ·
246 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏