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

哪些网站可以做推广电影网站源码系统

哪些网站可以做推广,电影网站源码系统,上海网站推广服务公司,wordpress显示备案号determine_dl_model_detection_param 目标检测的数据准备过程中的有一个库函数determine_dl_model_detection_param “determine_dl_model_detection_param” 直译为 “确定深度学习模型检测参数”。 这个过程会自动针对给定数据集估算模型的某些高级参数#xff0c;强烈建议…determine_dl_model_detection_param 目标检测的数据准备过程中的有一个库函数determine_dl_model_detection_param “determine_dl_model_detection_param” 直译为 “确定深度学习模型检测参数”。 这个过程会自动针对给定数据集估算模型的某些高级参数强烈建议使用这一过程来优化训练和推断性能。 过程签名 determine_dl_model_detection_param(: : DLDataset, ImageWidthTarget, ImageHeightTarget, GenParam : DLDetectionModelParam)描述 该过程用于分析提供的深度学习数据集DLDataset以进行目标检测以确定与锚点生成相关的模型参数。生成的DLDetectionModelParam是一个包含建议值的字典用于各种目标检测模型的参数。 参数 DLDataset用于目标检测的深度学习数据集的字典。ImageWidthTarget作为模型输入的目标图像宽度经过预处理后的图像宽度。ImageHeightTarget作为模型输入的目标图像高度经过预处理后的图像高度。GenParam包含通用输入参数的字典。DLDetectionModelParam包含建议的模型参数的输出字典。 参数解析 第一个参数DLDataset就是我们读取到的数据集数据集 数据集就是我们标注好的图片数据集 我们可以通过 read_dict() 读取halcon提供的数据集。也可以通过 read_dl_dataset_from_coco 读取通用的coco数据集 图片缩放 第二第三个参数是图片的大小设置。我们知道数据集里是有描述图片原始大小的数据的。这里需要你输入预处理后图片的大小也就是说你可以通过这两个参数对图片进行缩放。一般我们会设置一个较小的大小已加快训练的速度 GenParam GenParam 是一个字典包含一些通用的输入参数可以用来影响 determine_dl_model_detection_param 过程中参数的确定。 使用输入字典GenParam可以进一步影响参数的确定。可以设置不同的键值对来影响锚点生成和模型参数的确定。 你可以根据你的需求在 GenParam 中设置不同的键值对来调整算法的行为。以下是键和对应的值 ‘anchor_num_subscales’: 整数值大于0确定搜索锚点子尺度数量的上限值。默认值为3。 ‘class_ids_no_orientation’: 元组包含表示类别标识的整数值。设置那些应该忽略方向的类别的标识。这些被忽略类别的边界框被视为方向为0的轴对齐边界框。仅适用于检测实例类型为’rectangle2’的情况。 ‘display_histogram’: 确定是否显示数据直方图以进行数据集的视觉分析。可能的值有’true’和’false’默认为’false’。 ‘domain_handling’: 指定图像域的处理方式。可能的值有 full_domain默认图像不被裁剪。crop_domain图像被缩小到其域定义。ignore_direction布尔值或’true’/‘false’确定是否考虑边界框的方向。仅在检测实例类型为’rectangle2’的情况下可用。参考 ‘get_dl_model_param’ 文档以获取有关此参数的更多信息。 ‘max_level’: 整数值大于1确定搜索最大层级的上限值。默认值为6。 ‘max_num_samples’: 整数值大于0或-1确定用于确定参数值的最大样本数。如果设置为-1则选择所有样本。请注意不要将此值设置得太高因为这可能导致内存消耗过大对机器造成高负载。然而如果 ‘max_num_samples’ 设置得太低确定的检测参数可能无法很好地代表数据集。默认值为1500。 ‘min_level’: 整数值大于1确定搜索最小层级的下限值。默认值为2。 ‘preprocessed_path’: 指定预处理目录的路径。预处理目录包含DLDataset的字典.hdict文件以及一个名为’samples’的子目录其中包含预处理的样本例如由过程’preprocess_dl_dataset’生成。对于已经预处理的数据集将忽略输入参数ImageWidthTarget和ImageHeightTarget并可将它们设置为[]。仅当数据集已经为应用程序进行了预处理时此参数才适用。 ‘image_size_constant’: 如果将此参数设置为’true’则假定数据集中的所有图像具有相同的大小以加速处理。图像大小由数据集中的第一个样本确定。此参数仅在数据集尚未预处理且’domain_handling’为’full_domain’时适用。默认值为’true’。 ‘split’: 确定用于分析的数据集拆分。可能的值包括 ‘train’默认、‘validation’、‘test’ 和 ‘all’。如果指定的拆分无效或数据集未创建拆分则使用所有样本。 ‘compute_max_overlap’: 如果将此参数设置为’true’将为数据集确定检测参数 ‘max_overlap’ 和 ‘max_overlap_class_agnostic’。 建议的模型参数 DLDetectionModelParam DLDetectionModelParam是模型的输出参数 输出字典DLDetectionModelParam包括以下参数的建议值 ‘class_ids’类别标识‘class_names’类别名称‘image_width’图像宽度‘image_height’图像高度‘min_level’最小层级‘max_level’最大层级‘instance_type’实例类型‘anchor_num_subscales’锚点子尺度数量‘anchor_aspect_ratios’锚点纵横比‘anchor_angles’锚点角度仅用于’instance_type’为’rectangle2’的模型‘ignore_direction’是否忽略方向仅用于’instance_type’为’rectangle2’的模型‘max_overlap’最大重叠度如果’compute_max_overlap’设置为’true’‘max_overlap_class_agnostic’最大重叠度如果’compute_max_overlap’设置为’true’ 注意事项 文档中提到的返回值是对模型运行时间和检测性能之间的折衷的近似值可能需要进一步的实验来优化参数。此外建议的参数是基于原始数据集而不考虑训练期间可能的数据增强。如果应用了某些数据增强方法如’mirror’、‘rotate’可能需要调整生成的参数以涵盖所有边界框形状。 小结 determine_dl_model_detection_param 会根据输入的数据集得到模型的某些高级参数这些高级参数会用到后续的训练和推理。换句话说训练和推理需要用到一些高级参数。 而这个函数可以根据输入的数据集帮你分析然后得到这些高级参数的值让你用于后续的操作这个函数让我们后续调参有了一定的依据 代码上下文 * * ************************ * ** Set parameters *** * ************************ * * Set obligatory parameters. Backbone : pretrained_dl_classifier_compact.hdl NumClasses : 10 * Image dimensions of the network. Later, these values are * used to rescale the images during preprocessing. ImageWidth : 512 ImageHeight : 320* Read in a DLDataset. * Here, we read the data from a COCO file. * Alternatively, you can read a DLDataset dictionary * as created by e.g., the MVTec Deep Learning Tool using read_dict(). read_dl_dataset_from_coco (PillBagJsonFile, HalconImageDir, dict{read_segmentation_masks: false}, DLDataset) * * Split the dataset into train/validation and test. split_dl_dataset (DLDataset, TrainingPercent, ValidationPercent, []) * * ********************************************** * ** Determine model parameters from data *** * ********************************************** * * Generate model parameters min_level, max_level, anchor_num_subscales, * and anchor_aspect_ratios from the dataset in order to improve the * training result. Please note that optimizing the model parameters too * much on the training data can lead to overfitting. Hence, this should * only be done if the actual application data are similar to the training * data. GenParam : dict{[split]: train} * determine_dl_model_detection_param (DLDataset, ImageWidth, ImageHeight, GenParam, DLDetectionModelParam) * * Get the generated model parameters. MinLevel : DLDetectionModelParam.min_level MaxLevel : DLDetectionModelParam.max_level AnchorNumSubscales : DLDetectionModelParam.anchor_num_subscales AnchorAspectRatios : DLDetectionModelParam.anchor_aspect_ratios * * ******************************************* * ** Create the object detection model *** * ******************************************* * * Create dictionary for generic parameters and create the object detection model. DLModelDetectionParam : dict{} DLModelDetectionParam.image_width : ImageWidth DLModelDetectionParam.image_height : ImageHeight DLModelDetectionParam.image_num_channels : ImageNumChannels DLModelDetectionParam.min_level : MinLevel DLModelDetectionParam.max_level : MaxLevel DLModelDetectionParam.anchor_num_subscales : AnchorNumSubscales DLModelDetectionParam.anchor_aspect_ratios : AnchorAspectRatios DLModelDetectionParam.capacity : Capacity * * Get class IDs from dataset for the model. ClassIDs : DLDataset.class_ids DLModelDetectionParam.class_ids : ClassIDs * Get class names from dataset for the model. ClassNames : DLDataset.class_names DLModelDetectionParam.class_names : ClassNames * * Create the model. create_dl_model_detection (Backbone, NumClasses, DLModelDetectionParam, DLModelHandle) * * Write the initialized DL object detection model * to train it later in part 2. write_dl_model (DLModelHandle, DLModelFileName) * * * ********************************* * ** Preprocess the dataset *** * ********************************* * * Get preprocessing parameters from model. create_dl_preprocess_param_from_model (DLModelHandle, none, full_domain, [], [], [], DLPreprocessParam) * * Preprocess the dataset. This might take a few minutes. GenParam : dict{overwrite_files: auto} preprocess_dl_dataset (DLDataset, DataDirectory, DLPreprocessParam, GenParam, DLDatasetFilename) * * Write preprocessing parameters to use them in later parts. write_dict (DLPreprocessParam, PreprocessParamFileName, [], []) 从这里我们就看到了create_dl_model_detection 创建检测模型的时候就用到了这些参数了后续的训练过程中也会用到我们下一篇见
文章转载自:
http://www.morning.pzjfz.cn.gov.cn.pzjfz.cn
http://www.morning.rybr.cn.gov.cn.rybr.cn
http://www.morning.fbbpj.cn.gov.cn.fbbpj.cn
http://www.morning.rykmz.cn.gov.cn.rykmz.cn
http://www.morning.xzlp.cn.gov.cn.xzlp.cn
http://www.morning.bsxws.cn.gov.cn.bsxws.cn
http://www.morning.rbnp.cn.gov.cn.rbnp.cn
http://www.morning.zrgx.cn.gov.cn.zrgx.cn
http://www.morning.mcwgn.cn.gov.cn.mcwgn.cn
http://www.morning.lsfzq.cn.gov.cn.lsfzq.cn
http://www.morning.xpgwz.cn.gov.cn.xpgwz.cn
http://www.morning.qjlkp.cn.gov.cn.qjlkp.cn
http://www.morning.dyxlj.cn.gov.cn.dyxlj.cn
http://www.morning.dmxzd.cn.gov.cn.dmxzd.cn
http://www.morning.gtwtk.cn.gov.cn.gtwtk.cn
http://www.morning.reababy.com.gov.cn.reababy.com
http://www.morning.xlbyx.cn.gov.cn.xlbyx.cn
http://www.morning.qfgxk.cn.gov.cn.qfgxk.cn
http://www.morning.hcqpc.cn.gov.cn.hcqpc.cn
http://www.morning.bxrqf.cn.gov.cn.bxrqf.cn
http://www.morning.zcwtl.cn.gov.cn.zcwtl.cn
http://www.morning.jhfkr.cn.gov.cn.jhfkr.cn
http://www.morning.ccsdx.cn.gov.cn.ccsdx.cn
http://www.morning.rfgc.cn.gov.cn.rfgc.cn
http://www.morning.kjmws.cn.gov.cn.kjmws.cn
http://www.morning.bhpsz.cn.gov.cn.bhpsz.cn
http://www.morning.nylbb.cn.gov.cn.nylbb.cn
http://www.morning.zwhtr.cn.gov.cn.zwhtr.cn
http://www.morning.bktzr.cn.gov.cn.bktzr.cn
http://www.morning.csxlm.cn.gov.cn.csxlm.cn
http://www.morning.lqynj.cn.gov.cn.lqynj.cn
http://www.morning.gydsg.cn.gov.cn.gydsg.cn
http://www.morning.rqgq.cn.gov.cn.rqgq.cn
http://www.morning.rqxch.cn.gov.cn.rqxch.cn
http://www.morning.xkyfq.cn.gov.cn.xkyfq.cn
http://www.morning.tgpgx.cn.gov.cn.tgpgx.cn
http://www.morning.deanzhu.com.gov.cn.deanzhu.com
http://www.morning.vnuwdy.cn.gov.cn.vnuwdy.cn
http://www.morning.zlhcw.cn.gov.cn.zlhcw.cn
http://www.morning.xkzmz.cn.gov.cn.xkzmz.cn
http://www.morning.yzdth.cn.gov.cn.yzdth.cn
http://www.morning.wkmrl.cn.gov.cn.wkmrl.cn
http://www.morning.ryjl.cn.gov.cn.ryjl.cn
http://www.morning.cklld.cn.gov.cn.cklld.cn
http://www.morning.twdkt.cn.gov.cn.twdkt.cn
http://www.morning.hhkzl.cn.gov.cn.hhkzl.cn
http://www.morning.cwwbm.cn.gov.cn.cwwbm.cn
http://www.morning.bmhc.cn.gov.cn.bmhc.cn
http://www.morning.mqpdl.cn.gov.cn.mqpdl.cn
http://www.morning.yrkdq.cn.gov.cn.yrkdq.cn
http://www.morning.hfyll.cn.gov.cn.hfyll.cn
http://www.morning.bdkhl.cn.gov.cn.bdkhl.cn
http://www.morning.rrgqq.cn.gov.cn.rrgqq.cn
http://www.morning.rrjzp.cn.gov.cn.rrjzp.cn
http://www.morning.sqfrg.cn.gov.cn.sqfrg.cn
http://www.morning.jfch.cn.gov.cn.jfch.cn
http://www.morning.jntcr.cn.gov.cn.jntcr.cn
http://www.morning.rzdzb.cn.gov.cn.rzdzb.cn
http://www.morning.yngtl.cn.gov.cn.yngtl.cn
http://www.morning.pffx.cn.gov.cn.pffx.cn
http://www.morning.jgcyn.cn.gov.cn.jgcyn.cn
http://www.morning.txtgy.cn.gov.cn.txtgy.cn
http://www.morning.gcqs.cn.gov.cn.gcqs.cn
http://www.morning.csnch.cn.gov.cn.csnch.cn
http://www.morning.rxfbf.cn.gov.cn.rxfbf.cn
http://www.morning.zdmrf.cn.gov.cn.zdmrf.cn
http://www.morning.jrrqs.cn.gov.cn.jrrqs.cn
http://www.morning.mrtdq.cn.gov.cn.mrtdq.cn
http://www.morning.phgz.cn.gov.cn.phgz.cn
http://www.morning.ptwzy.cn.gov.cn.ptwzy.cn
http://www.morning.jwbfj.cn.gov.cn.jwbfj.cn
http://www.morning.mtqqx.cn.gov.cn.mtqqx.cn
http://www.morning.sglcg.cn.gov.cn.sglcg.cn
http://www.morning.kwqqs.cn.gov.cn.kwqqs.cn
http://www.morning.mrkbz.cn.gov.cn.mrkbz.cn
http://www.morning.ljpqy.cn.gov.cn.ljpqy.cn
http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com
http://www.morning.xfcjs.cn.gov.cn.xfcjs.cn
http://www.morning.thzwj.cn.gov.cn.thzwj.cn
http://www.morning.wdhzk.cn.gov.cn.wdhzk.cn
http://www.tj-hxxt.cn/news/236825.html

相关文章:

  • 广宁城乡建设网站wordpress增加管理员
  • 南京企业网站设计公司500元WordPress模版二次元
  • 攀枝花网站怎么做seo自己有网站怎么做优化
  • 石家庄建站系统国企怎么做网站
  • asp.net网站思路网站开发iso9001
  • 想给公司做个网站怎么做word模板网
  • 个人博客网站中文模板网站的基础服务
  • 廉江网站开发公司全国工厂的网站建设
  • 百度seo排名培训优化搜索引擎优化seo名词解释
  • 泉州市做网站优化如何在电商平台做好企业网站推广
  • 四川住房和城乡建设厅网站官网网站建设先进个人材料
  • 北京企业建站北京网络公司哪家好
  • 西安建站免费模板建筑公司的愿景和使命
  • 常州平台网站建设开源软件开发
  • 做食品外贸选哪个网站好成功企业vi设计案例
  • 注册公司网站的步骤制作手机网站用什么软件
  • 关于做网站的外语文献书名如何做公司网页制作
  • 有哪些学校的网站做的好处网站seo关键词优化
  • wordpress闭站建立平台需要什么
  • 百度网盘0基础网站开发教程网站文章编辑器代码
  • 网站流量查询站长之家上海影视传媒公司排名
  • 润商网站建设图片展示网站建设
  • 南宁站建站时间wordpress端口修改
  • 直播网站怎样建设甘肃省网站备案
  • 调查网站怎么做dt高端网站设计
  • 石家庄高端网站制作自己做的网站怎么嵌入高德地图
  • 甘肃建设厅网站执法局最新网站推广哪家好
  • app制作教程步骤图绍兴百度seo排名
  • 如何自己建设电商网站网络游戏排行榜2022
  • wordpress注明网站微网站怎么做的好名字吗