Largest product in a series The four adjacent digits in the 1000 digit number that have the greatest product are 9 × 9 × 8 × 9 = 5832. Find the thirte ...
分类:
其他好文 时间:
2020-02-17 20:16:02
阅读次数:
145
I’m going to take the top reasons and make a series of posts which act as a postmortem of sorts. Hopefully, they can also serve as tips for anybody wh ...
分类:
其他好文 时间:
2020-02-17 15:57:11
阅读次数:
58
#include<bits/stdc++.h> using namespace std; int main() { double i; double k; for(i=0.000;i-2.000<=0.00000001;i+=0.001) { k=1; double sum=1+(1-i)/(2*1 ...
分类:
其他好文 时间:
2020-02-15 13:38:28
阅读次数:
85
Problem: new loss Label: new loss; Abstract: A differentiable learning loss; Introduction: supervised learning: learn a mapping that links an input to ...
分类:
其他好文 时间:
2020-02-15 10:10:36
阅读次数:
59
转自:https://blog.csdn.net/qq_42711381/article/details/90451301 由于刚好也遇到这个问题,记录下来 使用的DataFrame的 当使用 frame2['year']['two'] = 10000, 即df名[列名][行名]的方式去赋值就会报错... ...
分类:
其他好文 时间:
2020-02-14 12:31:36
阅读次数:
75
Problem: how to cluster non-stationary multivariate time series. What are stationary time series How to consider both global features and local featur ...
分类:
其他好文 时间:
2020-02-14 01:15:50
阅读次数:
100
按老师给的代码第一次提交得分 下面进行改进 一, 首先进行数据的清洗 先观察数据,首选'Pclass','Sex','Age'作为是否生还(Survived)的 考虑条件来建模 “Sex”的数值是字符型,于是用特征编码将性别用0,1表示 随后发现”Age”中有缺少值,由于age是数值量,可以直接使用 ...
分类:
其他好文 时间:
2020-02-13 19:06:55
阅读次数:
94
1. pandas概述 Numpy主要处理结构化数据,数据量比较小,规则 对于大量数据, 需要清理的数据,则需要pandas 一般使用方法是 import pandas as pd 2. pandas简单使用 本章主要介绍pandas三大件: Series DataFrame Index 2.1 p ...
分类:
其他好文 时间:
2020-02-13 15:16:30
阅读次数:
108
1. 数据科学领域中常用的python库 Numpy库:数据运算的基础库,运行效率高(底层C语言,高效index) Scipy库:实现了常用的科学计算方法(线性代数,傅里叶变换,信号和图像处理) Pandas库:分析数据的利器,高级数据结构(Series,DataFrame) Matplotlib库 ...
分类:
编程语言 时间:
2020-02-12 19:04:47
阅读次数:
101
From: KU Leuven; ESAT-STADIUS比利时鲁汶大学 ?? How to model real-world multidimensional time series? especially, when these are sporadically observed data. ? ...
分类:
其他好文 时间:
2020-02-12 00:56:56
阅读次数:
82