lee

学习笔记(19)- BioQA

狂风中的少年 提交于 2020-03-05 16:40:55
Pre-trained Language Model for Biomedical Question Answering Yoon, W., Lee, J., Kim, D., Jeong, M., & Kang, J. (2019). Pre-trained Language Model for Biomedical Question Answering. http://arxiv.org/abs/1909.08229 作者及单位 Wonjin Yoon, Jinhyuk Lee, Donghyeon Kim, Minbyul Jeong, and Jaewoo Kang⋆ Korea University, Seoul, Korea 来源: https://www.cnblogs.com/xuehuiping/p/12299316.html

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:struts2拦截器的执行顺序

天大地大妈咪最大 提交于 2020-02-26 14:54:34
<?xml version="1.0" encoding="GBK"?> <project name="struts" basedir="." default=""> <property name="dist" value="classes"/> <property name="src" value="src"/> <path id="classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> <pathelement path="${dist}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dist}"/> <mkdir dir="${dist}"/> <copy todir="${dist}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="classes" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Struts2的类型转换:全局类型转换器

随声附和 提交于 2020-02-26 02:00:10
<?xml version="1.0" encoding="GBK"?> <project name="struts" basedir="." default=""> <property name="dist" value="classes"/> <property name="src" value="src"/> <path id="classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> <pathelement path="${dist}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dist}"/> <mkdir dir="${dist}"/> <copy todir="${dist}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="classes" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Struts2的类型转换:基于OGNL的类型转换(2)

与世无争的帅哥 提交于 2020-02-26 00:37:17
<?xml version="1.0" encoding="GBK"?> <project name="struts" basedir="." default=""> <property name="dist" value="classes"/> <property name="src" value="src"/> <path id="classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> <pathelement path="${dist}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dist}"/> <mkdir dir="${dist}"/> <copy todir="${dist}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="classes" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src

吴裕雄--天生自然轻量级JAVA EE企业应用开发Struts2Sping4Hibernate整合开发学习笔记:Struts2的类型转换:基于OGNL的类型转换(3)

喜你入骨 提交于 2020-02-26 00:35:36
<?xml version="1.0" encoding="GBK"?> <project name="struts" basedir="." default=""> <property name="dist" value="classes"/> <property name="src" value="src"/> <path id="classpath"> <fileset dir="lib"> <include name="*.jar"/> </fileset> <pathelement path="${dist}"/> </path> <target name="compile" description="Compile all source code"> <delete dir="${dist}"/> <mkdir dir="${dist}"/> <copy todir="${dist}"> <fileset dir="${src}"> <exclude name="**/*.java"/> </fileset> </copy> <javac destdir="classes" debug="true" includeantruntime="yes" deprecation="false" optimize="false" failonerror="true"> <src

论文梳理模版

守給你的承諾、 提交于 2020-01-28 00:19:45
题目: 论文题目,并附 此论文网址 做超链接 此模版中 斜体字 为可替换内容 搜索源: 知网 搜索词:主题( 主题词 ),关键词( 关键词 ) 本文核心: 人体动作识别HAR 摘要 0 引言 1 一级标题 1.1 二级标题 1.2 二级标题 3 总结 来源: CSDN 作者: lee__7 链接: https://blog.csdn.net/lee__7/article/details/104095612

Pytorch_trick_01

∥☆過路亽.° 提交于 2019-12-28 05:29:23
01. pytorch 为什么 plt.imshow(np.transpose(npimg, (1, 2, 0))) 解释这句话:plt.imshow ( np.transpose ( npimg, ( 1, 2, 0 )) ) 。因为在plt.imshow在现实的时候输入的是 (imagesize,imagesize,channels),而def imshow ( img,text,should_save = False ) 中,参数img的格式为 (channels,imagesize,imagesize),这两者的格式不一致,我们需要调用一次np.transpose函数, 即np.transpose ( npimg, ( 1,2,0 )) ,将npimg的数据格式由(channels,imagesize,imagesize)转化为 (imagesize,imagesize,channels) 来源: CSDN 作者: snow_lee_liwei 链接: https://blog.csdn.net/snow_lee_liwei/article/details/103639387

pytorch classic net fine_tuning

▼魔方 西西 提交于 2019-12-22 05:12:49
适用于 pytorch 版本大于等于 1.0.0 # -*- coding:utf-8 -*- from __future__ import print_function from __future__ import division import torch import torch . nn as nn import torch . optim as optim import numpy as np import torchvision from torchvision import datasets , models 来源: CSDN 作者: snow_lee_liwei 链接: https://blog.csdn.net/snow_lee_liwei/article/details/103639252

js onclick用法:跳转到指定URL

泪湿孤枕 提交于 2019-12-09 08:08:46
使用onclick跳转到其他页面/跳转到指定url ☆如果是本页显示可以直接用location,方法如下: ①οnclick="javascript:window.location.href='http://www.huierlp.com'" ②οnclick="location='http://www.huierlp.com'" ③οnclick="window.location.href='http://www.huierlp.com" ☆如果页面中有frame可以将在location前面添加top.mainframe.frames['right_frame'].location 例: <pre> ====== <input type="button"value="注册" οnclick="javascript:window.location.href='http://www.huierlp.com'"/> ====== </pre> 来源: CSDN 作者: miner_lee 链接: https://blog.csdn.net/miner_lee/article/details/20900915