
python
VLIAN_
致力于数据挖掘、AI算法与业务层面的打通研究
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows 7 x64 安装Cython/numpy
下载Cython-0.20.2,安装。原创 2014-06-24 23:42:59 · 1907 阅读 · 0 评论 -
recommendation system --Two UserBasedCF Code
user id | item id | rating | timestamp. u.user -- Demographic information about the users; this is a tab separated list of user id | age | gender | occupati原创 2014-06-24 00:06:12 · 909 阅读 · 0 评论 -
python通过cx_Oracle连接oracle设置
Python的Oracle数据库包cx_Oracle。因为我的OS是64位的,所以下了个Python 2.7.7的64位版和cx_Oracle-5.1.2-11g.win-amd64-py2.7。都安装完成了。进入Python的编辑环境 >>> import cx_Oracle Traceback (most recent call last): File "", lin原创 2014-06-10 21:37:09 · 2239 阅读 · 0 评论 -
python 通过循环游标取oracle中的数据
cur = con.cursor() cur.execute('select * from departments order by department_id') for result in cur: print result cur.close()原创 2014-06-11 00:20:12 · 4610 阅读 · 0 评论