difizuhvovs
这个作者很懒,什么都没留下…
展开
-
Time-weighted dynamic time warping (TWDTW) method
文章地址:High-resolution map of sugarcane cultivation in Brazil using a phenology-based method验证样本不一定必须要实地采集:原创 2022-08-11 20:06:23 · 3868 阅读 · 0 评论 -
使用时间序列卫星数据和印度北方邦地区单产统计数据绘制历史小麦产量地图
在获取数据方面有点像傻瓜式的GEE)这是esci所以查不到影响因子ovo。原创 2022-08-10 12:20:02 · 237 阅读 · 0 评论 -
WorldCereal下玉米和小麦全球作物日历
文章地址:Global crop calendars of maize and wheat in the framework of the WorldCereal project获取作物日历的网站:原创 2022-08-09 21:51:16 · 606 阅读 · 0 评论 -
DL|循环神经网络部分
一、序列模型时间序列预测方式有自回归模型(与过去所有时间有关)、马尔可夫模型(只与x个过去数据有关)、潜变量模型(h+x->新的h,再循环)。多层感知机实现马尔可夫模型:%matplotlib inlineimport torchfrom torch import nnfrom d2l import torch as d2lT = 1000 # 总共产生1000个点time = torch.arange(1, T + 1, dtype=torch.float32)x = to原创 2022-05-26 16:47:58 · 174 阅读 · 0 评论 -
DL|深度学习笔记
把自己在学习深度学习过程中搜索的各种问题记到这里。X = torch.normal(0, 1, size=(2, 1)) 意思是从均值为0,标准差为1的正态分布中抽取随机数,2行1列,“size=”可以省略不写原创 2022-03-13 16:06:48 · 2213 阅读 · 0 评论 -
DL|深度学习记录(计算机视觉部分)
一、数据增广%matplotlib inlineimport torchimport torchvisionfrom torch import nnfrom d2l import torch as d2ld2l.set_figsize()img = d2l.Image.open('/content/drive/MyDrive/DL/data/cat.jpg')d2l.plt.imshow(img)def apply(img, aug, num_rows=2, num_cols=4, s原创 2022-04-14 16:17:23 · 2935 阅读 · 0 评论 -
DL|深度学习入门记录
一、colab打开的方法是在google drive中新建。二、点击可以重命名:原创 2022-03-11 17:17:52 · 1447 阅读 · 0 评论