老实来讲这课我一头雾水满脑袋问号 import numpy as np from collections import Counter counttime = 0 #统计训练语料:spam 和 ham 各自评论总数,单词频率 def seperate(filename): hamcnt = Coun ...
分类:
编程语言 时间:
2020-11-23 12:07:30
阅读次数:
7
import jiebafrom collections import Counterimport matplotlib.pyplot as pltimport numpy as np class HlmNameCount(): # 此函数用于绘制条形图 def showNameBar(self,n ...
分类:
其他好文 时间:
2020-11-19 12:42:20
阅读次数:
10
lst = [] from collections import Counter l = ['fa|aaaa|fsjkedf|\n', 'sdaffs|asdffdsa|0|0|||a1|a1|a1|\n'] for i in l: lst.extend(i.strip('\n').split('| ...
分类:
编程语言 时间:
2020-11-18 13:14:13
阅读次数:
13
主要介绍了deque容器的基本概念,deque容器的构造函数,deque容器的赋值操作,如何查看deque容器的大小,deque容器中如何插入和删除数据,使用deque容器进行数据存取,以及给deque容器中的数据进行排序操作。 ...
分类:
其他好文 时间:
2020-11-17 12:38:31
阅读次数:
8
一、事件定义类,即子窗体 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; ...
class MinStack { Deque<Integer> stack; Deque<Integer> min_stack; /** initialize your data structure here. */ public MinStack() { stack = new LinkedLis ...
分类:
其他好文 时间:
2020-11-11 16:27:13
阅读次数:
9
这次写的是小游戏扫雷,由于时间问题,扫雷的成功失败判断还没有写的很好,只是把大体的思路写出来了。 这次最主要的是有两个类 第一个是地雷类 :lanmine 1 using System; 2 using System.Collections.Generic; 3 using System.Drawi ...
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-0.htmlMySQL8.0.0The current maximum auto-increment counter value is now written to the redo l ...
分类:
数据库 时间:
2020-11-08 16:51:42
阅读次数:
24
time模块下的perf_counter方法可用于精确计算程序运行的时间: 1 import time 2 3 start = time.perf_counter() 4 l = list(range(10000)) 5 end = time.perf_counter() 6 run_time= e ...
分类:
其他好文 时间:
2020-11-07 17:18:06
阅读次数:
24
告警是预防系统故障的一个重要工具,目前已经有许多成熟的方案通过监控系统运行指标来进行阈值预警。今天简单了解一下如何使用Fluentd实现邮件告警功能。 Fluentd的告警是基于日志分析实现的,通过监测日志中的业务状态信息,及时识别严重错误,实时发送告警信息。 以分析Apache的访问日志为例,了解 ...
分类:
其他好文 时间:
2020-11-04 18:02:07
阅读次数:
13