table常用标签 1、table标签:声明一个表格 2、tr标签:定义表格中的一行 3、td和th标签:定义一行中的一个单元格,td代表普通单元格,th表示表头单元格 table常用属性: 1、border 定义表格的边框 2、cellpadding 定义单元格内内容与边框的距离 3、cellsp ...
分类:
Web程序 时间:
2020-02-03 10:10:09
阅读次数:
108
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, button, input, textarea, th, td { margin: 0; padding: 0; } body { font size: ...
分类:
Web程序 时间:
2020-01-28 12:42:09
阅读次数:
196
本系列强化学习内容来源自对David Silver课程的学习 课程链接http://www0.cs.ucl.ac.uk/staff/D.Silver/web/Teaching.html 本文介绍了在model-free情况下(即不知道回报Rs和状态转移矩阵Pss'),如何进行prediction,即 ...
分类:
其他好文 时间:
2020-01-26 14:24:38
阅读次数:
87
1. 块元素与行内元素 2.列表 无序列表: ul 有序列表: ol 定义列表: dl 3. 表格的建立 基本的语法: <table> <tr> <td>单元格1</td> <td>单元格2</td> </tr> <tr> <td>单元格4</td> <td>单元格5</td> </tr> </ta ...
分类:
Web程序 时间:
2020-01-25 18:16:36
阅读次数:
100
什么是TD-IDF? 计算特征向量(或者说计算词条的权重) 构造文档模型 我们这里使用空间向量模型来数据化文档内容:向量空间模型中将文档表达为一个矢量。 We use the spatial vector model to digitize the document content: the vec ...
分类:
其他好文 时间:
2020-01-22 18:28:36
阅读次数:
236
知道原理的同学这部分可以略过直接看实践部分 什么是TD-IDF? 构造文档模型 我们这里使用空间向量模型来数据化文档内容:向量空间模型中将文档表达为一个矢量。 用特征向量(T1,W1;T2,W2;T3, W3;…;Tn,Wn)表示文档。 Ti是词条项,Wi是Ti在文档中的重要程度, 即将文档看作是由 ...
分类:
其他好文 时间:
2020-01-22 14:35:25
阅读次数:
138
1、带标题、表头的表格:"<td></td>" <table> <caption> /*表格的标题,居中显示*/ </caption> <tr> <th> /*表头,内容居中,加粗显示 */ </th></tr> <tr><td></td></tr> </table> 2、带结构的表格:当表格很长的 ...
分类:
Web程序 时间:
2020-01-18 10:25:31
阅读次数:
86
<div id="app"> <table class="table table-bordered"> <tr v-for="item in workFlow"> <td> {{item.name}} </td> <td> {{getNodeStr(item.nodes)}} </td> <td> ...
分类:
其他好文 时间:
2020-01-16 19:16:58
阅读次数:
74
原标签:<tr id="selected"> <td class="Hint" id="groupIdList"><span class="color-red">*</span>已选分组:</td> <td id=groupIdList1 width="5%" colspan="2"></td></ ...
分类:
Web程序 时间:
2020-01-14 13:06:25
阅读次数:
176
1、横向流程图源码格式: ```mermaid graph LR A[方形] -->B(圆角) B --> C{条件a} C -->|a=1| D[结果1] C -->|a=2| E[结果2] F[横向流程图] ``` 2、竖向流程图源码格式: ```mermaid graph TD A[方形] - ...
分类:
其他好文 时间:
2020-01-13 23:42:13
阅读次数:
93