自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 论文学习笔记 XGBoost: A Scalable Tree Boosting System

今天分享一篇论文《XGBoost: A Scalable Tree Boosting System》,由陈天奇于2016年发表,该算法在Kaggle等比赛中大放异彩,现在在工业界也被广泛应用。

2022-07-03 20:41:02 1828 1

原创 论文学习笔记 CatBoost: unbiased boosting with categorical features

CatBoost论文学习笔记

2022-06-06 00:31:35 1466 1

原创 Calculator (Codewars 3kyu Java)

题目:Create a simple calculator that given a string of operators (), +, -, *, / and numbers separated by spaces returns the value of that expressionExample:Calculator.evaluate(“2 / 2 + 3 * 4 - 6”) //...

2020-04-01 14:06:18 423

原创 Pyramid Slide Down (Codewars 4kyu Python)

题目:Lyrics…Pyramids are amazing! Both in architectural and mathematical sense. If you have a computer, you can mess with pyramids even if you are not in Egypt at the time. For example, let’s consider...

2020-03-09 23:17:09 878

原创 Decode the Morse code, advanced (Codewars 4kyu Python)

题目:In this kata you have to write a Morse code decoder for wired electrical telegraph.Electric telegraph is operated on a 2-wire line with a key that, when pressed, connects the wires together, whic...

2020-03-08 14:56:04 1358 1

原创 Range Extraction (Codewars 4kyu Python)

题目:A format for expressing an ordered list of integers is to use a comma separated list of eitherindividual integersor a range of integers denoted by the starting integer separated from the end int...

2020-03-07 20:39:14 517

原创 Square into Squares. Protect trees! (Codewars 4kyu Python)

题目:My little sister came back home from school with the following task: given a squared sheet of paper she has to cut it in pieces which, when assembled, give squares the sides of which form an incre...

2020-03-07 17:58:06 1001

原创 Strip Comments (Codewars 4kyu Python)

题目:Complete the solution so that it strips all text that follows any of a set of comment markers passed in. Any whitespace at the end of the line should also be stripped out.Example:Given an input ...

2020-03-06 14:24:35 731

原创 Sudoku Solution Validator (Codewars 4kyu Python)

题目:Sudoku BackgroundSudoku is a game played on a 9x9 grid. The goal of the game is to fill all cells of the grid with digits from 1 to 9, so that each column, each row, and each of the nine 3x3 sub-...

2020-03-06 01:03:13 745

原创 Snail Sort (Codewars 4kyu Python)

题目:Given an n x n array, return the array elements arranged from outermost elements to the middle element, traveling clockwise.array = [[1,2,3],[4,5,6],[7,8,9]]snail(array) #=> [1,2,3,6,9,8,7,...

2020-03-05 20:05:06 663

原创 Human readable duration format (Codewars 4kyu Python)

题目:Your task in order to complete this Kata is to write a function which formats a duration, given as a number of seconds, in a human-friendly way.The function must accept a non-negative integer. If...

2020-03-05 17:09:46 614 1

原创 B/S架构

什么是B/S架构B/S的意思是Brower/Server,即浏览器/服务器,是随着Internet技术的兴起,对C/S架构的一种变化或者改进的架构,用户依赖浏览器与服务器交互来完成业务操作。B/S架构的优点1、无需安装客户端,有浏览器即可使用2、产品维护和升级更为方便3、部分程序可在客户端运行,降低服务器的负载4、增加了交互性,可局部实时刷新什么是C/S架构C/S的意思是 Clie...

2020-01-31 22:12:09 3573

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除