码迷,mamicode.com
首页 >  
搜索关键字:组合方法ensemble method    ( 13407个结果
Swagger-UI
一、Swagger-UI 介绍 Swagger-UI是HTML, Javascript, CSS的一个集合,可以动态地根据注解生成在线API文档。 二、与springboot整合使用 ####1、meven依赖 <dependency> <groupId>io.springfox</groupId> ...
分类:其他好文   时间:2020-06-15 17:35:09    阅读次数:62
记录PHP常用几种设计模式
什么是设计模式 每一个模式描述了一个在我们周围不断重复发生的问题,以及该问题的解决方案的核心。这样,你就能一次又一次地使用该方案而不必做重复劳动。 主要设计模式 创建型 单例(Singleton):保证一个类仅有一个实例,并提供一个访问它的全局访问点 抽象工厂(Abstract Factory):提 ...
分类:Web程序   时间:2020-06-15 16:09:00    阅读次数:58
Spring容器初始化方法的应用及注意对象
beans组件 里面default-init-method初始化方法加载,范围比较大,当没有此方法时不会报错,default-destroy-method销毁方法 bean组件里面init-method初始化无此方法,会报错, destroy-method销毁方法, 注意:1.销毁方法对scope= ...
分类:编程语言   时间:2020-06-14 23:19:39    阅读次数:62
class与style的绑定
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .aclass{ color: red; } .bclass{ color: blue; } .cclass{ fo ...
分类:其他好文   时间:2020-06-14 20:29:38    阅读次数:251
F1值的优化macro
1.F1值优化 https://www.jianshu.com/p/51debab91824 from functools import partial import numpy as np import scipy as sp from sklearn.metrics import f1_scor ...
分类:系统相关   时间:2020-06-14 18:25:28    阅读次数:156
重构 重构手法
一. 重新组织函数 1. Extract Method 提炼函数 2. Inline Method 内联函数 3. Inline Temp 内联临时变量 4. Replace Temp with Query 以查询取代临时变量 5. Introduce Explaining 引入解释性变量 6. S ...
分类:其他好文   时间:2020-06-14 18:22:43    阅读次数:65
Java 异常处理的十个建议
前言 Java异常处理的十个建议,希望对大家有帮助~ 本文已上传github: https://github.com/whx123/JavaHome 公众号:捡田螺的小男孩 一、尽量不要使用e.printStackTrace(),而是使用log打印。 反例: try{ // do what you ...
分类:编程语言   时间:2020-06-14 17:10:03    阅读次数:69
DRF--请求和响应
请求 对于DRF的request对象,有下面的属性: .data .query_params .parsers .accepted_renderer .accepted_media_type .user .auth .authenticators .method .content_type .str ...
分类:其他好文   时间:2020-06-14 13:07:25    阅读次数:115
Ajax 下载文件 文件被损坏
问题表现 Ajax 下载文件成功后,打开提示格式损坏,源代码如下: axios({ method: 'get', url: "/public/工作簿1.xlsx", // 静态资源地址 }).then(res => { const href = document.querySelector('.h ...
分类:Web程序   时间:2020-06-14 10:52:02    阅读次数:76
Python学习第107天(Django的url控制和conf设置)
一、关于如何通过url来实现登录界面的数据提交和获取 先看一下html部分的文件内容: <form action="/register" method="post"> <p>姓名<input type="text" name="user"></p> <p>年龄<input type="text" n ...
分类:编程语言   时间:2020-06-14 01:36:55    阅读次数:79
13407条   上一页 1 ... 54 55 56 57 58 ... 1341 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!