自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (1)
  • 收藏
  • 关注

转载 latex宏包安装

https://blog.youkuaiyun.com/Jiajikang_jjk/article/details/80447969

2019-04-11 14:25:57 9399

转载 转载-码分多址

https://blog.youkuaiyun.com/huanhuan_Coder/article/details/83012467

2019-04-11 14:24:22 231

转载 转载-码分多址

https://blog.youkuaiyun.com/huanhuan_Coder/article/details/83012467

2019-03-07 00:38:15 404

原创 leetcode-除自身以外数组的乘积

左右遍历数组 一开始还出了个错 打印出来发现news也被改变了,大概是因为函数里面传进来的参数别的变量再等于它的话就会共享一个空间吧,改了就好了。 ...

2019-03-04 21:03:34 232

原创 leetcode-反转字符串中的单词

在上次的基础上改改就好了

2019-03-04 20:13:38 406

原创 word2vec

首先感谢一下joey老师,通过深度之眼这个平台认识的 skip-gram听cs224n老师几次,总是没有完全理解,这次有了一个较好的认识。 先附上官方note https://web.stanford.edu/class/cs224n/readings/cs224n-2019-notes01-wordvecs1.pdf 先大致写一下这个note里面有讲什么吧: Introduction to N...

2019-03-04 16:46:47 276

原创 leetcode-反转字符串

遍历反转

2019-03-03 18:30:06 126

原创 leetcode-字符串相乘

第一下,超出时间了

2019-03-02 21:55:02 175

原创 leetcode-盛最多水的容器

class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ maxarea=0 for i in range(len(height)-1):

2019-03-01 20:46:10 208

原创 数据竞赛达观杯-数据初识

首先是报名竞赛,下载数据,比赛链接。 数据下好之后会有一个train_set和test_set。我们先把train_set分为train_set和valid_set。 先把csv格式数据读入python中 csv读入会以下两种办法: 用csv标准库读取 import csv csv_reader = csv.reader(open("train_set.csv")) 用pandas读取 ...

2019-03-01 20:07:26 456

原创 leetcode-删除重复

第一遍 class Solution(object): def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ if len(nums)==0: return 0 j=0 ...

2019-02-28 21:11:13 176

原创 leetcode-有效符号

https://leetcode-cn.com/problems/valid-parentheses/submissions/ 问题:还不知道怎么样是提高效率,只会随便使用完成结果 class Solution(object): def __init__(self): self.bracket_l = ['(','[','{'] self.bracket_r...

2019-02-27 21:35:52 286

转载 scipy矩阵操作

转载scipy矩阵操作

2018-11-14 16:54:21 1258

原创 week1-nlp-coursera 代码

from ast import literal_eval literal_eval函数 pandas.read_csv(filename, sep=’\t’) 官方网址:http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html 此处用到的参数解释: 此函数的作用-Read CSV (comma-sep...

2018-11-06 23:09:09 175

原创 Python中函数eval和ast.literal_eval的区别详解

转自文章

2018-11-06 11:32:10 1152

原创 week1-text preprocessing->feature extraction

This week, we focus on text classificationtext preprocessingTokenizationNormalization tips: text classification can be used to sentiment analysis. text preprocessing Tokenization How to process text d...

2018-11-05 10:50:07 377

原创 week1-nlp-coursera-docker安装配置

官方课程关于docker安装 操作系统win10, 官网下载安装docker toolbox

2018-11-04 22:40:29 189

原创 week1-nlp-coursera-intro

Intro to NlpMain approaches in NlpRule-based methodProbabilistic modeling and machine learningDeep learningArrangement Main approaches in Nlp Here, this video goes through all three main approaches by...

2018-11-02 11:27:49 164

原创 cs229第一节课-初识机器

目录监督学习无监督学习 监督学习 supervised learning, Andrew Ng doesn’t give its definition directly. He use two examples:Regression and Classification. Still classification More than one feature Therefore, in my o...

2018-10-31 16:34:50 175

网易云评论爬取-代码

网易云评论的爬取,全部代码已经在压缩包里拉,大家自取

2019-04-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除