1、鉴权命令:qshell account [AccessKey] [SecretKey] [储存空间名称] 列:qshell account 0rQzxWk*************WKfhqt3空格Yr4YK29**********UxCzcY_1bwNpXetlT空格chucunkongjia ...
分类:
系统相关 时间:
2020-05-29 14:01:28
阅读次数:
185
在登陆组件中找到登陆按钮,绑定点击事件 <button class="login_btn" @click="loginhander">登录</button> 在methods中请求后端 export default { name: 'Login', data(){ return { login_ty ...
分类:
其他好文 时间:
2020-05-29 10:39:53
阅读次数:
123
export default与export const的区别 export 用于在JavaScript模块中导出函数,原始值,对象;即导出模块,例如: export (命名导出) export {myFunction}; //命名导出函数 export const value=5; //命名导出原始 ...
分类:
其他好文 时间:
2020-05-29 09:45:00
阅读次数:
748
ResNet 其他不带残差的网络(plain-CNN)中: 56层的网络比20层的网络,无论是trainning set 还是test set都要表现差 问题: 1) 优化问题,梯度在传播过程中出现梯度消失,或者梯度爆炸 2) weight_matrix_decay 1. Batch Normali ...
分类:
Web程序 时间:
2020-05-28 19:57:38
阅读次数:
75
在SSD的代码中经常有见到如下的操作: _, idx = flt[:, :, 0].sort(1, descending=True)#大小为[batch size, num_classes*top_k] _, rank = idx.sort(1)#再对索引升序排列,得到其索引作为排名rank 其作用 ...
分类:
编程语言 时间:
2020-05-28 19:54:27
阅读次数:
125
问题: 在linux上输入top命令,报错'xterm': unknown terminal type.网上找了很多方法都不行,拷贝目录也不行,下面说我的解决方法 解决: 1.将好的/usr/share/terminfo 拷贝到自己的服务器. 2.执行export,方向没有设置TERMINFO环境变 ...
分类:
其他好文 时间:
2020-05-28 16:32:14
阅读次数:
92
export default { data() { return { form: { code: "", name: "", enable: true }, rules: { code: [ { required: true, validator: (rule, value, callback) = ...
分类:
其他好文 时间:
2020-05-28 16:15:13
阅读次数:
218
let mc = wx.createMediaContainer() wx.chooseVideo({ sourceType: ['album', 'camera'], maxDuration: 60, camera: 'back', success: res => { let videoPath ...
分类:
微信 时间:
2020-05-28 13:15:12
阅读次数:
235
<template> <div id="app"> <!-- <h1>{{title}}</h1> --> <app-header></app-header> <users></users> <app-foot></app-foot> <!-- <img alt="Vue logo" src="./ ...
分类:
移动开发 时间:
2020-05-28 10:25:17
阅读次数:
193
因为edge浏览器虽然是用的谷歌的内核,但是本身还是ie浏览器使用ie浏览器导出的方法就可以解决 export function downloadFile(obj, name, suffix) { //obj是字符流 name是文件名,suffix是文件后缀传递的参数可根据个人情况 if (wind ...
分类:
其他好文 时间:
2020-05-28 10:23:23
阅读次数:
96