logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

(一) oracle:decode()函数<-->postpresql:case when函数

Oracledecode():select decode(student_name,‘乱七八糟’,null,student_name) from student_info等价于Postgresql:case when:select case when student_name= ‘乱七八糟’ then null else student_name end from student_info附:de

#postgresql#oracle
python中通过gensim引入word2vec提示:DLL load failed: 找不到指定的模块。有奇效的、简洁的办法!

一、问题:gensim的依赖包有:(1)numpy(2)scipy。在安装好了的gensim,numpy,scipy三个包之后使用from gensim.models import word2vec或者import gensim会提示DLL load failed: 找不到指定的模块。二、思考:明明已经安装好了这三个包仍然报错。这个时候可以考虑三个版本是否想匹配的问题。**三、方法:*...

#word2vec
到底了