上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
参考:Blealtan/efficient-kan: An efficient pure-PyTorch implementation of Kolmogorov-Arnold Network (KAN). 哔哩哔哩上面有人用这个代码进行了花朵分类训练:https://www.bilibili.co Read More
posted @ 2025-04-23 17:28 秋刀鱼CCC Views(61) Comments(0) Diggs(0)
posted @ 2025-04-23 16:28 秋刀鱼CCC Views(26) Comments(0) Diggs(0)
批量处理雨滴谱数据进行归一化,数据格式为一个txt有多个时间戳,一个时间戳的下一行有一个数值,以此类推 公式: #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: KAN_N.py @time: 2025/04/ Read More
posted @ 2025-04-21 17:41 秋刀鱼CCC Views(56) Comments(0) Diggs(0)
要使用这段代码进行预测,特别是预测未来6分钟到30分钟,你需要在现有代码的基础上进行一些调整和补全。以下是你需要考虑的关键步骤和需要补全的代码部分: 1. 数据准备 时间序列数据: 确保你的训练数据是按时间顺序排列的,因为预测未来雨滴谱数浓度是一个时间序列预测问题。 你可能需要将数据转换为监督学习格 Read More
posted @ 2025-04-21 16:53 秋刀鱼CCC Views(83) Comments(0) Diggs(0)
首先将日期列合并 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: datecon.py @time: 2025/03/12 @desc:日期合并 """ import pandas as pd # 读取CSV Read More
posted @ 2025-03-12 11:03 秋刀鱼CCC Views(36) Comments(0) Diggs(0)
每个时间戳对应1×21数组,将其求和为1×1,结果保留2位小数 #!usr/bin/env python # -*- coding:utf-8 -*- """ @author: Suyue @file: lianxi.py @time: 2025/03/11 @desc: """ import nu Read More
posted @ 2025-03-11 09:40 秋刀鱼CCC Views(14) Comments(0) Diggs(0)
选用蔡淼的论文:[1]蔡淼,欧建军,周毓荃,等.L波段探空判别云区方法的研究[J].大气科学,2014,38(02):213-222. 里面的阈值法: #!/usr/bin/python3 # -*- coding: utf-8 -*- """ @Time : 2025/1/20 23:22 @Au Read More
posted @ 2025-01-20 23:02 秋刀鱼CCC Views(32) Comments(0) Diggs(0)
数据清洗,清洗“RHU”列为999999的数据 #!/usr/bin/python3 # -*- coding: utf-8 -*- """ @Time : 2025/1/20 22:50 @Author : Suyue @Email : 1493117872@qq.com @File : clou Read More
posted @ 2025-01-20 22:51 秋刀鱼CCC Views(62) Comments(0) Diggs(0)
在Python中,如果您有包含“纬度”、“经度”、“纬度偏移量”和“经度偏移量”的DataFrame,并且这些值都是浮点数,可以使用这些值来计算新的、具体的经纬度。通常,这些偏移量是基于某种单位(如米、公里等)在地球表面上的距离转换而来的。由于地球是一个近似椭球体,计算精确的偏移后的经纬度需要考虑地 Read More
posted @ 2025-01-20 22:26 秋刀鱼CCC Views(120) Comments(0) Diggs(0)
这里有一组探空数据,每天08时和20时放气球,气球飞上去的时间就是用时间偏移量来计算的,而不是直接显示好的 根据“年”“月”“日”“时”“时间偏移量”列,时间偏移量单位为秒,计算具体的时间 可以使用 Python 中的 datetime 模块以及 timedelta 类来计算具体的时间。假设你有一个 Read More
posted @ 2025-01-20 21:11 秋刀鱼CCC Views(110) Comments(0) Diggs(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页