- 博客(17)
- 收藏
- 关注
原创 paper reading: An Empirical Study of Spatial Attention Mechanisms in Deep Networks
related works image recognition [22, 43, 19, 24, 51, 15], and video recognition [53, 45]. Study of Spatial Attention Mechanisms General attention formulation Given a query element and a set of key e...
2020-05-06 00:37:03 743
原创 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 129
原创 paper reading: Learning Classifiers from Only Positive and Unlabeled Data
Learning A TRADITIONAL CLASSIFIER FROM NONTRADITIONAL INPUT Let 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 241
原创 paper reading: Learning Classifiers from Only Positive and Unlabeled Data
Learning A TRADITIONAL CLASSIFIER FROM NONTRADITIONAL INPUT Let 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 594 1
原创 [LeetCode] Find minimum number of coins (Dynamic Programming)
Ex1: Input: coins[] = {25, 10, 5}, V = 30 Output: minimum 2 coins required Ex2: Input: coins[] = {9, 6, 5, 1}, V = 11 Output: minimum 2 coins required Recursive Solution If V == 0, then 0 coins requir...
2019-01-02 10:57:46 156
原创 MIT/CMU online course guide for computer science
CMU undergraduate CS curriculum https://www.csd.cs.cmu.edu/academic/undergraduate/bachelors-curriculum-admitted-2017 Computer Science courses in CMU are better, and Math courses for Computer Science i...
2018-12-04 15:57:35 627
转载 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 145 1
原创 paper reading: TP-GAN
Beyond Face Rotation: Global and Local Perception GAN for Photorealistic and Original Paper: TP-GAN Abstract TP-GAN simultaneously perceive global structures and local details. Four landmark locate...
2018-11-02 15:03:12 315
原创 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.pdf Abstract propose...
2018-11-01 17:23:06 199
原创 Face Recognition README
Face Recognition A 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 153
原创 pointer detection SDK
pointer detection SDK import os os.environ["CUDA_VISIBLE_DEVICES"] = '0' from keras.models import model_from_json import tensorflow as tf import cv2 import numpy as np import keras.backend as K class...
2018-10-29 09:18:31 120
原创 LeetCode in Python: Remove Duplicates from Sorted Array II
LeetCode in Python Remove Duplicates from Sorted Array II class Solution: def RemoveDuplicatesFromSortedArrayII(self, nums): if len(nums) <= 1: return len(nums) inde...
2018-10-28 14:28:34 176
原创 LeetCode in Python: Remove Duplicates from Sorted Array
LeetCode in Python Remove Duplicates from Sorted Array (Easy) class Solution: def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ in...
2018-10-28 14:16:07 111
原创 FaceNet source code explanation (part I)
FaceNet source code explanation (part I) Download source code from https://github.com/davidsandberg/facenet Download pretrained models below Pre-trained models Model name LFW accuracy Training d...
2018-10-27 14:23:38 284
原创 readme
Export and serve model on tensorflow serving A 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 401
转载 [深度学习] Python实现卷积神经网络- Convolution
[深度学习] Python实现卷积神经网络- Convolution 作者 sunsided github 地址: https://github.com/sunsided/python-conv2d import cv2 import numpy as np # load the image and scale to 0..1 image = cv2.imread('clock.jpg...
2018-08-25 04:47:01 1584
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人