自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

帥府

第一,不要为小事担忧;第二,所有的事情都是小事;第三,万一真遇到大事,别慌,看第二条。

  • 博客(22)
  • 资源 (11)
  • 收藏
  • 关注

原创 零基础学TensorFlow(二):初识TensorFlow

前言第一篇文章中我们成功的安装了TensorFlow,并且在代码中引入了TensorFlow。但是对于零基础的我来说,仍然没有搞清楚TensorFlow是个什么东东(相信很多人都感觉这水平很low),在这篇文章中介绍一下TensorFlow是怎么来的,又是干啥的~TensorFlow是什么当开始学习TensorFlow的时候,一般都会找到官网进行学习。对于TensorFlow是什么,官网有一段说明:

2017-06-29 17:52:06 6775

原创 零基础学TensorFlow(一):virtualenv及TensorFlow环境搭建

Python虚拟环境virtualenv安装TensorFlow安装

2017-06-20 22:44:06 5506

原创 LeetCode 算法刷题(13)

13. Roman to IntegerGiven a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.public int romanToInt(String s) { int result = 0;

2017-04-05 17:00:23 307

原创 LeetCode 算法刷题(12)

12. Integer to RomanGiven an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.罗马数字罗马数字是古罗马时期的计数系统,也是最早的数字表示方式,多用于钟表、日历和章节编号。一般认为,罗马数字只

2017-04-03 13:54:32 459

原创 NLTK安装错误集合

运行《Python自然语言处理》中的例子时出现了一系列的问题,零零散散,耗费将近一周的时间,各种问题各种出╮(╯▽╰)╭万事开头难啊~前言基本环境是centos,在这基础上安装nltk,相信会有很多安装教程都有详细说明,当然按照nltk的官方文档是最好的:http://nltk.org/install.htmlnltk安装报ASCII问题这个问题据说是因为python版本问题,好像

2017-03-31 15:50:33 5948

原创 LeetCode 算法刷题(11)

11. Container With Most WaterGiven n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of lin

2017-03-27 18:01:31 705

原创 LeetCode 算法刷题(10)

10. Regular Expression MatchingImplement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The ma

2017-03-26 14:41:34 335

原创 LeetCode 算法刷题(9)

9. Palindrome NumberDetermine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (ie, -1)If you

2017-03-23 18:29:24 228

原创 LeetCode 算法刷题(5)

5. Longest Palindromic SubstringGiven a string s, find the longest palindromic substring in s. You may assume that the maximum length of sis 1000.Example:Input: "babad"Output: "bab"Not

2017-03-22 13:33:59 300

原创 LeetCode 算法刷题(6)

6. ZigZag ConversionThe string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)

2017-03-22 13:30:22 223

原创 LeetCode 算法刷题(7)

7. Reverse IntegerReverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.Note:The input is assumed to be a 32-bit signed

2017-03-22 13:27:00 962

原创 centos gcc 升级4.8

最近在学习kaldi,在测试服务器上进行练习,发现测试服务器的Linux是centos系统,目前的gcc版本是4.4,但是kaldi需要至少为4.7版本的,进行了一次升级,到4.7,make了一下kaldi,仍然报错如下:./../include/fst/shortest-distance.h:283:54: error: no type named ‘Weight’ in ‘using Re

2017-03-19 15:36:49 1073 1

原创 Swagger-PHP 自定义生成API

从此接口文档成为一笑而过,从此服务端不再被客户端追债似得要接口文档主要内容:1、项目背景2、Swagger应用3、总结项目背景          作为一个服务端开发人员,我相信大多数的同学都会和客户端开发同学沟通接口问题。          但是啊,但是,每当我们高高兴兴的开发完成,告诉客户端和前端同学可以调试的时候,通常大家会问一句“文档呢

2016-08-10 11:20:56 12824

原创 LeetCode 算法刷题(4)

4. Median of Two Sorted Arrays There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be

2016-08-01 14:22:21 411

原创 LeetCode 算法刷题(373)

373. Find K Pairs with Smallest Sums You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists of one element from the

2016-07-25 15:59:09 550

原创 LeetCode 算法刷题(3)

3. Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc",

2016-07-25 15:55:46 629 4

原创 mysqlworkbench 'delayed-insert=FALSE'

使用workbench export 数据库,发现报错  'delayed-insert=FALSE',经过查找是mysql版本问题,workbench是5.7,远程mysql是5.6,指定dump的exe文件解决,edit》preferences》Administration》path to mysqldump tool指定自己安装的mysqldump.exe可以解决。

2015-11-03 13:39:56 1065 1

原创 Axis1.4实例说明——服务端、客户端

一、服务端1、下载axis1.4的jar包 2、创建WebProject3、将下载的axis1.4下的所有jar导入到项目中4、修改web.xml文件,这个跟servlet有很多相似的地方,对比着看就行了xml version="1.0" encoding= "UTF-8"?>web-app version="3.0"       xmlns="http:/

2013-06-20 16:05:27 2100

转载 Web前端之struts2框架基于uploadify上传

晒友阁与您分享Web前端 最近在一个上传下载的小功能,为了更加美观,也为了练习一下,我是用了uploadify的jquery插件开发上传功能,简单的struts2下载。下面来介绍一下。上传功能:      上传功能,它主要包括三个层次(这里不包括数据库的链接等问题):jsp页面;struts配置文件;action层java类。      页面上,首先要做

2012-10-08 13:50:26 892

转载 web开发之软件开发读书笔记(一)

晒友阁与您分享web开发开始动手写这篇文章的原因很简单,笔者在一次web开发时遇到了一些问题,例如开发周期短,需求不明确等等。连续十几天晚十二点,早4点的死磕再加上一个通宵过后,总算是连滚带爬的把项目交上去了,但,结果可想而知,必然是差强人意。对于这个结果作为一个职员而言,我觉得自己已经尽力了。而作为一个程序员,我不停的在想,怎样才能做得更好呢?很幸运,偶然的机会看到HeadFir

2012-09-27 21:33:17 825

原创 ORA-01461: can bind a LONG value only for insert into a LONG column oracle

今天碰上一个奇怪的问题ORA-01461:can bind a LONG value only for insert into a LONG column orracle,因为使用myeclipse自动生成的实体类,第一反应我肯定是有在什么地方用了Long型的定义,所以我就找啊找啊,没找到。后来又发现,这个问题是处在一个String类型的值插入上,很是不解,于是,映射文件、配置文件、数据库、实体类

2012-07-31 13:26:35 2401

原创 jquery的wysiwyg富文本编辑器使用

wysiwyg是jquery的一个富文本编辑器,可以应用在网站编辑中。1、下载wysiwyg。2、将wysiwyg解压缩导入到web工程的WebRoot文件夹下3、新建一个jsp页面Example: Full - jWYSIWYG(function($) { $(document).ready(function() { $('#wysiw

2012-07-25 11:11:15 5553 4

obsidian-mind-map

obsidian-mind-map obsidian插件亲测可用 点击设置-》插件管理创建plugins

2023-04-19

Xming-6-9-0-31-setup.exe

SSH远程连接图形化界面

2017-03-31

git版本控制流程

git上线流程文章有故事,有情节,图文并茂,流程带git命令,单位里亲证有用

2016-01-22

cpntools建模工具

一个pertl网建模工具,十分难用,但是老师要求,想下载的可以看看吧

2015-04-13

Hadoop权威指南第三版

Hadoop权威指南第三版 讲解详细,适合入门使用

2015-04-13

java语言 49集 郑莉 清华大学

java语言 49集 郑莉 清华大学 此文档仅用于学习使用

2015-04-13

SpringAOP例子

Spring aop的一个小例子,里面带jar包

2012-11-26

myeclipse8.5反编译插件

可用的myeclipse8.5jad反编译插件

2012-09-10

jwysiwyg福文本编辑器

一个好用的jquery文本编辑器,支持多语言,文本编辑的基本功能都有

2012-07-25

dreamweaver html插件

将此文件解压缩后复制Configuration下所有文件夹,放在Dreamweaver\zh_CN\Configuration下重新启动就能用

2012-07-04

Java复习资料

Java的基础知识,可以帮助刚刚开始学习Java的同学掌握他的基本概念

2011-12-14

空空如也

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

TA关注的人

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