转自:https://www.jianshu.com/p/c998a091628a linux 内核版本: 5.3.8 个人博客: https://www.letcos.top/ 1.模块相关指令 1.1 指令介绍 1.1.1 modinfo 功能:静态查看模块文件的基本信息,不需要安装到内核中即可 ...
分类:
系统相关 时间:
2020-07-10 19:22:48
阅读次数:
85
MRCNN网络结构: 一.Activation maps Moudle 这个模块中将原始的输入图像,经过一系列的卷积操作输出feature map,这部分可以使用各种经典的网络结构,这部分就是提取原始图像的特征信息。 二.Region Adaptation Module 这部分就是给定一个Regio ...
分类:
编程语言 时间:
2020-07-10 18:50:21
阅读次数:
171
一:引言 在运行django项目时,有这个报错:ModuleNotFoundError: No module named 'imagekit.models' 但是执行了pip3 install imagekit后还是报错,可能是因为软件源的原因 二:解决方法 1.输入下列语句(用豆瓣软件源): pi ...
分类:
其他好文 时间:
2020-07-10 15:34:28
阅读次数:
84
前提安装好ES和Kibana NGINX日志格式如下 log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http ...
分类:
其他好文 时间:
2020-07-10 14:57:44
阅读次数:
123
1.安装 zlib yarn add zlib 2.创建中间件 app/middleware/gzip.js const isJSON = require("koa-is-json"); const zlib = require("zlib"); module.exports = (options) ...
分类:
其他好文 时间:
2020-07-10 13:41:49
阅读次数:
154
安装 下载软件 → 安装 → Edit Custom VM option 填一行(-javaagent:) → 重启 → 输入激活码 IDEA-Module 在 Eclipse 中有 Workspace(工作空间) 和 Project(工程) 的概念,在 IDEA 中只有 Project(工程) 和 ...
分类:
其他好文 时间:
2020-07-10 13:16:37
阅读次数:
67
使用mybatis传入参数, 当参数类型是String ,Integer 等这些时。如果用他的<if test="year != null and year != ''">标签判断该参数是否为空,通常会爆There is no getter for property named ‘year’ in ...
分类:
编程语言 时间:
2020-07-10 11:48:18
阅读次数:
80
目的:1.上传代码后HTTP服务自动重启,不需要自己手动执行:php bin/swoft http:start2.自动重启适用于开发调试阶段,因为不能再后台运行所以在线上环境的话还是要重启http服务 a.Swoft-cli1.下载 wget https://github.com/swoft-clo ...
分类:
其他好文 时间:
2020-07-10 09:41:25
阅读次数:
128
最近在运行项目的时候报了一个React.memo is not a function, 报错类似如下 D:\myCode\myProject\node_modules\testPackage\index.js:22 })(React.momo(testPackage)); TypeError: Re ...
分类:
其他好文 时间:
2020-07-10 09:27:46
阅读次数:
52
1 创建webpack.config.js文件 const path = require('path') module.exports = { entry: './src/main.js', output: { path: path.resolve(__dirname, 'dist'), filen ...
分类:
Web程序 时间:
2020-07-10 00:32:47
阅读次数:
84