首页 > 其他分享 >论文笔记-Two-phase flow regime identification based on the liquid-phase velocity information and machine

论文笔记-Two-phase flow regime identification based on the liquid-phase velocity information and machine

时间:2024-04-24 22:00:27浏览次数:21  
标签:information SVM based softmax phase 速度 LSTM

对象:液相速度信息
方法:CNN、LSTM、SVM
目标:实现了水平管道内两相流态识别

关注特征:从速度时间序列数据中提取的统计特征:均值、均方根和功率谱密度、最大速度比和最大速度差比
结果:SVM-93.1%,CNN-94%,LSTM-不佳73.3%

LSTM:
总共使用了 300 秒的速度数据,然后将其分为 180 秒用于训练和 120 秒用于测试。将数据分为 1 s 组,每组提取 17 个特征作为输入数据。因此,实时流态识别的时间分辨率为1 s。在训练过程之前,根据录制的视频,将每个 1 s 训练组手动分类

LSTM 层包含 100 个隐藏单元,在该层中执行附加交互,以改善训练期间长序列上的梯度流。
基于LSTM层的学习结果,需要全连接层、softmax层和分类输出层来预测类别标签。 LSTM层中的每个神经元通过全连接层连接到softmax层,输出由softmax层表示为概率;在分类层中计算指定数量的类的交叉熵损失。获得了三个流动条件类别的预测结果作为输出,并分析了它们的准确性。

标签:information,SVM,based,softmax,phase,速度,LSTM
From: https://www.cnblogs.com/darunfa-and-20-years-fish/p/18156467

相关文章

  • Causal Inference理论学习篇-Tree Based-From Uplift Tree to Uplift Forest
    upliftTree和causaltree一样,uplifttree[8]作为一种以分类任务为主的,同样是将因果效应apply到节点分割的标准中。区别是:causaltree:1)使用honest的方法;2)从effect的偏差和方差的角度切入指导树的构建,把分类问题转化为回归问题去做。3)逻辑上只支持两个treatment而uplifttree......
  • Causal Inference理论学习篇-Tree Based-Causal Forest
    广义随机森林了解causalforest之前,需要先了解其forest实现的载体:GENERALIZEDRANDOMFORESTS[6](GRF)其是随机森林的一种推广,经典的随机森林只能去估计labelY,不能用于估计复杂的目标,比如causaleffect,CausalTree、CauaslForest的同一个作者对其进行了改良。先定义一下矩估计......
  • WPF ContextMenu MenuItem style based on
    <Windowx:Class="WpfApp58.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.......
  • Command PhaseScriptExecution failed with a nonzero exit code 错误解决记录
    xCode报这个错误,首先看是哪个文件报错,进入错误日志/Users/fanvil/Library/Developer/Xcode/DerivedData。因为我这边是FBReactNativeSpec这个文件下的错误,所以很容易找到错误日志:/Users/fanvil/Desktop/iOS/Demo/ios/Pods/../../node_modules/react-native/React/FBReactNativeSp......
  • Causal Inference理论学习篇-Tree Based-Causal Tree
    Tree-BasedAlgorithmsTree-based这类方法,和之前meta-learning类的方法最明显的区别是:这类方法把causaleffect的计算显示的加入了到了树模型节点分裂的标准中从response时代过渡到了effect时代。大量的这类算法基本围绕着树节点分裂方式做文章,普遍采用的是兼容性比较高......
  • Evolutionary many-objective optimization algorithm based on angle and clustering
    Evolutionarymany-objectiveoptimizationalgorithmbasedonangleandclustering本文的工作本文提出了一种新的MaOEA,它使用锐角作为相似度量。通过聚类方法,最终将种群划分为若干个聚类,每个聚类中仅选择一个个体,以保持环境选择的趋同性和多样性。据我们所知,我们首先尝试利......
  • 52 Things: Number 50: What is the BLS pairing-based signature scheme?
    52Things,Number50:WhatistheBLSpairing-basedsignaturescheme?52件事,第50号:什么是基于BLS配对的签名方案? ThisweekwelookatwhattheBLSpairing-basedsignatureschemeis.See here forfulldetails.本周我们来看看什么是基于BLS配对的签名方案。请参......
  • 52 Things: Number 51: What is the security model for ID-based encryption, and de
    52Things:Number51:WhatisthesecuritymodelforID-basedencryption,anddescribeoneIBEscheme.52件事:第51件:基于ID的加密的安全模型是什么,并描述一个IBE方案。 Thisisthelatestinaseriesofblogpoststoaddressthelistof '52ThingsEveryPhDStu......
  • 52 Things: Number 32: difference between game-based and simulation-based securit
    52Things:Number32:differencebetweengame-basedandsimulation-basedsecuritydefinitions52件事:数字32:基于游戏和基于模拟的安全定义之间的区别 Thisisthelatestinaseriesofblogpoststoaddressthelistof'52ThingsEveryPhDStudentShouldKnowt......
  • 补充:基于项目的协同过滤推荐算法(Item-Based Collaborative Filtering Recommendation
    前言继续上篇博客,继续读论文。想看上篇论文的同学可以点击这里相关工作Inthissectionwebrieflypresentsomeoftheresearchliteraturerelatedtocollaborativefiltering,recommendersystems,dataminingandpersonalization.在本节中,我们简要介绍了一些与协同......