240 发简信
IP属地:浙江
  • 递归的归纳

    在定义一个过程或函数时出现调用本过程或本函数的成分,成为递归。调用自身称为直接递归,若q调用p,p调用q,则称为间接递归。 尾递归,在函数中递归调用是最后一句执行语句。 例题...

  • SVM

    1.4. Support Vector Machines 支持向量机 Support vector machines (SVMs) are a set of supervis...

  • 120
    反爬虫与反反爬虫

    喜欢爬虫的伙伴都知道,在爬网站的内容的时候并不是一爬就可以了,有时候就会遇到一些网站的反爬虫,折回让你爬不到数据,给你返回一些404,403或者500的状态码,这有时候会让人...

  • Excel

    DATE(year,month,day) now() today() time() day() hour() month() minute() second() year()...

  • Model——

    class sklearn.linear_model.LogisticRegression(penalty=’l2’, dual=False, tol=0.0001, C=1...

  • Outliner detection

    load and check data outliner detection: 一个是标准化数值检测法。具有钟型正态分布的数据,大约68%的数据分布于距离平均值一个标准差以内...

  • 2017-12-30

    project checklist frame the problem select a performance measure RMSE:均方误差根MAE: 平均绝对误差范...

  • 数据分析

    1、数据分析概念和统计学基础。 数据分析概念,方法论,流程。 数据分析和数据挖掘的概念。商业数据分析预测的本质。 数据分析的8个层次。 大数据对传统小数据的拓展。 明确数据分...

  • 2017-12-30

    project checklist frame the problem select a performance measure RMSE:均方误差根MAE: 平均绝对误差范...

  • SVM

    1.4. Support Vector Machines 支持向量机 Support vector machines (SVMs) are a set of supervis...

  • numpy

    import numpy as np 创建ndarray data1 = [6,7.5, 8, 0, 1]arr1 = np.array(data1) print(arr1)...

  • pandas

    from pandas import Series, DataFrame import pandas as pd Series obj = Series([4,7,-5,3]...

  • SQL

    结构话数据查询语句 可以创建库,创建表,创建存储过程,创建视图。 可以设置表,存储过程,视图的权限 可以查询数据,从数据库里取出数据,向数据库插入数据,更新数据,删除数据。 ...

  • S03E03

    check the lease 查一查租赁合同 deprive him of food 把它断粮 stage by stage 阶段性得发展下去 its a slow de...

  • S04E01

    trapped in between two whole wheat slices pastrami and swiss are my only vices pull fro...

  • 常用正则表达式

    常用正则表达式"^/d+$"//非负整数(正整数 + 0)"^[0-9][1-9][0-9]$"//正整数"^((-/d+)|(0+))$"//非正整数(负整数 + 0)"^...