ICode9

精准搜索请尝试: 精确搜索
  • Elastic stack 认证:可观测性认证工程师 (ECOE, elastic certified observability engineer)考点说明2022-01-17 19:06:16

    可观测性认证 summary 可观测性认证考试主要是考察你能否用 elastic 全家桶,通过对指标、日志、APM和心跳信息等维度的数据进行采集,并在 kibana 里构建 machine learning 任务和告警。 主要考点 Uptime 通过配置和使用 Heartbeat 对进程或服务的生存状况进行监控通过 Heartbea

  • 还不会meta learning, 看这一篇文章教你入门2022-01-17 17:59:02

    META learning 文章目录 META learning 前言一、元学习的介绍二、元学习的分类1.基于度量的方法1.1 Convolutional Siamese Neural Network1.2 Matching Networks1.2.1 Simple Embedding1.2.2 Full Context Embeddings 1.3 Relation Network1.4 Prototypical Networks 2.

  • python_setattr_learning2022-01-17 01:33:00

    # author: Roy.Ga="self,name,color,age,food"b=a.split(",") # 以, 分开字符串for i in b: print("self."+i+"="+i)class animal(object): def __init__(self,name,color,age,food): self.name = name self.color =

  • 李宏毅-人工智能2017笔记1. Introduction of Machine Learning2022-01-16 22:03:04

    1. Introduction of Machine Learning 背景提要: 人工智慧是目标,机器学习是实现该目标的手段,而深度学习是机器学习中的方法之一。 hand-crafted rules(人类设定规则)已经不可取了,现在进行的是machine learning     机器学习三步骤:   step 1:定出一个function set; step 2:

  • 李宏毅《机器学习》| 深度学习Deep Learning简介2022-01-16 17:02:50

    目录 一、历史 二、步骤 Step1:神经网络(Neural network) 完全连接前馈神经网络(Fully Connected Feedforward Network) 矩阵计算(Matrix Operation) Step2:模型评估 损失示例 总体损失 Step3:选择最优函数 三、思考 隐藏层是否越多越好? 普遍性定理 一、历史 1958: Perceptron (li

  • ROS 学习笔记(8)—— 服务数据的定义与使用2022-01-15 21:32:14

    服务数据的定义与使用 1、前言2、模型3、开始自定义服务步骤一:定义 srv 文件步骤二:在 package.xml 中添加功能包依赖步骤三:在 CMakeLists.txt 添加编译选项步骤四:编写 cpp 程序步骤五:编译、运行 4、小知识 1、前言 在前面两篇文章中《客户端 Client 的编程实现》、《服务

  • 机器学习随记【day01】2022-01-11 23:03:04

    内容主要出自吴恩达机器学习网课 机器学习 Grew out of in AI New capabilitiy for computers 计算机开发的新功能 部分应用 Data mining 数据挖掘 Applications cant program by hand 人无法手写的程序 Self-customizing programs 私人定制程序 Understanding human learnin

  • 《word2vec Parameter Learning Explained》论文笔记2022-01-11 21:02:32

    word2vec Parameter Learning Explained Xin Rong(ronxin@umich.edu)【致敬】arXiv:1411.2738v4 [cs.CL] 5 Jun 2016 文章目录 word2vec Parameter Learning ExplainedAbstract1. Continuous Bag-of-Word Model1.1 上下文为单个词 One-word context(1)模型结构(2)输入层 -> 隐

  • python_hashlib_learning2022-01-11 01:33:26

    # author: Roy.Gimport hashlibm=hashlib.md5()n=hashlib.md5()y3="郭彦华"+"徐敏"y5="郭彦华徐敏"n.update(y5.encode("utf-8"))# m.update(y4.encode("utf-8"))m.update(y3.encode("utf-8"))print(n.hexdigest())print(m

  • P1 机器学习介绍2022-01-10 13:04:28

    文章目录 P1 机器学习介绍找出FunctionFrameworkFunction Set -- ModelTraining DataTest && TrainingFramework StepStep1:- define a set of function:找出一个function setStep2:- goodness of function:衡量一个function的好坏Step3:- pick the best function:有一个好

  • 深度学习基础知识教程2022-01-10 10:58:57

    本文主要分享一些深度学习入门的学习途径,同学们共同进步呀! 首先说下学习深度学习必备技能:  Python、高等数学(现代、微积分)、英文文献阅读、查找资料(博客、论坛、Git) 个人认为如果以前没学习过python也没关系,有其他语言基础的情况下再去学习一门新语言其实不是很困难,首先了解其

  • 《machine learning in action》机器学习 算法学习笔记 基于概率论的分类方法:朴素贝叶斯2022-01-09 18:58:54

    基于概率论的分类方法:朴素贝叶斯 优点:在数据较少的情况下任然有效(但是准确率也属于一言难尽),可以处理多类别问题。 缺点:对于输入数据的方式较为敏感。 适用数据类型:标称型数据。 前置知识:条件概率,贝叶斯决策理论,相互独立 相互独立:相互独立是设A,B是两事件,如果满足等式

  • python_os_learning2022-01-09 16:05:14

          # author: Roy.Gimport os# y1=os.getcwd()# print(y1,type(y1))# y2=os.chdir("E:\\pythonlearning_2")# print(y2)## os.makedirs("E:\\a\\b\\c\\")# os.removedirs("E:\\a\\b\\c\\")# # os.mkdir()# # os.rmdir()#

  • python_random_learning2022-01-09 13:00:22

    # author: Roy.Gimport randomy=random.random()print(y)y1=random.randint(1,9)print(y1)y2=random.randrange(0,9)print(y2)y3=random.choice([1,2,3,4,5,6,7,])y4=random.choice("hello!")print(y3)print(y4)y5=random.sample([1,2,3,4,5,],3)print(y5)y6=random

  • python_time_learning2022-01-09 12:01:31

    # author: Roy.Gimport time# # part 1# time_time=time.time() #timestamp# print(time_time)## #part 2# time_sleep=time.sleep(2)# print(time_sleep)## print("gmt= ",time.gmtime())# print("locale time = ",time.localtime())#xx=time.localtime(

  • Python_time_learning2022-01-09 01:02:05

    # author: Roy.Gimport time# # part 1# time_time=time.time() #timestamp# print(time_time)## #part 2# time_sleep=time.sleep(2)# print(time_sleep)## print("gmt= ",time.gmtime())# print("locale time = ",time.localtime())#xx=time.localtime(

  • 基于强化学习Q learning算法解决TSP问题2022-01-08 15:32:16

    最终结果如下图 代码如下: import numpy as np import matplotlib.pyplot as plt epsilon = 0.8 gamma = 0.1 lr = 0.1 distance = np.array([[0, 7, 6, 1, 3], [7, 0, 3, 7, 8], [6, 3, 0, 12, 11], [1, 7, 12, 0, 2], [3, 8, 11, 2, 0]]) R_table = 11 - distance space = [0

  • dns 相关2022-01-06 19:34:16

    问题: 公司服务器访问不了阿里云   原因: 默认的 dns 配置有问题   解决: 1. 查另一台正常工作的服务器的 dns: nslookup  2. 更新到 /etc/resolv.conf  感谢: http://dns-learning.twnic.net.tw/bind/intro4.html  

  • 优达学城 UdaCity 纳米学位2022-01-04 02:01:19

    优达学城 UdaCity 纳米学位 Num Course desc 1 AI Programming with Python 使用Python编程基础 2 Android Basics 安卓基础 3 Android Developer 安卓开发工程师 4 Artificial Intelligence 人工智能基础 5 Blockchain Developer 区块链开发工程师 6 Com

  • AI算法 问题总结2022-01-03 22:02:04

    监督和非监督的区别和各自优势? 分类算法常见的评估指标? team-learning-data-mining/Task1 赛题理解.md at master · datawhalechina/team-learning-data-mining · GitHub 机器学习算法实践:   逻辑回归:机器学习系列(1)_逻辑回归初步_寒小阳-CSDN博客_逻辑回归机器学习 (直线

  • 机器学习笔记1-What is Machine Learning2022-01-02 15:32:02

    What is Machine Learning Two definitions of Machine Learning are offered. Arthur Samuel described it as: “the field of study that gives computers the ability to learn without being explicitly programmed.” This is an older, informal definition. Tom Mitc

  • Non-IID data and Continual Learning processes in Federated Learning: A long road ahead 论文阅读2022-01-01 16:59:38

    论文地址点这里 今天来看一篇在实际背景下,联邦学习和持续学习的意义以及针对于数据异构问题的相关分析。 一. 介绍 人们日常生活主要的计算机器是智能手机和平板电脑,这些设备手机了很多有用的数据。易于用于训练简化日常使用的个性化算法。在这种情况下,仅在一个设备中记录的

  • Math for Programmers, 3D graphics, machine learning, and simulations with Python2021-12-30 22:02:36

    Math for Programmers, 3D graphics, machine learning, and simulations with Python, Version 10, Copyright 2020 Manning Publications My (fictional) friend Jane is a full-stack web developer working at a medium size tech company in San Francisco. In college,

  • 预训练模型参考网站2021-12-29 13:58:15

    TensorFlow Hub Hugging Face – The AI community building the future. tensorflow 对应的git hub:GitHub - tensorflow/hub: A library for transfer learning by reusing parts of TensorFlow models. 有遗漏的欢迎留言补充

  • 【人工智能导论:模型与算法】线性回归 逻辑回归2021-12-28 19:05:14

     Logistic Regression in Machine Learning - Javatpoint Linear Regression in Machine learning - Javatpoint 逻辑回归是用来分类的,不是回归。那为什么名字叫回归?            

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有