(1) Go to the Fiori UI where you would like to enhance, and enter adaptation mode by clicking this icon: (2) Click "Adapt UI": (3) Choose "Add Field" ...
分类:
其他好文 时间:
2020-01-29 21:38:03
阅读次数:
67
算法特征:利用sigmoid函数的概率含义, 借助回归之手段达到分类之目的. 算法推导:Part Ⅰsigmoid函数之定义:\begin{equation}\label{eq_1}sig(x) = \frac{1}{1 + e^{-x}}\end{equation}相关函数图像:由此可见, sig ...
分类:
编程语言 时间:
2020-01-29 10:19:08
阅读次数:
112
今天我们讲解的是Http请求前后监听工具 首先得创建一个类用来做处理:HttpInterceptor.class: package cn.oyc.common;import cn.oyc.util.JsonMapper;import lombok.extern.slf4j.Slf4j;import ...
分类:
其他好文 时间:
2020-01-29 00:46:19
阅读次数:
72
编写redis编译安装shell脚本redis_install.sh (最后两行的意思是,第69行匹配127.0.0.1更换成0.0.0.0;第88行匹配protected-mode yes更换为protected-mode no) #!/bin/bash yum install -y gcc gc ...
分类:
其他好文 时间:
2020-01-28 15:58:47
阅读次数:
79
基于ASP.NET Core 3.1 WebApi搭建后端多层网站架构【4.1-网站数据库实体设计及映射配置】 ...
分类:
数据库 时间:
2020-01-28 15:31:17
阅读次数:
92
基于Asp.Net Core 3.1 WebApi搭建后端多层网站架构 ...
分类:
Web程序 时间:
2020-01-28 09:15:25
阅读次数:
89
1 Redis客户端 1.1 自带命令行客户端 l 命令格式: ./redis-cli -h 127.0.0.1 -p 6379 l 修改redis配置文件(解决IP绑定问题) # bind 127.0.0.1 绑定的IP才能访问redis服务器,注释掉该配置 protected-mode yes ...
分类:
其他好文 时间:
2020-01-28 00:05:05
阅读次数:
103
安装R包时产生如下错误: Error in read.dcf(file.path(pkgname, "DESCRIPTION"), c("Package", "Type")) : 无法打开链结 此外: Warning messages: 1: In download.file(url, destfi ...
分类:
其他好文 时间:
2020-01-27 20:41:38
阅读次数:
1604
二级索引 聚簇索引:将数据存储与索引放到了一块,找到索引也就找到了数据。具有唯一性,聚簇索引默认是主键,如果表中没有定义主键,InnoDB 会选择一个唯一的非空索引代替。如果没有这样的索引,InnoDB 会隐式定义一个主键来作为聚簇索引。 非聚簇索引:将数据存储于索引分开结构,索引结构的叶子节点指向 ...
分类:
数据库 时间:
2020-01-27 17:15:45
阅读次数:
68
煎鱼大佬的教程 app.ini #debug or release RUN_MODE = debug [app] PAGE_SIZE = 10 JWT_SECRET = 23347$040412 [server] HTTP_PORT = 8000 READ_TIMEOUT = 60 WRITE_TI ...
分类:
其他好文 时间:
2020-01-27 17:04:24
阅读次数:
113