- 博客(17)
- 收藏
- 关注
原创 paper reading: An Empirical Study of Spatial Attention Mechanisms in Deep Networks
related worksimage recognition [22, 43, 19, 24, 51, 15],and video recognition [53, 45].Study of Spatial Attention MechanismsGeneral attention formulationGiven a query element and a set of key e...
2020-05-06 00:37:03
784
原创 Leetcode 3. 无重复字符的最长子串
class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ start = 0 rec = {} cur_len = 0 ans =...
2019-07-26 15:51:17
140
原创 paper reading: Learning Classifiers from Only Positive and Unlabeled Data
Learning A TRADITIONAL CLASSIFIER FROM NONTRADITIONAL INPUTLet x be an example and let y ∈\in∈ {0, 1} be a binary label. Let s = 1 if the example x is labeled, and let s = 0 if x is unlabeled. Only p...
2019-02-21 06:20:45
302
原创 paper reading: Learning Classifiers from Only Positive and Unlabeled Data
Learning A TRADITIONAL CLASSIFIER FROM NONTRADITIONAL INPUTLet x be an example and let y ∈\in∈ {0, 1} be a binary label. Let s = 1 if the example x is labeled, and let s = 0 if x is unlabeled. Only p...
2019-02-21 04:53:42
1268
1
原创 [LeetCode] Find minimum number of coins (Dynamic Programming)
Ex1:Input: coins[] = {25, 10, 5}, V = 30Output: minimum 2 coins requiredEx2:Input: coins[] = {9, 6, 5, 1}, V = 11Output: minimum 2 coins requiredRecursive SolutionIf V == 0, then 0 coins requir...
2019-01-02 10:57:46
177
原创 MIT/CMU online course guide for computer science
CMU undergraduate CS curriculumhttps://www.csd.cs.cmu.edu/academic/undergraduate/bachelors-curriculum-admitted-2017Computer Science courses in CMU are better, and Math courses for Computer Science i...
2018-12-04 15:57:35
677
转载 Create local symlink corresponding to remote github repo
https://stackoverflow.com/questions/15844542/git-symlink-reference-to-a-file-in-an-external-repository$ git submodule add https://github.com/theHilikus/JRoboCom$ ln -s JRoboCom/jrobocom-core/src/mai...
2018-11-16 17:23:41
155
1
原创 paper reading: TP-GAN
Beyond Face Rotation: Global and Local Perception GAN for Photorealistic andOriginal Paper: TP-GANAbstractTP-GAN simultaneously perceive global structures and local details. Four landmark locate...
2018-11-02 15:03:12
333
原创 Paper Reading: Pose-Aware Face Recognition in the wild
Pose-Aware Face Recognition in the wild (CVPR 2016)paper link: https://www.cv-foundation.org/openaccess/content_cvpr_2016/papers/Masi_Pose-Aware_Face_Recognition_CVPR_2016_paper.pdfAbstractpropose...
2018-11-01 17:23:06
207
原创 Face Recognition README
Face RecognitionA light weight face recognition implementation using a pre-trained facenet model. Most of the code is taken from David Sandberg’s facenet repository.Steps to follow:Create a data...
2018-11-01 15:13:38
160
原创 pointer detection SDK
pointer detection SDKimport osos.environ["CUDA_VISIBLE_DEVICES"] = '0'from keras.models import model_from_jsonimport tensorflow as tfimport cv2import numpy as npimport keras.backend as Kclass...
2018-10-29 09:18:31
126
原创 LeetCode in Python: Remove Duplicates from Sorted Array II
LeetCode in PythonRemove Duplicates from Sorted Array IIclass Solution: def RemoveDuplicatesFromSortedArrayII(self, nums): if len(nums) <= 1: return len(nums) inde...
2018-10-28 14:28:34
190
原创 LeetCode in Python: Remove Duplicates from Sorted Array
LeetCode in PythonRemove Duplicates from Sorted Array (Easy)class Solution: def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ in...
2018-10-28 14:16:07
124
原创 FaceNet source code explanation (part I)
FaceNet source code explanation (part I)Download source code from https://github.com/davidsandberg/facenetDownload pretrained models belowPre-trained modelsModel nameLFW accuracyTraining d...
2018-10-27 14:23:38
296
原创 readme
Export and serve model on tensorflow servingA lightweight, RESTful remote inference library for decoupling deep learning development and deployment.Includes serving trained Keras model for pointer-b...
2018-10-24 17:30:08
412
转载 [深度学习] Python实现卷积神经网络- Convolution
[深度学习] Python实现卷积神经网络- Convolution作者 sunsided github 地址: https://github.com/sunsided/python-conv2dimport cv2import numpy as np# load the image and scale to 0..1image = cv2.imread('clock.jpg...
2018-08-25 04:47:01
1608
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人