码迷,mamicode.com
首页 >  
搜索关键字:god mode    ( 11453个结果
In aggregated query without GROUP BY, expression #3 of SELECT list contains nonaggregated column 'emsdb_pro.mainspareparts.CreationTime'; this is incompatible with sql_mode=only_full_group_by
错误: In aggregated query without GROUP BY, expression #3 of SELECT list contains nonaggregated column 'emsdb_pro.mainspareparts.CreationTime'; this is ...
分类:数据库   时间:2021-01-13 11:05:20    阅读次数:0
IO操作-修改文件的两种方式
# 文件a.txt内容如下 张一蛋 山东 179 49 12344234523 李二蛋 河北 163 57 13913453521 王全蛋 山西 153 62 18651433422 # 执行操作 with open('a.txt',mode='r+t',encoding='utf-8') as f ...
分类:其他好文   时间:2021-01-13 10:38:25    阅读次数:0
TypeScript 中类的概念和使用
继承、重写和 Super class Lady { content = "Hi,帅哥"; sayHello() { return this.content; } } class XiaoJieJie extends Lady { sayHello() { return super.sayHello( ...
分类:其他好文   时间:2021-01-12 11:03:38    阅读次数:0
multilabel-multiclass classifier
multiclass与multilabel的区别 multiclass分类是指n取1 multilabel分类是指n取k 对于xgboost,如果想要做multiclass分类可以借助sklearn的 from sklearn.multiclass import OneVsRestClassifie ...
分类:其他好文   时间:2021-01-11 10:48:14    阅读次数:0
pytorch模型结构可视化方法
最近在学习一些检测方面的网络,使用的是pytorch。模型结构可视化是学习网络的有用的部分,pytorch没有原生支持这个功能,需要找一些其他方式,下面总结几种方法(推荐用4)。 1. torch .pt -> netron netron是一个专门可视化模型的工具,支持很多格式,很自然的就是用它直接 ...
分类:其他好文   时间:2021-01-08 11:33:12    阅读次数:0
mysql5.7源码安装 for Linux
一、mysql5.7源码安装1.清除卸载原mysql[root@192 ~]# rpm -qa | grep mariadbmariadb-libs-5.5.60-1.el7_5.x86_64[root@192 ~]# yum -y remove mari*或者用rpm卸载[root@192 ~]# ...
分类:数据库   时间:2021-01-08 10:29:39    阅读次数:0
FTP服务器
LINUX之FTP服务 1.FTP的连接类型 控制连接(持续连接) → TCP21(命令信道) → 用户收发FTP命令 数据连接(按需连接) → TCP20(数据信道) → 用于上传下载数据 2.FTP的工作模式 ftp模式分为主动模式(active mode)和被动模式(passive mode) ...
分类:其他好文   时间:2021-01-06 12:36:45    阅读次数:0
systemd-resolved and resolvctl on ubuntu; 127.0.0.53 nameserver;
前段时间,我偶然进行查看linux DNS配置,通过查看 /etc/resolv.conf 文件,得到如下结果: ? devices ll /etc/resolv.conf lrwxrwxrwx 1 root root 39 12月 28 18:55 /etc/resolv.conf -> ../r ...
分类:系统相关   时间:2021-01-06 12:29:13    阅读次数:0
修改SpringBoot启动Logo
一、关闭SpringBoot启动图标 package com.abc.springboot; import org.springframework.boot.Banner; import org.springframework.boot.SpringApplication; import org.s ...
分类:编程语言   时间:2021-01-04 11:06:53    阅读次数:0
文件打开,读取,写入,关闭
自动导入模块:io 文件的打开:open函数,返回一个文件对象 fobj=open('文件路径') 文件的打开方式:mode='rb' r: 以读取的方式打开文件,文件不存在则报错 (默认值:rt) t: 文本模式 w:以写入的方式打开文件,,不能读取,有则清空,无则创建 a:以追加的方式打开文件, ...
分类:其他好文   时间:2021-01-02 11:10:40    阅读次数:0
11453条   上一页 1 ... 17 18 19 20 21 ... 1146 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!