
🔥人工智能
笔记和资料,涉及到深度学习、自动驾驶等领域。
🔥机器人
包括ROS机器人框架笔记。Beginer Friendly

✅Python教程
从0到1,在深入人工智能的全套Python笔记。

❤️经验经历
过往的感悟和思考。发病日记。

✨碎片技术
学习工作中遇到的很赞的技术碎片,整理好了。

✨学习积累
相对于碎片技术的,已经沉淀为自己的资本的内容。
Distinguish Two "And" in Python
Most important first: & is a bit-wise operator while “and” is a logical connector.
Property of these twoFirst I need to cite a piece from the instructor given link:
(year%4==0 & 92) will be evaluated.
year%4==0 = 0
(0 & 92) ==> 0000000 & 1011100 ==> 1011100 ==>92, which is a True value because it is non zero value.
Hence the result will be True.
There are some mistake made by the author (reason has discussed in fol ...
基于 Github 的博客搭建
这篇文章整理了我在搭建我自己的博客网站的时候用到的素材和教程。本文主要分六部分:网页导航、博客功能扩展、常用指令、博客搭建过程一览、遇到的问题、小知识点。
想要尽快开始搭建自己的博客的读者,请移步到博客搭建过程一览。
网页导航
我的博客网址。
Hexo 官方 Github 仓库。
一个比较好的 Hexo theme。
Hexo 官网的安装和部署教程。
Blog 和 Markdown 文件的预设操作,使用 Hexo 的各种功能。
博客功能扩展
添加看板娘。
添加标签和分类。
常用命令
$ hexo init 在当前文件夹初始化一个 Hexo 博客项目。
$ hexo new [layout] <title> 新建一个名字是 title 的博客文档。layout 一般都是 blog。
$ hexo server 将博客部署到本地,默认本地连接:localhost:4000/。
$ hexo clean 清除缓存,能够解决一些问题。
$ hexo d -g 部署到 Github 上。
博客搭建过程一览
在 Github 上创建一个名为 name.github.io 的仓库, ...
Windows 微痛转 Linux: 万万没想到肯德基的网竟然这么好
✨为什么要 LinuxLinux 的简介可以找度娘问问,就不赘述了。这里我们来说说 Linux 的特性。
首先 Linux 系统有 win 和 mac 无法比拟的可定制性,上到软件的表现,下到硬盘的划分都是可以修改的(也就是说,你可以制作属于你自己的 Linux 系统,也可以把你的系统优雅地粉碎 \手动滑稽)。其次 Linux 对与软件的管理有自己的一套,可以非常简单地安装、更新、卸载。如果习惯了使用 sudo apt 指令来控制软件(Linux 里习惯用 package 也就是包而不是软件来形容),你会发现你操作计算机的速度变快了。因为省去了鼠标的活动,你可以把想做的事情告诉电脑,让电脑帮你完成,而不是你自己去完成。因此,在开发人员和效率至上的人眼中,Linux 是有魔力的。
除此之外,Linux 在学生群体中也是非常受欢迎的。Linux 的发行版系统一般是遵循 GNU 协议的,属于类 Unix 开源系统,这赋予了这个系统新的特点:底层源代码可以被随意修改。在看到 Linux 在学生手中,尤其是喜欢瞎鼓捣的学生手中的魔改版本之后,说 Linux 是一个寓教娱乐的玩具也不为过。
...
《基于Python的大数据分析基础及实战》精简读书笔记
INTRODUCTION这是一本写给初学者的数据分析和Python使用教程,比较通俗易懂,但是在关键知识点的解释上不尽如人意,是本入门级的书。
LIST OF KEY POINTSPython基础部分
定义:带键值参数传递,变量的类型为键值对,但又与一般的字典类型的定义不同。举例为:函数定义:func(**[variable]) ;使用:func(aa=11,bb=22,cc=33) 此处的长度可随意。
定义:回调函数,传递变量给一个函数的方法。可以理解为一种更加自由的命名方式,方便使用。相关术语:回调函数、登记回调函数、出发回调关联事项、调用回调函数、响应回调事件。
关键点:递归的过程中,iterator(及 yield 关键词)的使用能够极大的减小内存使用。原理:yield 关键词把一个函数转变成了generator,函数返回itarable对象。
相似点:Haskell 中的 foldl 和 Python 的 reduce 函数及其相似,使用方法也是大同小异。(其他相似的还有 map 和 filter 函数)
定义:私有变量和私有方法也就是 ja ...
自动化-爬取公主连结Re:Dive官方动态
爬虫自动化20200719自动爬虫使用了spring boot的Quartz定时任务方法。
本文学习借鉴了这篇博客,感谢 gnail_oug。
添加quartz依赖在pom.xml的dependencies下添加一个quartz依赖
12345<!-- quartz --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-quartz</artifactId> </dependency>
编辑需要自动化的类
导入quartz包
extends QuartzJobBean。
override executeInternal method
123456789101112// package XXXXX.XXXX.XXX;import org.quartz.JobExecutionContext;import org.quartz.JobExecut ...
爬取公主连结Re:Dive官方动态
公主连结 Re:dive QQ bot 项目概述游戏资讯QQbot,涉及到了很多关于爬虫,接口,Json,SQL数据库,Java Spring,Maven,GitLab的使用和小知识点。
零散的知识
git MERGING 状态解决
12git reset --hard head# 回退到上一步
.msi是二进制安装文件
日志文件重定向,spring的配置文件
.xml或.yml这类文件是配置文件,也就是可以被编程语言识别的东西
git的两种clone方式:
HTTP
SSH
前端调用controller。然后controller处理请求。再调用service处理业务逻辑。
现在基本上所有的互联网公司。都是这么个结构(贫血模型)。
前后端分离。前端发出请求。
前端的请求到controller中。
由controller处理请求并响应。
由service处理业务。
由dao进行数据交互进行分层开发。
相较于VS Code,typora更加简洁,就图片插入和一些markdown设定而言更加快捷。
在WWW上每一条信息都有唯一网络地址,这就是URL
Gitlab 详 ...
这是我的第一篇文章
没有什么好说的,很有趣。
希望未来风调码顺!
Hello World in the Word of Static Web Page!!!
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server
1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
ARO Additional Knowledge
1. Gradient Descent Approach in Robotics1.1. Demo Case Study: Optimizing Path Planning for an Autonomous Vehicle
Super Domain: Optimisation in Robotics
Type of Method: Numerical Optimization Technique
1.2. Problem Definition and Variables
Objective: To find the optimal path for an autonomous vehicle to navigate from a starting point to a destination while minimizing a cost function.
Variables:
$\mathbf{x}$: Vector representing the state of the vehicle (position, velocity, etc.).
$f(\mathbf{x})$ ...
ARO Robot Controller
1. First-Order Error Dynamics (PD control)1.1. Demo Case Study: Velocity Control of a Mass-Damper System
Super Domain: Control Systems, Dynamics
Type of Method: Error Dynamics Analysis
1.2. Problem Definition with Variables Notations
Objective: Analyze the error dynamics of a system to predict how the system responds to a change from a desired state, focusing on velocity control.
Variables:
$\theta_e$: Error in position or angle.
$\dot{\theta}_e$: Error in velocity.
$m$: Mass of the object.
$b$ ...
ARO Robot Dynamics
1. Spring-Damper System Analysis1.1. Demo Case Study: Vehicle Suspension System Design
Super Domain: Mechanical Engineering and Dynamics
Type of Method: Analytical Modeling
1.2. Problem Definition and Variables
Objective: To design a vehicle suspension system that maximizes comfort by minimizing the impact of road irregularities on the vehicle’s passengers.
Variables:
$x(t)$: Displacement of the vehicle body or suspension component at time $t$.
$m$: Mass of the vehicle or the portion of the ve ...
ARO Robot Motion Planning
1. Motion Planning in Robotics1.1. Demo Case Study: Navigating an Autonomous Rover on Mars
Super Domain: Motion Planning
Type of Method: Pathfinding in Complex Environments
1.2. Problem Definition and Variables
Objective: Plan collision-free motions for a rover from a start to a goal position among a set of obstacles on a Martian landscape.
Variables:
Environmental model, including terrain map and obstacle positions.
Rover’s capabilities, including its movement constraints and geometry.
1.3. ...
ARO Robot Kinematics
1. Kinematic Tree, Kinematic Chain, and Forward Geometry and Backward Geometry in Robotics1.1. Demo Case Study: Robotic Arm for Assembly Line Tasks
Super Domain: Kinematics in Robotics
Type of Method: Kinematic Analysis and Control
1.2. Kinematic Tree and Kinematic Chain
Objective: To model the structure and movement of a robotic arm.
Kinematic Tree:
Represents the hierarchical structure of a robot.
Includes all possible movements and connections between different components.
Kinematic Chain: ...
Coding Note
apt install libopenblas-dev
bash setup.sh cue server
Checklist and Plan
Notice
Use CUE as baseline.
Ideas
Use information theory to explain the process.
Plan
Use uncertainty estimation method in CUE.
Evaluate CUE on semantic kitti (outdoor), or scannet v2 (indoor).
Extract uncertainty estimation method of CUE.
Achieve socket communication for model inference for CUE model.
Socket communication.
Local small model training, calculate uncertainty information.
Cloud large model training, with global feature map and compressed point cloud input.
Deploy to e ...