WEEK 7 Support Vector Machines Support vector machines, or SVMs, is a machine learning algorithm for classification. We introduce the idea and intuiti ...
分类:
其他好文 时间:
2018-12-03 15:35:07
阅读次数:
130
WEEK 8 Unsupervised Learning We use unsupervised learning to build models that help us understand our data better. We discuss the k Means algorithm fo ...
分类:
其他好文 时间:
2018-12-03 15:34:39
阅读次数:
157
连接数据库帮助类:SqlHelper.cs(用的时候只需调用其中的方法名,作用:可避免在DAL层重复地写连接数据库的代码) 用法案例1: //增加数据 public bool CreateUserBySqlbool(User userAdd) { SqlParameter[] cmdParms = ...
分类:
数据库 时间:
2018-11-30 22:45:21
阅读次数:
352
题目描述: Vasya is reading a e-book. The file of the book consists of nn pages, numbered from 11 to nn. The screen is currently displaying the contents of ...
分类:
其他好文 时间:
2018-11-30 21:46:56
阅读次数:
190
# encoding: utf-8 import decimal import requests import logging import logging.config import random import os import yaml import time import threading ...
分类:
编程语言 时间:
2018-11-29 20:10:41
阅读次数:
222
写文件需要三步:打开文件写入内容关闭文件写入内容一般要选择打开的模式:f = open('out.txt','w')此处的w就是writing,代表以写入文件的模式打开,原文件里的内容会被新写入覆盖而如果没有这个文件的话就会新建这个文件若不加参数的话,默认为 r ,reading的意思,这时候是写不 ...
分类:
编程语言 时间:
2018-11-28 17:33:58
阅读次数:
208
``` #include "mbed.h"
#include "MCP23017.h"
#include "WattBob_TextLCD.h"
#include "TCS3472_I2C.h"
#include "stdint.h"
#include "VL6180.h"
#include "rt... ...
分类:
其他好文 时间:
2018-11-25 14:43:07
阅读次数:
105
实验验目的: Zabbix 3.x 服务端的安装 实验主机: m01 (centos 7.4) IP 10.0.0.61/172.16.1.61 1) 配置yum源, 并用wget命令把相关的软件包下载到本地, 然后再进行安装, 如下所示 2) 安装LAMP平台 MariaDB至m01 主机上 3) ...
分类:
其他好文 时间:
2018-11-25 14:32:34
阅读次数:
207
引言 with 语句是从 Python 2.5 开始引入的一种与异常处理相关的功能(2.5 版本中要通过 from __future__ import with_statement 导入后才可以使用),从 2.6 版本开始缺省可用(参考 What's new in Python 2.6? 中 wit ...
分类:
编程语言 时间:
2018-11-24 17:56:29
阅读次数:
152
【问题二】 有一个集群(MySQL5.7.23)切换后复制slave报1236,其实是不小心在slave上执行了事务导致 Got fatal error 1236 from master when reading data from binary log: 'The slave is connect ...
分类:
数据库 时间:
2018-11-23 16:47:43
阅读次数:
300