自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(92)
  • 收藏
  • 关注

原创 raspberry config

Makefle.config## Refer to http://caffe.berkeleyvision.org/installation.html# Contributions simplifying and improving our build system are welcome!# cuDNN acceleration switch (uncomment to build with cuDNN).# USE_CUDNN := 1# CPU-only switch (uncommen

2020-09-09 15:13:08 199 2

原创 caffe安装错误记录

问题:CXX/LD -o .build_release/examples/ssd/ssd_detect.bin/usr/bin/ld: .build_release/examples/ssd/ssd_detect.o: undefined reference to symbol '_ZN2cv12VideoCaptureD1Ev'/usr/bin/ld: //usr/lib/arm-linux-gnueabihf/libopencv_videoio.so.3.2: error adding symbo

2020-09-09 09:07:19 255

原创 config

## Refer to http://caffe.berkeleyvision.org/installation.html# Contributions simplifying and improving our build system are welcome!# cuDNN acceleration switch (uncomment to build with cuDNN).# USE_CUDNN := 1# CPU-only switch (uncomment to build with

2020-09-04 20:46:58 190 1

原创 对象和类

const成员函数void show()const;land.show();show()是land对象的成员函数。const限定符表示不会修改对象的属性。this指针this指向被调用对象本身,是对象的地址。*this是对象的值。友元函数可以访问类私有属性的非成员函数...

2020-08-12 11:28:32 115

原创 AJAX

XMLHttpRequest的使用创建XMLHttpRequest使用open方法,初始化请求参数使用send方法,发送请求使用onreadystatechange属性,接收返回数据var xhr = new XMLHttpRequest();xhr.open("get", "/ajax", true)xhr.send()xhr.onreadystatechange = function(){ }...

2020-08-10 09:10:12 93

原创 第9章 内存模型与名称空间习题

a. 自动变量b.应该在一个文件中将secret定义为外部变量,并在第二个文件中使用extern来声明它。c.可以在外部定义前加上关键字static,将topsecret定义为一个有内部链接的静态变量,也可在一个未命名的名称空间中进行定义。d.应在函数中的声明前加上关键字static,将beencalled定义为一个本地静态变量。using 声明:using 名称空间名 :: 名称 例如:using Jill:: fetch;//这是一个using 声明。using 编译指令:usin...

2020-08-09 17:18:41 94

原创 内存模型和名称空间

引入头文件include <coordin.h>include "coordin.h"尖括号:在标准头文件中查找双引号:先在当前g先在当前工作目录查找;找不到,则去查找标准头文件几种变量存储方式自动变量int x;在程序开始执行所属的函数和代码块时创建;在执行完函数和代码快时被释放。寄存器变量register int x;变量存储在寄存器中,因此不能通过地址来访问静态变量int global = 1000;//静态变量,外部链接性static

2020-08-09 16:44:30 99

原创 内置对象

栈:由操作系统自动分配释放存放函数的参数值、局部变量的值等。简单数据类型存放在栈里面。堆:存储复杂类型(对象),一般由程序员分配释放。若程序员不释放,由垃圾回收机制回收。复杂类型存放在堆里面。...

2020-08-08 11:30:28 97

原创 函数与对象

函数声明利用函数关键字自定义函数function f(){}函数表达式var f = function(){}作用域在函数内不使用var声明直接赋值的变量function f(){ var a = 0}console.log(a)对象利用字面量创建 var obj = { name: "jim", age: 18 sayHi: function(){

2020-08-07 12:37:07 84

原创 Docker

常用命令docker versiondocker info列出正在运行的容器docker ps启动容器docker -helpdocker run –name=“容器新名字”-d: 后台运行容器-i: 以交互模式运行容器-t: 为容器重新分配一个伪终端退出容器exit容器停止退出ctrl+P+Q容器不停止退出...

2020-07-24 20:25:16 91

原创 函数

内联函数inline double square(double x) { return x*x; }在函数定义/声明前加上inline。引用变量创建引用变量int a;int & b = a;a和b指向相同的指和内存单元。int a = 1;int & b = a;//引用int *c = a;//指针引用与指针的相同点:都可以通过b和*c来访问和修改变量引用与指针的不同点:引用必须在声明时就初始化,而指针可以先声明再赋值在引用初始化后,就与改变量关联起

2020-07-22 17:07:51 148

原创 运算符

比较运算符==会默认转换数据类型。3=='3'的结果为true===则要求值和数据类型完全一致。3==='3'的结果为false

2020-07-21 17:30:13 92

原创 数据类型

js书写位置行内式 <body> <input type="button" value="dog" onclick="alert('cat')"></body>内嵌式<head> <script> alert("tiger"); </script></head>外部js#html<head> <script src="my.j

2020-07-15 12:08:22 108

原创 CSS定位

定位定位属性position元素在页面中的位置定位位置top bottom left right层级z-index层级越大、值越大、越是覆盖在其他元素上边只在position属性为absolute时有效相对定位relative相对于标准文档流中的默认位置来定位绝对定位absolute相对于除static定位之外的第一个父元素进行定位。如果没有,就相对于页面定位。...

2020-07-05 12:13:55 83

原创 CSS浮动

浮动float属性样式none不浮动left向左浮动right向右浮动清除浮动clear元素浮动引起父元素塌陷,影响布局效果。clear属性属性样式none无控制left左侧不允许浮动right右侧不允许浮动both两侧都不允许浮动overflow属性设置元素不够容纳内容时的显示方式。属性样式auto自动添加滚动条hidden隐藏超出的内容scroll

2020-07-04 23:42:03 89

原创 CSS盒模型

###何为盒模型所有的html元素都可以看作为一个盒子盒模型的构成内边距paddinghtml元素内容和边框之间的区域属性:padding-top(上内边距)padding-right(右内边距)padding-bottom(下内边距)padding-left(左内边距)padding(简写) 注意顺序:上 右 下 左边框border围绕元素内容和内边距的一条边线边框样式boader-style边框宽度boader-width边框颜色border-color可以

2020-07-04 21:50:19 113

原创 css常用属性

字体font-family只有本地支持改字体,才能显示出来。字体尺寸font-size字体样式font-sytle属性值样式normal标准italic倾斜字体粗细font-weight属性值样式normal正常(400)bold粗体(700)bolder更粗lighter更细也可以设置一个具体的数值100、200、300、400、500、600、700、800、900简写font

2020-07-04 11:47:20 111

原创 css选择器

CSS简介css引入内联样式<body> <h1 style="color: red">css</h1></body>内部样式 <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="

2020-07-03 11:28:42 116

原创 html常用标签

标题<h1>~<h6><body> <div>iphone</div> <h1>iphone</h1> <h2>iphone</h2> <h3>iphone</h3> <h4>iphone</h4> <h5>iphone</h5> <h6>iphone&lt

2020-06-29 21:24:41 91

原创 [l论文笔记]Energy and Performance Efficient Computation Offloading for Deep Neural Networks in a Mobile

Energy and Performance Efficient Computation Offloading for Deep Neural Networks in a Mobile Cloud Computing Environmentcontributionproviding a framework to query DNNs efficiently on mobile devices collaborat- ing with cloud server in the presence of bat

2020-06-20 15:57:14 230

原创 【论文笔记】Edge-Host Partitioning of Deep Neural Networks with Feature Space Encoding for Resource-Constr

Edge-Host Partitioning of Deep Neural Networks with Feature Space Encodingfor Resource-Constrained Internet-of-Things PlatformsIt propose an edge-host partitioning method, which combines model partition with lossy feature encoding. That is, the intermedi

2020-06-19 21:08:04 247 1

原创 [论文笔记]Neurosurgeon: Collaborative Intelligence Between the Cloud and Mobile Edge

keypointsHow feasible it is to execute large-scale intelligent workloads on today’s mobile platforms?At what point is the cost of transferring speech and image data over the wireless network too high to justify cloud processing?What role should the mob

2020-06-19 16:47:37 980

原创 caffe安装

系统环境Mac OS Catalina 10.15安装步骤1)General dependenciesbrew install -vd snappy leveldb gflags glog szip lmdb问题:Error: The following directories are not writable by your user:/usr/local/share/zsh/usr/local/share/zsh/site-functionsYou should change th

2020-05-17 20:39:12 125

原创 第12章 类和内存动态分配复习题

1a没有为str,len制定默认值bstr指向s,可能存在二次释放的问题;len 应该为strlen(s) + 1c没有为str分配内存,应使用new char[strlen(s) + 1]来分配2析构函数里没有将指针成员释放复制和赋值时,直接使用浅复制,导致内存二次释放构造函数和析构函数中new和delete不对应。3默认构造函数、析构函数、拷贝(复制)构造函数、赋值函数...

2020-03-04 12:27:11 157

原创 第十一章 使用类复习题

Stonewt Stonewt::*(double n){ Stonewt temp; temp.stone = stone * a +pound * a / 14; temp.pounds = (pound * a) % 14; return temp;}友元函数:①函数原型需要使用friend;②调用的对象一般是非类对象;③在运算符重载函数里,有两个参数,并且往往一...

2020-02-27 15:30:59 118

原创 选项排除

识别相似项的能力相似选项是指两个选项针对同一事物或情况,但同时又有细节的不同之处。审题时如果发现两个相似选项,即可优先排除非相似选项。识别极端选项的能力指选项中含有绝对词,这样的选项通常也可优先排除。绝对词例如:no, none, nothing, never, always, only, must, all...

2020-02-26 17:37:29 129

原创 数字替换及解释性替换

识别常见数字替换类型的能力表示比例的数字替换数字与句子替换解释型替换录音当中不会听到原词,通常被一句话所替换常见形式句子解释数字25-31 Januarythey’re put it at the end of the month.severalthere are plenty of others in the program.句子解释单词te...

2020-02-26 17:29:11 434

原创 第十章 对象和类复习题

就是拥有相等功能和相同的属性的对象的集合2.类是对象的抽象,通过将属性与方法封装在一个类中,且设置访问权限,对外只提供部分接口来实现封装与隐藏。3.类是对象的抽象,而对象是类的具体实例。4.函数成员对数据成员进行操作,数据成员就是类对象的属性5.class account{private: string name; string id; doubl...

2020-02-24 16:10:46 157

原创 第十章对象和类编程题

#include <iostream>#include <string>using namespace std;class account{private: string name; string id; double deposit;public: account(); account(string n, str...

2020-02-24 16:10:25 184

原创 地图题

看清题号顺序(提示路线)标示词指向标听清起点(now, here, let me see)方位词(后跟答案)方位词 = 位置词(静态)+ 方位词(动态)位置词(静态)A、总体性描述B、部分性描述across/ oppositefar-from(离得远)close to/ beside(靠近)between(两者中间)next toat the end...

2020-02-21 21:15:25 385

原创 Deep Learning With Edge Computing: A Review

Deep Learning With Edge Computing: A Reviewintroductionthe challenge of moving data from source to cloudlatencyscalabilityprivacyaccommodating the high resource requirements of deep learning on...

2020-02-21 16:17:22 1143

原创 租房场景词汇总结

房屋类别英文中文flat/ apartment公寓hall of residence学生宿舍host family寄宿家庭sitting room起居室living room起居室playroom儿童娱乐房间laundry洗衣房位置朝向中心center、downtown郊区outskirts、su...

2020-02-21 12:16:53 275

原创 特殊词定位

专有名词人名Spoken to Jane Prince, head of ______地名Irish axes were exported from Ireland to _____ and Egland.首字母大写的词或词组Subtitles were added to The Lights of New York because of its _____数字(不被替换...

2020-02-18 11:45:30 132

原创 地点预测

根据语法预测(常见接地点的介词)常见接地点的介词 at, in, onI shall wait for you at the station. (较小的地方)He lives at 14 Hill Road。(门牌号码前)He lives in Shanghai. (较大的地方)LanZhou is on the HuangHe River. (在…上/旁)上下文意思猜测go...

2020-02-18 11:36:06 192

原创 Ryu安装

Ryu网址apt更新sudo apt-get upgdate安装gitsudo apt-get install git这时候出现了一个问题E: Could not get lock /var/lib/dpkg/lock-frontend. It is held by process 3104 (unattended-upgr) - open (11: Resource te...

2020-02-16 20:03:05 457

原创 听力

个人信息表格题对比表格题

2020-02-16 16:15:06 501

原创 对比表格题

纵向看题纵向信息答案格式一致顺序词提示转行-fisrt…sencond…thirdnext/ also/ after thatfinally/ last技巧语气变化引出答案语气突然上升,突然下降,可以重读...

2020-02-16 16:12:35 144

原创 Cambridge4 TEST3

1.exmplify = example = case = instance 例证 v.2.explian = tell = say what/why/wherer = show = demonstrate = go through = throw/shed light on 解释 v.3.purpose = aim = point = idea = objecutive = object ...

2020-02-16 14:52:40 174

原创 数字听写及预测

时间听写10:30 ten thirty/ half past ten10:45 ten forty five/a quarter to eleven10:00 ten o’ clock at noon = mid-day = 12 o’clock日期听写Date: 28 Junethe twenty-eighth of June / June the twenty -eigh...

2020-02-15 16:05:08 377

原创 专有名词听力

基本能力发音易混淆的字母 A/E; O/L;M/N; G/J连读两个相同的字母可能会用到double, "double R"的连读字母解释Shannon——S-H-A(that’s A for apple)人名听写Wendy HarriesH-A-double R- I-E-S可能把double R 听成double L,即Hallies,发音不对Sam...

2020-02-15 14:33:00 246

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除