
配置环境
文章平均质量分 61
WinneChan
做人最重要是有自己喜欢的东西
展开
-
Allennlp 安装和使用问题
安装指令pip install allennlppip install allennlp-modelscoreference resolution的应用from allennlp.predictors.predictor import Predictor# path can be url or local path (pre-downloaded file)predictor = Predictor.from_path("https://storage.googleapis.com/a..原创 2021-12-08 10:56:55 · 2140 阅读 · 1 评论 -
在windows下搭建python环境,安装python、pip、virtualen、web.py
参考博客:http://blog.useasp.net/archive/2014/01/16/install-python-setuptools-pip-and-virtualenv-in-windows.aspx要安装pip,python的版本一定要是2.7.x这里提供一个2.7.8版本的下载链接:http://pan.baidu.com/s/1qWHh368安装完这个然后去转载 2014-09-22 19:33:34 · 1118 阅读 · 0 评论 -
vs2013 win10 编译libjpeg以及使用CImg加载jpeg图片
1、首先要下载libjpeg的源码,百度网盘链接 http://pan.baidu.com/s/1kUSNOpT , 文件是jpegsr9.zip2、解压以后找到makefile.vc文件,修改!include 成 本机能够找到win32.mak文件的绝对路径,win10系统的通常修改成!include 3、然后再左下角的搜索框里面搜索visual studio tools找到原创 2016-04-06 10:51:21 · 3861 阅读 · 1 评论 -
在Docker Ubuntu镜像中安装tensorflow-gpu
需要在一个Ubuntu的docker镜像中配置tensorflow-gpu环境,按照官网的instruction来一步一步做(安装CUDA的地方有点不同):https://www.tensorflow.org/get_started/os_setupStep 1 安装Anaconda(python 2.7) 官方网站:https://www.continuum.io/downloads#linux原创 2017-02-15 15:10:45 · 1686 阅读 · 0 评论 -
编译MatConvNet(仅CPU版本)
参考文档: http://blog.youkuaiyun.com/dlhlsc/article/details/55194111 http://www.vlfeat.org/matconvnet/quick/ https://zhidao.baidu.com/question/1989112016886530387.html在Matlab里面输入命令:untar('http://www.vlfeat.or原创 2017-03-10 23:21:09 · 1607 阅读 · 0 评论 -
Matlab各种疑难
1. set path错误 想要添加搜索路径,按了set path结果提示找不到pathtool(如果pathdef.m确实存在在toolbox\local文件夹下的话,就按照下面的做法做)savepath pathdef.m然后重启matlab就可以set path把路径加进去了。如果没有pathdef.m,那就搜索matlab文件夹找到pathdef.m然后copy到toolbox\local原创 2017-03-11 13:10:02 · 2609 阅读 · 0 评论