Jason‘s Blog


  • Home

  • About

  • Tags

  • Categories

  • Archives

  • Sitemap

  • Search

支持向量回归(SVR)

Posted on 2020-10-07
Words count in article: 2.3k | Reading time ≈ 8
支持向量回归(SVR) 左图是Linear Regression的 ,右边是svr 的loss function,右图中,$\epsilon-$ Insensitive tube描述的是黄色管道,$\epsilon$ 是管道边界到管道中心的垂直距离。我们定义这个区域内的点损失为0,这个区域以外的点的 ...
Read more »

git基础3

Posted on 2020-09-30
Words count in article: 1.2k | Reading time ≈ 4
git 基础3Collaboration 合作 Collaboration workflows Pushing,fetching and pulling Pull requests,issues and milestones Contributing to open-source projects ...
Read more »

git学习2

Posted on 2020-09-27
Words count in article: 5.6k | Reading time ≈ 22
git 学习笔记2Browsing History Getting a Repository下载: 链接:https://pan.baidu.com/s/12cWs65AEMGUvw1pr6yRI3A 提取码:dpyi Viewing the History我们之前知道了 git log 可以查询详 ...
Read more »

CSAPP程序的机器级表示1

Posted on 2020-09-24
Words count in article: 5.7k | Reading time ≈ 21
CSAPP程序的机器级表示1本章内容: 快速浏览C语言、汇编代码以及机器代码之间的关系。 介绍 x86-64 的细节:从数据的表示和处理以及控制的实现(C语言中的if,while,switch等控制结构) 过程的实现(如程序如何维护一个运行栈来支持过程间数据和控制的传递,以及局部变量的存储) 考虑 ...
Read more »

git基础

Posted on 2020-09-23
Words count in article: 4.9k | Reading time ≈ 19
git基础git使世界上最受欢迎的版本控制系统,版本控制系统记录随着时间的推移对我们的代码所做的更改。他能知道谁在何时何地进行了那些修改。如果我们有一个版本搞砸了,我们可以轻松地将项目还原到之前的版本。在早期,没有这种版本控制系统,我们不得不不断地以各种方式存储整个项目的副本——这会严重地降低效率尤 ...
Read more »

CSAPP信息的表示和存储2

Posted on 2020-09-17
Words count in article: 2.7k | Reading time ≈ 10
CSAPP信息的表示和存储2整数运算无符号加法当两个非负整数 x,y 满足 $0\leq x,y< 2^w$ 。那么 $x+y$ 就有可能是一个w+1位数。比如一个四位的无符号整数的取值范围是0-15,但其和的范围是0~30. 我们要让无符号数之和仍然位w位,那么我们需要做数的截断。 我们定 ...
Read more »

CSAPP信息的表示和存储

Posted on 2020-09-15
Words count in article: 5.5k | Reading time ≈ 21
CSAPP信息的表示和存储怎么阅读CSAPP? 首先看一下标题和插图 看懂示意图之后做一些 practice problem,有不懂的再去看书本内容 用例子来帮助我们理解 上课笔记main(arg c ,arg v)argc和argv参数在用命令行编译程序时有用 第一个参数,int型的argc ...
Read more »

深入了解计算机系统简介

Posted on 2020-09-14
Words count in article: 1.7k | Reading time ≈ 6
深入了解计算机系统简介从helloworld入手首先我们来理解一下简单的hello world 程序是怎么被电脑执行的 1234567#include <stdio.h>int main(){printf("hello, world\n");return 0;} 这个 ...
Read more »

离散数学之集合与函数

Posted on 2020-09-03
Words count in article: 2.2k | Reading time ≈ 12
离散数学之集合与函数集合定义:Set A is a collection of objects (or elements) $a\in A$: a is an elements of A or a is a member of A $a\notin A:$ a is not an element ...
Read more »

BFSandDFS

Posted on 2020-08-30
Words count in article: 4k | Reading time ≈ 18
BFSandDFSDFS深度优先搜索(Depth First Search,DFS),是最常见的图搜索方法之一。深度优先搜索沿着一条路径一直走下去,无法行进时,回退回退到刚刚访问的结点,似不撞南墙不回头,不到黄河不死心。深度优先遍历是按照深度优先搜索的方式对图进行遍历。 时刻牢记: 后被访问的顶点 ...
Read more »
<i class="fa fa-angle-left"></i>1…192021…44<i class="fa fa-angle-right"></i>

Jason

437 posts
11 categories
61 tags
GitHub E-Mail
Links
  • 友链:杨弘的博客
  • 友链:赵奕轲的博客
  • Like it, STAR ME
0%
© 2025 Jason