终南小道
码龄7年
关注
提问 私信
  • 博客:72,665
    问答:924
    73,589
    总访问量
  • 94
    原创
  • 1,429,221
    排名
  • 13
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:上海市
  • 加入CSDN时间: 2018-03-09
博客简介:

weixin_41811657的博客

查看详细资料
个人成就
  • 获得40次点赞
  • 内容获得4次评论
  • 获得161次收藏
  • 代码片获得214次分享
创作历程
  • 2篇
    2022年
  • 20篇
    2021年
  • 65篇
    2020年
  • 2篇
    2019年
  • 9篇
    2018年
成就勋章
TA的专栏
  • PaperReading
    1篇
  • 图像分割
    1篇
  • Matplotlib
    1篇
  • Object Detection
    1篇
  • 剪视频
    1篇
  • Leetcode
    75篇
  • Linux
  • 算法
    1篇
  • CS基础
    1篇
  • C++
    9篇
  • 深度学习
  • 高等数学
  • Python面试基础
    1篇
  • l
    1篇
  • Python
    7篇
  • Tensorflow
    1篇
  • MATLAB
    1篇
兴趣领域 设置
  • 人工智能
    opencv计算机视觉目标检测深度学习tensorflowpytorch
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

DeepLab_ResNet_Model

发布资源 2022.06.26 ·
pth

VOC2007Train

发布资源 2022.06.26 ·
rar

数据、临床指标、分斌率

发布资源 2022.04.23 ·
rar

linchuanghzibiao

发布资源 2022.04.22 ·
xlsx

分割的 Mask 用于覆盖原图

发布资源 2022.04.18 ·
rar

Compute_volume_ef

发布资源 2022.04.17 ·
rar

Multi-Task Learning as Multi-Objective Optimization

本文将多任务学习作为多目标优化,总体目标是找到帕累托最优解。现有的MGDA(multiple-gradient descent algorithm)缺陷:(i) The underlying optimization problem does not scale gracefully to high-dimensional gradients, which arise naturally in deep networks.(ii) The algorithm requires explicit co
原创
发布博客 2022.01.25 ·
511 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

分割指标计算

计算语义分割指标参考库medpy
原创
发布博客 2022.01.23 ·
213 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

2021-09-23

Python 颜色表RGB颜色参考
原创
发布博客 2021.09.23 ·
154 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Detectron2

Detectron2安装及使用Detectron2为facebook的开源目标检测检测框架,里面包含Faster R-CNN、Mask R-CNN等目标检测网络。安装使用Git命令下载detectron2文件:git clone https://github.com/facebookresearch/detectron2.git下载完成后,进入根目录下:cd detectron2然后运行:pip install -e .未完待续…...
原创
发布博客 2021.07.29 ·
418 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ffmpeg处理视频

剪切用 -ss 和 -t 选项, 从第 30 秒开始,向后截取 10 秒的视频,并保存:ffmpeg -i input.wmv -ss 00:00:30.0 -c copy -t 00:00:10.0 output.wmvffmpeg -i input.wmv -ss 30 -c copy -t 10 output.wmv也可以用 -ss 和 -to 选项, 从第 30 秒截取到第 40 秒:ffmpeg -i input.wmv -ss 30 -c copy -to 40 output.w
原创
发布博客 2021.02.13 ·
594 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode206. 反转链表

class Solution {public: ListNode* reverseList(ListNode* head) { ListNode* pre=nullptr; ListNode* cur=head; while(cur){ ListNode* next=cur->next; cur->next=pre; pre=cur; cur.
原创
发布博客 2021.02.10 ·
98 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode53.最大子序和&剑指 Offer 42. 连续子数组的最大和--动态规划

思路本题为动态规划,动态规划所求目标dp[i]为以元素nums[i]结尾的最大连续子序和;当dp[i-1]>0时,dp[i]=dp[i-1]+nums[i];当dp[i-1]$\leq$0时,dp[i]=nums[i];所以,状态转移方程为:dp[i]=max(0,dp[i−1])+nums[i]dp[i]=max(0,dp[i-1])+nums[i]dp[i]=max(0,dp[i−1])+nums[i]C++class Solution {public: int ma.
原创
发布博客 2021.02.09 ·
100 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode209. 长度最小的子数组--双指针

class Solution {public: int minSubArrayLen(int s, vector<int>& nums) { int j = 0, sum = 0, len = INT_MAX; for(int i = 0; i<nums.size(); i++) { sum += nums[i]; while(sum >= s) { len = min(len, i - j .
原创
发布博客 2021.01.30 ·
72 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode523. 连续的子数组和--前缀和、动态规划

#include<iostream>#include<vector>using namespace std;class Solution {public: bool checkSubarraySum(vector<int>& nums, int k) { vector<int> presum(nums.size()); presum[0]=nums[0]; for(int i=1; .
原创
发布博客 2021.01.29 ·
105 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

Leetcode560. 和为K的子数组--前缀和

#include<iostream>#include<vector>#include<unordered_map>using namespace std;class Solution {public: int subarraySum(vector<int>& nums, int k) { unordered_map<int, int> mymap; mymap[0]=1; .
原创
发布博客 2021.01.29 ·
114 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode203. 移除链表元素

# Definition for singly-linked list.# class ListNode:# def __init__(self, val=0, next=None):# self.val = val# self.next = nextclass Solution: def removeElements(self, head: ListNode, val: int) -> ListNode: temp=List.
原创
发布博客 2021.01.28 ·
73 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode80. 删除排序数组中的重复项 II--双指针

C++代码:class Solution {public: int removeDuplicates(vector<int>& nums) { int i=0, count=0, val=nums[0]; for (int j=0; j<nums.size(); j++){ if(nums[j]==val){ count++; } ..
原创
发布博客 2021.01.28 ·
67 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode40. 组合总和 II--回溯算法

#include<iostream>#include<vector>#include<algorithm>using namespace std;class Solution {private: vector<vector<int>> ans; vector<int> path;public: void backtracking(vector<int>& candidates,.
原创
发布博客 2021.01.25 ·
95 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Leetcode216. 组合总和 III--回溯算法

回溯算法三步法1. 确定递归函数参数  本题需要一维数组path来存放符合条件的结果,二维数组result来存放结果集。定义path 和 result为全局变量。接下来还需要如下参数:targetSum(int)目标和,也就是题目中的n。k(int)就是题目中要求k个数的集合。sum(int)为已经收集的元素的总和,也就是path里元素的总和。startIndex(int)为下一层for循环搜索的起始位置。代码:vector<vector<int>> re.
原创
发布博客 2021.01.25 ·
199 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多