assign : 对数据赋值,对数组的初始化。但不能对数组中的某一个值进行赋值。 举例:Tuple1 := [1,0,3,4,5,6,7,8,9] // 对数组进行初始化 Val := sin(1.2) + cos(1.2) // 对某一个值进行赋值 Tuple2 := [] // 数组定义 ass ...
分类:
编程语言 时间:
2021-02-25 12:21:03
阅读次数:
0
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 1. os.path.abspath(file)返回的是.py文件的绝对路径,也就是settings.py这个文件路径 2. os.path.dirname( ...
分类:
其他好文 时间:
2021-02-20 11:46:09
阅读次数:
0
对抗性潜在自动编码器(ALAE) -论文地址 https://arxiv.org/abs/2004.04467 -项目源码 https://github.com/podgorskiy/ALAE 摘要 自动编码器网络是无监督的方法,旨在通过同时学习编码器-生成器映射来结合生成性和代表性。尽管进行了广泛 ...
分类:
Web程序 时间:
2021-02-19 13:45:29
阅读次数:
0
MySQL中的函数 <1> 加密函数 password(str) 该函数可以对字符串str进行加密,一般情况下,此函数给用户密码进行加密 select password('ruochen666'); select PASSWORD(ename) from emp; md5(str) 对字符串str进 ...
分类:
数据库 时间:
2021-02-19 13:33:53
阅读次数:
0
the Computing Research Repository (CoRR) 论文地址:https://arxiv.org/abs/1909.11898 代码地址:https://github.com/hongwang600/DocRed Abstract 在本文中,我们进一步应用预先训练的语言 ...
分类:
其他好文 时间:
2021-02-10 13:32:54
阅读次数:
0
论文标题:ERNIE: Enhanced Representation through Knowledge Integration 作者:Yu Sun 作者单位/个人主页:https://dblp.uni-trier.de/pid/62/3689.html 论文档次: CoRR abs收录 论文引用 ...
分类:
其他好文 时间:
2021-02-10 13:13:28
阅读次数:
0
回到顶部 一、java.util.Date 1、只用于显示系统时间,其大部分操作由Calendar代替。 格林威治时间(GMT):指的是1970年1月1日0时,不同地区有时间差。 默认输出格式:星期、月、日、时、分、秒、时区、年 2、构造方法: (1)public Date(); //无参构造创建的 ...
分类:
编程语言 时间:
2021-02-06 12:19:42
阅读次数:
0
Simplify Path (M) 题目 Given a string path, which is an absolute path (starting with a slash '/') to a file or directory in a Unix-style file system, co ...
分类:
其他好文 时间:
2021-02-06 11:56:45
阅读次数:
0
数值扩展 //0. Number.EPSILON 是 JavaScript 表示的最小精度 EPSILON 属性的值接近于 2.2204460492503130808472633361816E-16 function equal(a, b){ if(Math.abs(a-b) < Number.EP ...
分类:
其他好文 时间:
2021-02-04 12:06:38
阅读次数:
0
1.集合框架简介 2.Collection框架中实现比较要实现什么接口 参见 源码分析之Collection 要实现比较有两种方式:第一种,实体类实现Comparable<T>接口,并实现 compareTo(T t) 方法,我们称为内部比较器;第二种,创建一个外部比较器,这个外部比较器要实现Com ...
分类:
编程语言 时间:
2021-02-02 10:46:52
阅读次数:
0