原创 零基礎實戰行人重識別ReID

近期正在學習ReID,完全零基礎,打算復現幾種主流的ReID算法。   學習目標:掌握ReID的算法原理、實現方案,動手搭建網絡模型,在數據集上覆現算法。 學習內容:閱讀相關資料、論文、開源代碼,復現算法。 學習時間:3周左右   如果你

原创 AAAI 2020 收錄的百度28篇論文

會議官網:https://aaai.org/Conferences/AAAI-20/ 關注公衆號code4fun,回覆 “百度28” ,打包下載會議收錄的百度研究院的論文。 注:暫缺3篇,已標註,後續更新。   論文清單:  【1】G

原创 YOLO V4論文翻譯及復現

PaddlePaddle官方復現: https://github.com/PaddlePaddle/PaddleDetection/blob/master/configs/yolo/README.md PyTorch 網友復現: http

原创 百度深度學習7日打卡第六期:Python小白逆襲大神 Day1-Python基礎練習

百度深度學習7日打卡第六期:Python小白逆襲大神 https://aistudio.baidu.com/aistudio/course/introduce/1224   Day1-Python基礎練習   作業一:輸出 9*9 乘法

原创 百度深度學習7日打卡第六期:Python小白逆襲大神 Day4-《青春有你2》選手識別

百度深度學習7日打卡第六期:Python小白逆襲大神 https://aistudio.baidu.com/aistudio/course/introduce/1224   Day4-《青春有你2》選手識別     待續。

原创 百度深度學習7日打卡第六期:Python小白逆襲大神 Day2-《青春有你2》選手信息爬取

百度深度學習7日打卡第六期:Python小白逆襲大神 https://aistudio.baidu.com/aistudio/course/introduce/1224   Day2-《青春有你2》選手信息爬取   這個作業主要考察B

原创 百度深度學習7日打卡第六期:Python小白逆襲大神 Day3-《青春有你2》選手數據分析

百度深度學習7日打卡第六期:Python小白逆襲大神 https://aistudio.baidu.com/aistudio/course/introduce/1224   Day3-《青春有你2》選手數據分析   這題主要考察Pand

原创 leetcode 1143. 最長公共子序列

https://leetcode.com/problems/longest-common-subsequence/ 解題思路: 動態規劃,二維數組,記錄最長公共子序列的值。 class Solution { public: i

原创 leetcode 206. Reverse Linked List 鏈表反轉 遞歸、非遞歸

劍指offer第24題 https://leetcode.com/problems/reverse-linked-list/ 1.非遞歸 class Solution { public: ListNode* reverseLi

原创 HDOJ 1231 最大連續子序列 (LeetCode 53、劍指Offer42的拓展)

LeetCode 53、劍指Offer42   都是求   連續子序列的最大和, 來自杭電OJ 1231這道題,不僅求最大和,還要給出子序列的首尾元素。 http://acm.hdu.edu.cn/showproblem.php?pid=

原创 4鄰域、8鄰域問題-DFS/BFS

leetcode 200 島嶼個數 leetcode 695 最大島嶼面積 leetcode 1091  八鄰域,矩陣左上角至右下角最短路徑

原创 leetcode 116. Populating Next Right Pointers in Each Node 完全二叉樹每個節點增加一個水平指針

https://leetcode.com/problems/populating-next-right-pointers-in-each-node/ 1.遞歸 /* // Definition for a Node. class No

原创 leetcode 144. Binary Tree Preorder Traversal 二叉樹前序遍歷-遞歸、非遞歸

https://leetcode.com/problems/binary-tree-preorder-traversal/ 1.遞歸 /** * Definition for a binary tree node. * struc

原创 leetcode 94. Binary Tree Inorder Traversal 二叉樹中序遍歷-遞歸、非遞歸

https://leetcode.com/problems/binary-tree-inorder-traversal/ 1.遞歸: /** * Definition for a binary tree node. * stru

原创 leetcode 113. Path Sum II 二叉樹從根節點到葉節點的路徑-輸出所有結果

https://leetcode.com/problems/path-sum-ii/ /** * Definition for a binary tree node. * struct TreeNode { * int