>>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] + 1...>>> ss = sorted( ...
分类:
其他好文 时间:
2021-04-23 12:18:32
阅读次数:
0
import numpy as np from scipy.optimize import curve_fit import matplotlib.pyplot as plt # 凸函数:斜率递增 # 指数增长模型(exponential growth model) y = a? # 半衰期模型(h ...
分类:
其他好文 时间:
2020-11-10 10:32:39
阅读次数:
6
Java Tree 树 数据结构,二叉树、三叉树、N叉树、不规则的树结构 ...
分类:
编程语言 时间:
2020-08-25 18:42:39
阅读次数:
49
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:51:57
阅读次数:
104
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:25:26
阅读次数:
77
1 import tensorflow as tf 2 print(tf.__version__) 3 4 5 class BottleNeck(tf.keras.layers.Layer): 6 def __init__(self, growth_rate, drop_rate): 7 super ...
分类:
Web程序 时间:
2020-06-15 19:23:11
阅读次数:
63
对于发现频繁项集,Apriori是一个很好的算法,但Apriori在发现频繁项集的时候需要多次扫描数据库,这严重影响了速度。 而FP-growth算法基于Apriori构建,不过在完成相同的发现频繁集的任务上,它采用了一些不同的技术。将数据集存储在一个特定的被称为FP树的结构之后去发现频繁项集。这种... ...
分类:
编程语言 时间:
2020-05-03 16:18:24
阅读次数:
92
process [?pr??ses] n.过程;工序;程序;vt.convenience [k?n'vi?n??ns] n.purpose [?p?:p?s] n.目的;意志;growth [ɡr?uθ] n.增加,增长(量);生长,发展technology [tek?n?l?d?i] n.theo ...
分类:
其他好文 时间:
2020-02-09 09:51:46
阅读次数:
733
题目描述: 查找所有员工自入职以来的薪水涨幅情况(to_date='9999-01-01') 给出员工编号emp_no以及其对应的薪水涨幅growth,并按照growth进行升序 CREATE TABLE `employees` ( `emp_no` int(11) NOT NULL, `birth ...
分类:
数据库 时间:
2020-02-08 11:56:32
阅读次数:
121
题目描述 查找员工编号emp_no为10001其自入职以来的薪水salary涨幅值growth CREATE TABLE `salaries` ( `emp_no` int(11) NOT NULL, `salary` int(11) NOT NULL, `from_date` date NOT N ...
分类:
数据库 时间:
2020-02-07 20:31:26
阅读次数:
90