当前位置: 首页 > news >正文

茶道网站开发背景做报名统计的网站

茶道网站开发背景,做报名统计的网站,模拟购物网站开发项目,wp网站打开太慢怎么做优化时序预测 | Python实现GA-TCN-LSTM遗传算法-时间卷积神经网络-长短期记忆网络时间序列预测 目录 时序预测 | Python实现GA-TCN-LSTM遗传算法-时间卷积神经网络-长短期记忆网络时间序列预测预测效果基本介绍程序设计参考资料 预测效果 基本介绍 使用先进的机器学习技术和优化算法…时序预测 | Python实现GA-TCN-LSTM遗传算法-时间卷积神经网络-长短期记忆网络时间序列预测 目录 时序预测 | Python实现GA-TCN-LSTM遗传算法-时间卷积神经网络-长短期记忆网络时间序列预测预测效果基本介绍程序设计参考资料 预测效果 基本介绍 使用先进的机器学习技术和优化算法开发石油产量预测模型包括开发遗传算法-时间卷积神经网络-长短期记忆GA-TCN-LSTM集成模型以及对循环神经网络RNN、门控循环单元 GRU、长短期记忆LSTM和时间卷积网络TCN。 此外该程序还包括使用探索性数据分析和数据清理旨在检测、可视化和处理数据集中的异常值。 利用先进的机器学习技术和优化算法可以通过考虑这些复杂性来提高预测的准确性 并确定每个模型的最佳超参数组合。 程序设计 私信博主回复Python实现GA-TCN-LSTM遗传算法-时间卷积神经网络-长短期记忆网络时间序列预测。Python 3.10.7 # 找到将用于 TCN-LSTM 预测的加权平均指标的最佳权重。 # decode bitstring to numbers def decode(bounds: list, n_bits: int, bitstring: list )- list:Decodes a bitstring into a list of values that correspond to the variables in an optimization problem.Args:bounds (list): A list of lists, where each list represents the lower and upper bounds of a variable in the optimization problem.n_bits (int): An integer that specifies the number of bits used to represent each variable in the bitstring.bitstring (list): A list of bits that represents a candidate solution in the optimization problem.Returns:list: A list of values that correspond to the variables in the optimization problem.decoded list()largest 2**n_bitsfor i in range(len(bounds)):# extract the substringstart, end i * n_bits, (i * n_bits)n_bitssubstring bitstring[start:end]# convert bitstring to a string of charschars .join([str(s) for s in substring])# convert string to integerinteger int(chars, 2)# scale integer to desired rangevalue bounds[i][0] (integer/largest) * (bounds[i][1] - bounds[i][0])value np.round(value)value int(value)# storedecoded.append(value)return decoded# tournament selection def selection(pop: list, scores: list, k: int 3 )- list:Selects a candidate solution from a population using tournament selection.Args:pop (list): A list of candidate solutions.scores (list): A list of fitness scores for the candidate solutions.k (int): The number of individuals to compete in each tournament.Returns:list: The selected candidate solution.# first random selectionselection_ix randint(len(pop))for ix in randint(0, len(pop), k-1):# check if better (e.g. perform a tournament)if scores[ix] scores[selection_ix]: # which individual has the lowest lossselection_ix ixreturn pop[selection_ix]# crossover two parents to create two children def crossover(p1: list, p2: list, r_cross: float )- list:Performs crossover between two parent candidate solutions to create two child candidate solutions.Args:p1 (list): The first parent candidate solution.p2 (list): The second parent candidate solution.r_cross (float): The crossover rate.Returns:list: A list containing the two child candidate solutions.# children are copies of parents by defaultc1, c2 p1.copy(), p2.copy()# check for recombinationif rand() r_cross:# select crossover point that is not on the end of the stringpt randint(1, len(p1)-2)# perform crossoverc1 np.append(p1[:pt] , p2[pt:])c2 np.append(p2[:pt] , p1[pt:])return [c1, c2]# mutation operator def mutation(bitstring: list, r_mut: float )- list:Mutates a candidate solution by flipping bits in its bitstring.Args:bitstring (list): The bitstring of the candidate solution.r_mut (float): The mutation rate.Returns:Nonefor i in range(len(bitstring)):# check for a mutationif rand() r_mut:# flip the bitbitstring[i] 1 - bitstring[i]# genetic algorithm def genetic_algorithm(series: pd.Series, netowrk_type: str, steps_ahead: int,evaluate: callable, bounds: list, n_bits: int, n_iter: int, n_pop: int, r_cross: float, r_mut: float )- list:Implements a genetic algorithm to optimize the hyperparameters of a neural network.Args:series (pd.Series): The time series data to be used for training and validation.network_type (str): The type of neural network to be optimized (lstm or tcn).steps_ahead (int): The number of steps ahead to forecast.evaluate (callable): A function that evaluates the fitness of a candidate solution based on the validation loss.bounds (list): A list of lists, where each list represents the lower and upper bounds of a variable in the optimization problem.n_bits (int): An integer that specifies the number of bits used to represent each variable in the bitstring.n_iter (int): The number of generations to run the genetic algorithm.n_pop (int): The number of candidate solutions in each generation.r_cross (float): The crossover rate.r_mut (float): The mutation rate.Returns:list: A list containing the best candidate solution and its fitness score.if network_type not in [lstm, tcn]:raise ValueError(network_type must be either lstm or tcn)# initial population of random bitstringpop [randint(0, 2, n_bits*len(bounds)).tolist() for _ in range(n_pop)]# keep track of best solutionbest, best_eval 0, inf# enumerate generationsfor gen in range(1, n_iter1):print(fGeneration:{gen})# decode populationdecoded [decode(bounds, n_bits, p) for p in pop]# evaluate all candidates in the populationscores [evaluate(series, steps_ahead, individual) for individual in decoded]# check for new best solutionfor i in range(n_pop):if scores[i] best_eval: # find the lowest validation lossbest, best_eval pop[i], scores[i]if network_type lstm:print(%d, new best combination, Epoch: %d, num_hidden_layers: %d, num_neurons:%d, batch_size: %d, window_size: %d, Loss %.8f % \(gen, decoded[i][0],decoded[i][1], decoded[i][2], decoded[i][3], decoded[i][4],scores[i]))elif network_type tcn:print(%d, new best combination, Epoch: %d, n_filters_1: %d, n_filters_2: %d, n_filters_3: %d, batch_size: %d, window_size: %d, Loss %.8f % \(gen, decoded[i][0],decoded[i][1], decoded[i][2], decoded[i][3], decoded[i][4], decoded[i][5],scores[i]))# select parents (Tournament selection)selected [selection(pop, scores) for _ in range(n_pop)]# create the next generationchildren list()for i in range(0, n_pop, 2):# get selected parents in pairsp1, p2 selected[i], selected[i1]# crossover and mutationfor c in crossover(p1, p2, r_cross):# mutationmutation(c, r_mut)# store for next generationchildren.append(c)# replace populationpop childrenreturn [best, best_eval] #find the optimal weights for the weighted average metric that will be used for the prediction of TCN-LSTM # Define a range for the weights to be searched weights np.linspace(0.0, 1, 100) weights np.round(weights,5)# Initialize the best weights and best performance # best_weights (1,1) best_performance float(inf)# Iterate over all possible weight combinations for w1 in weights:for w2 in weights: # Make predictions using the current weight combinationpredictions ((w1 * yhat_tcn_test) (w2 * yhat_lstm_test)) / (w1w21e-10)# Evaluate the performance using some metric, e.g. accuracyperformance sqrt(mean_squared_error(y_tcn_test, predictions))# Update the best weights and best performance if the current performance is betterif performance best_performance:best_weights (w1, w2)best_performance performanceprint(Best weights:, best_weights) print(Best performance:, best_performance) 参考资料 [1] https://blog.csdn.net/kjm13182345320/article/details/128247182
http://www.zqtcl.cn/news/101968/

相关文章:

  • 中国建设银行网站评价广告投放都有哪些平台
  • 网站系统免费wordpress附件不在数据库
  • 网站开发国外研究状况电商推广是什么意思
  • 太原建高铁站wordpress分级菜单显示
  • 工信部网站备案变更运营一个app大概多少钱
  • 杭州网站建设公司哪家好网站建设 中国联盟网
  • 成都手机网站建设价格网站安全检测软件
  • 长沙申请域名网站备案找个做游戏的视频网站
  • 网站平台开发与应用面试西安seo优化顾问
  • 苏州网站制作及推广中国优秀的企业网站
  • 网站开发语言太老东莞哪家公司做网站比较好
  • 单位网站制作费用报价单博客和个人网站建设情况
  • 山东网站建设公司电话全球建筑设计网站
  • wordpress 站点描述国外优秀网页设计赏析
  • php红酒网站建设软件开发外包项目合作
  • 做网站的都改行做什么了上海推牛网络科技有限公司
  • 在哪里建设网站dedecms做网站注意事项
  • 垂直类网站怎么做推广互联网站的建设维护营销
  • 手机网站大全排行江西省赣州市邮政编码
  • 集团网站建设建站模板seo优化工具软件
  • 大连项目备案网站网站建设一下需要多少费用
  • 松溪网站建设做网站外包
  • sdcms网站建设模板WordPress自定义连接菜单
  • 做设计常用的素材网站外贸平台销售
  • 建网站一般最低多少钱地方门户模板
  • 网站开发虚拟主机管理系统星巴克网络营销方式
  • phpnow 搭建网站网站建设一般怎么付款
  • 网站开发三剑客湖州市南浔区建设局网站
  • 江西专业的企业网站建设公司长沙做网站找哪家好
  • 国外互联网资讯网站南宁专业网站建设公司