- 博客(14)
- 收藏
- 关注
原创 ChangeFormer(A Transformer-based Siamese Network for Change Detection)
ChangeFormer论文地址:A Transformer-based Siamese Network for Change DetectionChangeFormer的三个主要模块:1.一个层次化的transformer编码器(用于提取双时相图片的粗细特征)2.四个特征差异模块(计算不同尺度下的特征差异性)3.一个轻量的MLP解码器(混合多层的特征差异以及预测Mask)Hierarchical Transformer EncoderTransformer BlockAttention(
2022-03-16 22:47:56 3269 5
原创 解决git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.
1.ssh-keygen -t rsa -C '输入自己的邮箱'2.ssh-agent -s3.ssh-agent bash4.ssh-add ~/.ssh/id_rsa5.cd ~/.ssh6.cat id_rsa.pub7.复制SSH Key添加到Github的ssh key 中
2022-02-19 22:57:35 1763
原创 NSGA-II算法
NSGA-II算法论文阅读笔记:A fast and elitist multiobjective genetic algorithm: NSGA-II使用非支配排序和共享的多目标遗传算法几个受限点:1.计算复杂度O(MN3)O(MN^3)O(MN3)。其中MMM是目标数,NNN是种群大小。2.nonelitism approach3.需要指定共享参数NSGA-II减轻了上述三个问题具体而言,NSGA-II的计算复杂度为O(MN2)O(MN^2)O(MN2)。并提出了一个选择算子...
2022-01-25 19:09:18 5726 3
原创 遥感变化检测综述 Change Detection Based on Artificial Intelligence:State-of-the-Art and Change
遥感变化检测综述Change Detection Based on Artificial Intelligence:State-of-the-Art and Change现存的变化检测综述主要专注于在多时态高光谱图像(HSIs)和高空间分辨率图像。并且大致可总结为以下几种传统技术:1.Visual analysis变化图通过人工解译获得,基于专家知识可提供高度可靠的结果,但费时费力2.Algebra-based methods变化图通过在大量多时态数据上进行代数操作或转换获得,例如:图像差异化、
2021-12-05 19:26:08 5383
原创 CBNetV2论文阅读
CBNetV2论文解读论文地址:CBNetV2:A Composite Backbone Network Architecture for Object Detection什么是CBNetV2?CBNetV2使用开源的预训练好的主干网络组成高性能的检测器。这篇论文的主要贡献在于:1.提出了更一般、更高效的网络CBNetV2。2.提出了Dense Higher-Level Composition (DHLC)风格的连接方式和Assistant Supervision(辅助监督)模块,能够更高效的使
2021-11-02 21:06:23 408
原创 Vision Transformer(ViT)解读
Vision TransformerTransformer原本是用在NLP上的模型,直到Vision Transformer的出现,transformer开始了在视觉领域的应用。论文:An Image is Worth 16x16 Words:Transformer for Image Recognition at ScaleSplit Image into PatchesVision Transformer(以下简称ViT)要求将图片划分为大小相同的Patches在上面的划分中,patches
2021-10-05 11:35:29 2880
原创 Swin Transformer论文阅读笔记
Swin Transformer阅读笔记文章目录Overall ArchitectureSwin Transformer BlockShifted Windows based Self-Attentionself-attention in non-overlapped windowsShifted window partitioning in successive blocksEfficient batch computation for shifted configurationRelative po
2021-10-04 20:54:08 1587
原创 YOLOX阅读笔记
YOLOX论文阅读Baseline:DarkNet53 + SPP Layer 同时加入了一些训练策略,EMA权重更新,cosine学习率机制, IoU loss和IOU-aware分支,在训练cls和obj分支时使用BCE Loss,在reg分支使用IoU LossDecoupled head:强大的数据增强策略:Mosaic 和 MixupAnchor-free : YOLOv4和YOLOv5都遵循YOLO3的Anchor-base策略。下面指出anchor机制的几个问题:1.为了实现最佳的检
2021-10-02 22:19:53 381
原创 manjaro开机黑屏
manjaro开机黑屏进不去系统首先systemctl status lightdm.service,如果显示failed那我们首先systemctl enable lightdm.service再systemctl start lightdm.service就可以进入系统了
2021-08-22 13:48:20 1422 1
原创 打开终端如何自动进入conda环境
首先conda config --set auto_activate_bash true这时候关闭终端,一般都能直接进入bash环境但也有碰到不能直接进入的情况,这时候只需要输入conda init bash即可
2021-08-22 11:10:58 4047
原创 C++Primer 第九章 顺序容器
9.4bool func(vector<int>::iterator beg,vector<int>::iterator end,int i){ while (beg!=end) { if (*beg==i) return true; ++beg; } return false;}int main(){ vector<int> v{1,2,3,5,6,9,45,5,8
2021-08-08 08:59:44 91
原创 C++Primer 第八章
8.1,8.2std::istream & func(std::istream& is){ string s; while (is>>s) { cout<<s<<endl; } is.clear(); return is;}int main(){ func(cin);}8.4vector<string> func(string s){ std:
2021-08-01 20:14:10 126
原创 C++ Primer 第七章 答案
C++ Primer 第七章 答案7.1Sales_data.h#ifndef SALES_DATA_H#define SALES_DATA_H#include <string>struct Sales_data{ std::string isbn() const {return bookNo;} Sales_data& combine(Sales_data&); std::string bookNo; unsigned units_
2021-08-01 16:25:33 270
原创 C++ Primer答案 第六章 函数
C++ Primer答案第六章 函数6.4 编写一个与用户交互的函数,要求输入一个数字,计算生成该数字的阶乘#include <iostream>using std::cin;using std::cout;using std::endl;int multify(int ){ int x; while (cin>>x) { int ret=1; while (x>1) { ret *= x--;
2021-07-26 22:43:33 108
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人