ICode9

精准搜索请尝试: 精确搜索
  • x86_64汇编基础:Basics2022-08-19 21:01:01

    参考 https://cs61.seas.harvard.edu/site/2018/Asm1/ 正文 Registers Registers are the fastest kind of memory available in the machine. x86-64 has 14 general-purpose registers and several special-purpose registers. This table gives all the basic registers, wit

  • Python data structure basics2022-07-26 23:01:02

    Program to reverse a string String = "My name is Miguel." print(String[::-1]) Python String join() Method The join() method takes all items in an iterable and joins them into one string. A string must be specified as the separator. Deleting a S

  • 学习札记 GMAES202 高质量实时渲染 Lecture02: Recap of CG Basics2022-03-01 17:04:20

    一、Basic GPU hardware pipeline 基础硬件渲染管线知识 二、OpenGL 三、OpenGL Shading Language (GLSL)高阶着色语言 四、The Rendering Equation 渲染方程 五、Caluculus 基本微积分知识 (课上没讲) 一、Basic GPU hardware pipeline基础GPU渲染管线知识   从一开始从3D模型到

  • 深度学习——fastai第四课 04_minist_basics2022-02-03 16:02:14

    文章目录 幕后:训练一个数字分类器像素:计算机视觉的基础边栏:韧性和深度学习 初尝试:像素相似NumPy 数组和PyTorch 张量 使用广播计算评价指标随机梯度下降(SGD)计算梯度通过学习率执行`step`一个端到端的SGD例子1 初始化参数2 计算预测值3 计算损失4 计算梯度5 执行(更新)权重6

  • PyTorch 介绍 | LEARN THE BASICS2022-01-24 14:02:16

    大多数机器学习流程都包括数据、创建模型、优化模型参数,以及保存训练模型工作。该教程向你介绍一个在PyTorch上实现的完整的机器学习工作流,并提供了了解这些概念详细信息的链接。 我们将使用FashionMNIST数据集训练一个神经网络,用以预测输入图片是否属于以下几类:T-shirt/top, Trou

  • kubernetes官网交互式教程学习2022-01-03 09:31:13

      官网:https://kubernetes.io/docs/tutorials/kubernetes-basics/   点击进入,创建集群                    连不上,回头再试  

  • Vue.js Course for Beginners [2021 Tutorial]---记录2021-11-20 22:04:06

    做了一个登录界面的设计 用v-for循环输出数组中的值 <!DOCTYPE html> <html> <head> <title> Vue 3 Basics </title> <style> .box{ background-color:blue

  • PyTorch Tutorials——LEARN THE BASICS2021-09-24 21:05:20

    前言 苦于不熟悉网络的构成以及没有合适的练手项目,所以选择了pytorch官方的教程入手进行学习,希望可以对相关概念和技术比较熟悉,运行此网络时是在服务器的终端上手写,由于没有拼写检查功能,导致漏洞百出,debug了30多遍,不过最终也运行成功。希望这个小demo可以见证我的进步与成长,故开此

  • SQLZOO练习-Part1: SELECT basics2021-07-15 11:02:09

    Part1: SELECT basics  1.  Show the population of Germany. SELECT population FROM world WHERE name = 'Germany' 2.Show the name and the population for 'Sweden', 'Norway' and 'Denmark'.  SELECT name, population F

  • Python Basics2021-07-10 12:02:49

    These rules for putting operators and values together to form expressions are a fundamental part of Python as a programming language, just like the grammar rules that help us communicate. [Python Tutor - Visualize Python] Remember that expressions are ju

  • Machine Learning Basics(2)2021-07-08 13:30:05

    CONTENTS Capacity, Overfitting and Underfitting The ability to perform well on previously unobserved inputs is called generalization. The field of statistical learning theory provides some answers. If the training and the test set are collected arbitra

  • My Roadmap2021-06-20 16:33:17

    About a AI Expert Fundamentals Basics Matrices & Linear Algebra Fundamentals Database Basics Relational vs. non-relational databases SQL + Joins (Inner, Outer, Cross, Theta Join) NoSQL Tabular Data Data Frames & Series Extract, Transform, Load (E

  • Basics of Neural Network Programming - Computation Graph2021-06-20 11:00:46

    This is the notes when studying the class Neural Networks & Deep Learning by Andrew Ng, section 2.7 computation graph. Share it with you and hope it helps. The computations of a neural network are organized in terms of a forward propagation step in w

  • ARM 和 RISC-V 公然开撕,GNOME 之父指责 ARM2021-05-29 21:53:28

    作者:OSC-王练 链接: https://www.oschina.net/news/97929/arm-vs-riscv 转载请在文中注明来源和作者 之前我们曾报道过“因 ARM 授权费用太贵,科技巨头欲转向开源架构 RISC-V” 的消息,与 ARM 相比,开源的 RISC-V 指令集可以自由地用于任何目的,允许任何人设计、制造和销售 RISC-V 芯片

  • WPS WRF 安装与使用 安装教程 教程2021-03-16 15:59:28

    这是我见过的最好的教程: https://www2.mmm.ucar.edu/wrf/OnLineTutorial/Basics/index.php

  • 自动驾驶教程阅读:Basics of Image Formation2021-02-06 13:02:35

    Basics of Image Formation 数字图像 图像由像素网格组成如下图所示 为了表示图像,我们使用形状为(H,W,3)的三维数组。我们说该数组有H行,W列和3个颜色通道(红色,绿色和蓝色)。让我们用python加载图片,看看吧! import numpy as np import matplotlib.pyplot as plt from pathlib import Path

  • 自动驾驶教程阅读:Basics of Image Formation2021-02-06 12:59:14

    这里写目录标题 Basics of Image Formation数字图像针孔相机Reference frames练习:将车道边界投影到图像中 Basics of Image Formation 数字图像 图像由像素网格组成如下图所示 为了表示图像,我们使用形状为(H,W,3)的三维数组。我们说该数组有H行,W列和3个颜色通道(红色,绿色

  • coq 函数式编程--Basics.v2021-02-01 21:33:54

    《SOFTWARE FOUNDATIONS》 英文原版:https://softwarefoundations.cis.upenn.edu/lf-current/index.html 中文翻译版:https://coq-zh.github.io/SF-zh/    我要写的是其中的第一卷,《Logical Foundations》,翻译基本源自中文翻译版,有些英文里面没翻译,我就机翻再修饰了一下,可能

  • 神经网络的编程基础(Basics of Neural Network programming)2021-01-21 09:57:37

    一、 二分类(Binary Classification) 在神经网络中,如何处理训练集。在这里将使用逻辑回归(logistic regression)来传达这些想法,以使大家能够更加容易地理解这些概念。即使你之前了解过逻辑回归,我认为这里还是有些新的、有趣的东西等着你去发现和了解,所以现在开始进入正题。

  • MCM/ICM Composition Process2021-01-12 18:01:55

    Groupwork Div. Series Labor Division. Model Builder

  • Basics: Python 函数2021-01-10 20:33:39

    众所周知,函数(function)是代码中最最不可少的组成部分之一 什么是函数 这里首先和数学意义上的函数做一个区分: 数学意义上的函数 \(f:S\to T\) 是一个集合 \(S\) 到另一个集合 \(T\) 的映射,其中 \(S\) 中的任何一个元素都唯一对应 \(T\) 中的一个元素。如果用 Input-Output 的方式

  • Coursera自动驾驶课程笔记(8):Basics of 3D Computer Vision2020-12-30 21:02:11

    在上一讲《Coursera自动驾驶课程笔记(7):Vehicle Lateral Control》中我们了解了如何使对汽车进行横向控制。本课程第一个篇章就告辞段落了,接下来我们开始学习新的篇章。 课程第二个篇章是状态估计和定位模块。不过在这里我做了一下调整,我们先学习视觉感知模块,即计算机视觉在自

  • C the basics (array, complex)2020-12-08 17:05:19

    数组: 只有初始化定义才能 arr = { 0 };    结构体: typedef struct namex {  }name; 会创建一个name类型的结构体,也可用name进行类型定义,但是不可以定义指针,仍需要用struct name* 定义 。 重要小结:结构体中的只指向自身的指针需用 struct COMPLEX* 定义。 typedef struct SELF

  • 《吴恩达深度学习》学习笔记002_神经网络的编程基础(Basics of Neural Network programming)2020-11-23 20:32:04

    http://www.ai-start.com/dl2017/html/lesson1-week2.html 神经网络的编程基础(Basics of Neural Network programming) 二分类(Binary Classification) 我们来看看一张图片在计算机中是如何表示的,为了保存一张图片,需要保存三个矩阵,它们分别对应图片中的红、绿、蓝三种颜色

  • "/home/ubuntu/py_ws/src/basics/action/Timer.action" "-o"2020-10-14 10:31:24

      错误: CMake Error at /opt/ros/kinetic/share/catkin/cmake/safe_execute_process.cmake:11 (message): execute_process(/home/ubuntu/py_ws/build/catkin_generated/env_cached.sh "/usr/bin/python2" "/opt/ros/kinetic/share/actionlib_msgs/cmake/../

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

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

ICode9版权所有