Simon Shi的小站

人工智能,机器学习 学习记录


  • Home

  • About

  • Tags

  • Categories

  • Archives

C++ 多线程互斥锁(mutex,lock,lock_guard)

Posted on 2022-03-22 | In dev , c++
[TOC] 源代码12345678910111213141516171819202122232425262728293031323334#include <iostream>#include <thread>void work1(int& sum) { for (int i = 1; i < 5000; i++) { sum += i; }}void work2(int& sum) { for (int i = 5000; i <= 10000; i++) { sum += i; }}int fun() { int sum = 0; for (int i = 1; i <= 10000; i++) { sum += i; } return sum;}int main(){ int ans = 0; s ...
Read more »

自动驾驶课程笔记--王博kings

Posted on 2022-03-03
王博Kings:Apollo无人驾驶课程笔记总览 王博Kings:Apollo无人驾驶课程笔记1-无人驾驶概览 王博Kings:Apollo无人驾驶课程笔记2-高精度地图 王博Kings:Apollo无人驾驶课程笔记3-定位 王博Kings:Apollo无人驾驶课程笔记4-感知 王博Kings:Apollo无人驾驶课程笔记5-预测 王博Kings:Apollo无人驾驶课程笔记6-规划 王博Kings:Apollo无人驾驶课程笔记7-控制
Read more »

High performance tools collection

Posted on 2022-02-27 | In Tools
Tools-Work: 论文: http://xxx.itp.ac.cn/ https://arxiv.org/ https://paperswithcode.com/ https://www.researchgate.net/ http://sci-hub.ee/ Google学术(Mirror)https://xs.scqylaw.com/ https://www.scihub.net.cn/ 云文件: 百度云,OneDrive,GoogleDrive, 笔记: WPS,OneNote,有道云笔记,印象笔记,石墨文档,语雀,Trello MarkText, Typora,Notepad++ PDFCandyEPUB 转 PDF: 下载文件, Ipad pen: GoodNote,Noteablity 思维导图: Xmind,ProcessON 流程图: Visio,UML,Drawio 扫描: Scan (前端)图片标注 PxCook vitural Network: Zerotier 3D Render: Blender, ...
Read more »

Papers Log 2022 (Todo)

Posted on 2022-02-24 | In Papers , Years
Read more »

LeetCode

Posted on 2022-02-15 | In Algorithm
Read more »

MultiModal Machine Learning (MMML)

Posted on 2022-02-05 | In AI , ML
转自 什么是多模态机器学习? 模态(Modality) 每一种信息的来源或者形式,都可以称为一种模态。例如,人有触觉,听觉,视觉,嗅觉;信息的媒介,有语音、视频、文字等;多种多样的传感器,如雷达、红外、加速度计等。以上的每一种都可以称为一种模态。 MultiModal Machine Learning (MMML) 多模态机器学习,英文全称 MultiModal Machine Learning (MMML),旨在通过机器学习的方法实现处理和理解多源模态信息的能力。目前比较热门的研究方向是图像、视频、音频、语义之间的多模态学习。 多模态学习可以划分为以下五个研究方向: 多模态表示学习 Multimodal Representation 模态转化 Translation 对齐 Alignment 多模态融合 Multimodal Fusion 协同学习 Co-learning
Read more »

TensorRT Ubuntu Env

Posted on 2022-02-03 | In AI , deploy , TensorRT
Ubuntu 安装tensorRT 1、下载https://developer.nvidia.com/nvidia-tensorrt-download https://developer.nvidia.com/nvidia-tensorrt-8x-download https://developer.nvidia.com/nvidia-tensorrt-5x-download WindowUbuntuUbuntu安装TensorRT TensorRT python API 安装
Read more »

VMware

Posted on 2022-02-01 | In Tools
0、文件准备 VmwarePalyer ubuntu-desk.iso 1、硬件配置1、CPU查看是否虚拟化开启 2、开启Windows功能 Windows虚拟机监控程序平台 虚拟机平台 optionalFeatures 2、系统安装 3、快捷键Ctrl-Alt-Enter 进入全屏模式 ctrl+alt+insert 退出全屏 Ctrl-Alt 返回正常(窗口)模式 Ctrl-Alt-Tab 当鼠标和键盘焦点在虚拟机中时,在打开的虚拟机中切换。 Ctrl-Tab 当鼠标和键盘焦点不在虚拟机中时,在打开的虚拟机中切换。VMware Workstation应用程序必须在活动应用状态上。 Ctrl-Shift-Tab 当鼠标和键盘焦点不在虚拟机中时,在打开的虚拟机中切换。VMware Workstation应用程序必须在活动应用状态上。 Ctrl-D 编辑虚拟机配置 Ctrl-G 为虚拟机捕获鼠标和键盘焦点 Ctrl-P ...
Read more »

C++ 数据结构与算法

Posted on 2022-02-01 | In Algorithm
《基于c++的数据结构与算法》bilibili GeekBand 数组和字符串 链表 栈与队列 二叉树 排序 动态规划、递归 图 高频算法 https://www.cnblogs.com/hithongming/p/9229871.html
Read more »

Linux CMD

Posted on 2022-01-28 | In OS , Linux
[TOC] ref: 常用工作命令-shixx 快捷键12345打开一个terminalctrl+alt+t在terminal中打开多个标签ctrl+shift+t apt12# apt 命令打印软件包下载地址 -o Debug::Acquire::http=trueapt-get -o Debug::Acquire::http=true install nginx 进程相关ps (kill)12ps -ef | grep train.py | grep lianzha | grep -v grep | awk '{print "kill -9 "$2}' | shps -ef | grep torch | grep -v grep | awk '{print "kill -9 "$2}' | sh watch123watch -n 0.5 nvidia-sminvidia-smi -l 0.3 网络端口netstatnetstat 查看端口占用语法格式: 1234567netstat -tunlp | grep 端口号-t (tcp) ...
Read more »
1…151617…29

Simon Shi

286 posts
132 categories
243 tags
RSS
© 2024 Simon Shi
Powered by Hexo
|
Theme — NexT.Muse v5.1.4