关系抽取
1、entities:objects(entity type[persons, organizations, locations, facilities, geo-political entities]) 2、mentions:references to entities.(mention是实体的表述、提及,mention level[name名词,nominal名词性词,pronoun代词])
1、entities:objects(entity type[persons, organizations, locations, facilities, geo-political entities]) 2、mentions:references to entities.(mention是实体的表述、提及,mention level[name名词,nominal名词性词,pronoun代词])
1、常用标签属性:<h1>:align对齐方式;<body>:bgcolor背景颜色;<a>:target何处打开链接2、通用属性:class:元素的类名;id:元素的id标识;style:元素的样式;title:元素的额外信息3、三种样式: 外部样式表:<link rel=”stylesheet” type=”text/css” href=”xx.css… 阅读更多 »Html5基础学习
概念: 张量(tensor):数据,某一类型的多维数组 变量(variable):模型的参数,通过不断训练得到的值 占位符(placeholder):输入变量的载体 图中的节点操作(operation,OP):一个OP获得0个或多个tensor,执行计算,输出额外的0个或多个tensor 申明常量:tf.constant(常量) 占位符使用配合feed_dict 在jupyter中使用tf.Int… 阅读更多 »Tensorflow学习
在/var/www/下新建站点文件,例如/var/www/test.com 编辑配置文件,vi /etc/nginx/sites-available/default,添加server,如下: server{ listen 80; listen [::]:80; server_name test.com; root /var/www/test.com; index index.html; locat… 阅读更多 »nginx新增站点
参考链接 https://blog.csdn.net/github_38052581/article/details/88077691 conda config –add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config –add channels https://mirrors.tun… 阅读更多 »Anaconda添加清华镜像源
进入环境变量: CUDA_PATH修改成对应的版本 NVCUDASAMPLES_ROOT修改成对应的版本 path中对应版本上移到最前面 重启电脑
安装anaconda 创建虚拟环境 安装tensorflow-gpu 命令conda search cudatoolkit –info查看目前cuda版本,命令conda install cudatoolkit=10.0安装tf-gpu版本对应的cuda 命令conda search cudnn –info查看目前cudnn版本 , 命令 conda install cudnn=7.6.5 安… 阅读更多 »anaconda安装多个tensorflow
环境:tensorflow:2.1.0,cuda:10.2.89,cudnn:7.6.5 问题1:ImportError: DLL load failed: The specified module could not be found. 解决1:下载最新的MSVC redistributable(Microsoft vc++) 问题2:Could not load dynamic library… 阅读更多 »安装tensorflow2.1遇到的错误
参考链接https://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html 在远程创建一个仓库 进入到本地项目目录中: git init (创建git管理) git add . (添加所有文件) git commit -m ‘注释’ (添加到本地仓库) git remote(管理远程主机名) git remote show 主机名(查看主机详细… 阅读更多 »git用法
安装mysql: sudo apt-get update sudo apt-get install mysql-server 如果在登陆数据库时,发生“连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决方法”错误,处理方式如下: 编辑my.cnf文件:vi /etc/mysql/my.cnf,添加如… 阅读更多 »安装gogs