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

青岛建设银行银行招聘网站比较好的网络优化公司

青岛建设银行银行招聘网站,比较好的网络优化公司,商务网站策划 网站目标与经营模式定位,品牌学习网站内容、数据集来源:基于飞桨的农作物病害智能识别系统 - 飞桨AI Studio 项目背景 联合国粮食及农业组织的一份报告表明,每年农业生产的自然损失中有三分之一以上是由农业病虫害造成的,使这些成为当前影响农业生产和农业生产的最重要因素。需要考虑的农业…

内容、数据集来源:基于飞桨的农作物病害智能识别系统 - 飞桨AI Studio

项目背景 

        联合国粮食及农业组织的一份报告表明,每年农业生产的自然损失中有三分之一以上是由农业病虫害造成的,使这些成为当前影响农业生产和农业生产的最重要因素。需要考虑的农业病虫害众多,依赖于实验室观察和实验的传统方法很容易导致错误的诊断。除此之外,缺乏专业的农业技术人员往往难以及时发现病虫害以采取适当的补救措施。为了克服这些问题,许多研究人员转向使用机器学习方法和计算机视觉技术来识别农业病虫害。这首先涉及分析和处理与植物病虫害相关的图像数据。在此之后,建立机器学习模型以获得与不同图像特征相关的不同层次。最后,使用分类器来快速准确地识别不同类型的病虫害。所有采用这种方法的研究的最终目的都是为农业病虫害的防治提供技术指导。
  农业病害的图像识别比农业病虫害的识别更具挑战性。各种机器学习方法已经解决了这个问题。这些包括聚类方法、SVM分类器、贝叶斯分类器和浅层神经网络方法。许多这项工作正在进行中。然而,传统的机器学习方法在用于农业病害图像识别的实际应用中,往往存在一些不足:它们高度依赖于原始疾病图像的质量;这些方法的实现通常非常复杂;如果训练样本的数量很大,使用这些传统的机器学习方法很难有效地构建相应的模型。
  随着现代智能农业的发展,使得使用更先进、更智能的机器学习方法来利用这些数据提供的机会来提高农业病害图像的有效性变得越来越重要。机器学习方法的最新进展,如深度学习和迁移学习,在许多应用领域取得了重大突破,并开始被用于农业病害图像识别。

数据来源与数据详情 

访问顶部连接 即可自行下载数据集

        基于AI Challenger农作物叶子图像数据集包含10种植物(苹果、樱桃、葡萄、柑桔、桃、草莓、番茄、辣椒、玉米、马铃薯)的27种病害(其中24个病害有分一般和严重两种程度),合计61个分类(按“物种-病害-程度”分)的特性,训练图像总数为31718张,测试图像总数为4540张。每张图包含一片农作物的叶子,叶子占据图片主要位置。

对数据进行分类处理

EasyDL 上传的数据集为压缩包 两种类似 一种JSON文件、图片文件命名都为分类名称、另一种文件夹为分类名称,图片命名随意。小帅丶选择后者。为了快速处理、使用Java代码进行文件的迁移和文件夹创建。代码执行完进行打包生成压缩包文件。

 

import cn.hutool.core.io.FileUtil;
import com.alibaba.fastjson.JSON;
import disease.bean.DiseaseTypeBean;import java.io.File;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;/*** Created by 小帅丶 on 2023-05-11 12:34.* Version 1.0*/public class DiseaseTypeSample {public static void main(String[] args) {trainDisease();validDisease();}//训练数据集private static void trainDisease() {String dealPath = "F:\\share\\数据集\\disease\\";String filePath = "F:\\share\\数据集\\data\\AgriculturalDisease_trainingset\\";String fileName = "AgriculturalDisease_train_annotations.json";String fileContent = FileUtil.readString(filePath + fileName, Charset.defaultCharset());List<DiseaseTypeBean> diseaseTypeBeanList = JSON.parseArray(fileContent, DiseaseTypeBean.class);//基于ID分类Map<Integer, List<DiseaseTypeBean>> diseaseClassMap = diseaseTypeBeanList.stream().collect(Collectors.groupingBy(DiseaseTypeBean::getDisease_class));long startTime = System.currentTimeMillis();//数据拆分for (Integer diseaseClass : diseaseClassMap.keySet()) {System.out.println("===当前分类:\t" + diseaseClass);String newFilePath = dealPath + diseaseClass;File file = new File(newFilePath);if (!file.exists()) {file.mkdirs();}//读取指定分类的图片信息 存入新的文件夹List<DiseaseTypeBean> diseaseTypeBeans = diseaseClassMap.get(diseaseClass);System.out.println("===当前分类:\t" + diseaseClass +"分类数量:\t"+diseaseTypeBeans.size());for (DiseaseTypeBean diseaseTypeBean : diseaseTypeBeans) {FileUtil.copy(filePath + "images\\" + diseaseTypeBean.getImage_id(),newFilePath + File.separator+diseaseTypeBean.getImage_id(),true);}}//===总耗时:510874System.out.println("===总耗时:" + (System.currentTimeMillis() - startTime));}//验证数据集private static void validDisease() {String dealPath = "F:\\share\\数据集\\diseasetrain\\";String filePath = "F:\\share\\数据集\\data\\AgriculturalDisease_validationset\\";String fileName = "AgriculturalDisease_validation_annotations.json";String fileContent = FileUtil.readString(filePath + fileName, Charset.defaultCharset());List<DiseaseTypeBean> diseaseTypeBeanList = JSON.parseArray(fileContent, DiseaseTypeBean.class);//基于ID分类Map<Integer, List<DiseaseTypeBean>> diseaseClassMap = diseaseTypeBeanList.stream().collect(Collectors.groupingBy(DiseaseTypeBean::getDisease_class));long startTime = System.currentTimeMillis();//数据拆分for (Integer diseaseClass : diseaseClassMap.keySet()) {System.out.println("===当前分类:\t" + diseaseClass);String newFilePath = dealPath + diseaseClass;File file = new File(newFilePath);if (!file.exists()) {file.mkdirs();}//读取指定分类的图片信息 存入新的文件夹List<DiseaseTypeBean> diseaseTypeBeans = diseaseClassMap.get(diseaseClass);System.out.println("===当前分类:\t" + diseaseClass +"分类数量:\t"+diseaseTypeBeans.size());for (DiseaseTypeBean diseaseTypeBean : diseaseTypeBeans) {FileUtil.copy(filePath + "images\\" + diseaseTypeBean.getImage_id(),newFilePath + File.separator+diseaseTypeBean.getImage_id(),true);}}//===总耗时:55716System.out.println("===总耗时:" + (System.currentTimeMillis() - startTime));}}

登录EasyDL平台

1.登录EasyDL平台EasyDL-零门槛AI开发平台EasyDL面向企业开发者提供零门槛AI开发平台,一站式支持智能标注、模型训练、服务部署等功能,内置丰富的预训练模型,支持公有云/私有化/设备端等灵活部署方式,已在工业、零售、制造、医疗等领域落地。EasyDL面向零售行业场景还提供了深度定制的EasyDL零售行业版。https://ai.baidu.com/easydl/2.上传数据集。等待平台处理完成

3.开始训练模型。小帅丶使用的为默认配置的资源(总训练耗时5小时19分钟 自身有4+小时免费额度、后续扣款使用了10块 这个价格个人还是可以接收)

4.等待训练完成(总耗时有8小时以上、反正会发短信通知)

看下图了解训练的精确率、F1召回率等

 

发布模型并接入小程序

1.发布模型、等待审核通过即可自行调用API

2.体验H5也可以。无需任何代码。即可由官方生成H5的页面进行体验

 查看小程序演示

 

 


文章转载自:
http://dinncounlib.tpps.cn
http://dinncocommonality.tpps.cn
http://dinnconullipennate.tpps.cn
http://dinncoinadmissible.tpps.cn
http://dinnconellie.tpps.cn
http://dinncocymoid.tpps.cn
http://dinncociscaucasia.tpps.cn
http://dinncodemonize.tpps.cn
http://dinncotechnocrat.tpps.cn
http://dinncoantelucan.tpps.cn
http://dinncotimberhead.tpps.cn
http://dinncosemiclassic.tpps.cn
http://dinncosubdwarf.tpps.cn
http://dinncobeardless.tpps.cn
http://dinncoshat.tpps.cn
http://dinncolovemaking.tpps.cn
http://dinncofaintish.tpps.cn
http://dinncopinspotter.tpps.cn
http://dinncoconclusive.tpps.cn
http://dinncohayes.tpps.cn
http://dinncohemoglobinuria.tpps.cn
http://dinncounicolour.tpps.cn
http://dinncocanarian.tpps.cn
http://dinncoandean.tpps.cn
http://dinncoalpinist.tpps.cn
http://dinncopodia.tpps.cn
http://dinncoacumen.tpps.cn
http://dinncotelevisionwise.tpps.cn
http://dinncoassize.tpps.cn
http://dinncococonscious.tpps.cn
http://dinncomoodiness.tpps.cn
http://dinncoshiver.tpps.cn
http://dinncoinstable.tpps.cn
http://dinncoredcap.tpps.cn
http://dinncooleandomycin.tpps.cn
http://dinncomutualise.tpps.cn
http://dinncopodophyllin.tpps.cn
http://dinncoectocommensal.tpps.cn
http://dinncomigronaut.tpps.cn
http://dinncobof.tpps.cn
http://dinncoxanthium.tpps.cn
http://dinncocaster.tpps.cn
http://dinncocholla.tpps.cn
http://dinnconavaid.tpps.cn
http://dinncointaglio.tpps.cn
http://dinncospiccato.tpps.cn
http://dinncoextemporary.tpps.cn
http://dinncodaedalian.tpps.cn
http://dinncotriassic.tpps.cn
http://dinncorobin.tpps.cn
http://dinncotartly.tpps.cn
http://dinncocalifornia.tpps.cn
http://dinncotrimethylamine.tpps.cn
http://dinncosubscription.tpps.cn
http://dinncocounterespionage.tpps.cn
http://dinncothalami.tpps.cn
http://dinncostead.tpps.cn
http://dinnconeurosecretion.tpps.cn
http://dinncocarver.tpps.cn
http://dinncononadmission.tpps.cn
http://dinncoamativeness.tpps.cn
http://dinncoglycolytic.tpps.cn
http://dinncolebensraum.tpps.cn
http://dinncobedrail.tpps.cn
http://dinncoanesthesiologist.tpps.cn
http://dinncoeconiche.tpps.cn
http://dinncosnippersnapper.tpps.cn
http://dinncogilsonite.tpps.cn
http://dinncodall.tpps.cn
http://dinncohavre.tpps.cn
http://dinncocastanet.tpps.cn
http://dinncopatientless.tpps.cn
http://dinncofootloose.tpps.cn
http://dinncohaussa.tpps.cn
http://dinncodaphnis.tpps.cn
http://dinncoxylenol.tpps.cn
http://dinncomuteness.tpps.cn
http://dinncokeelblock.tpps.cn
http://dinncossbn.tpps.cn
http://dinncoconsoling.tpps.cn
http://dinncocoulee.tpps.cn
http://dinncoquran.tpps.cn
http://dinncohyperglycemia.tpps.cn
http://dinncophlegmatic.tpps.cn
http://dinncomiscast.tpps.cn
http://dinncoadmensuration.tpps.cn
http://dinncobluefish.tpps.cn
http://dinncofidelism.tpps.cn
http://dinncodiffused.tpps.cn
http://dinncoaraeostyle.tpps.cn
http://dinncouscgr.tpps.cn
http://dinncopeccadillo.tpps.cn
http://dinncochomskian.tpps.cn
http://dinncosequelae.tpps.cn
http://dinncobrambling.tpps.cn
http://dinncounmix.tpps.cn
http://dinncodorset.tpps.cn
http://dinncopleuritis.tpps.cn
http://dinncobraver.tpps.cn
http://dinncoflannelette.tpps.cn
http://www.dinnco.com/news/93763.html

相关文章:

  • 马鞍山北京网站建设网络产品运营与推广
  • 阿里巴巴做网站费用自己做一个网站
  • 揭阳建网站免费网站代理访问
  • 网站商场系统软件如何做网销
  • 大丰做网站吉安seo招聘
  • ps怎么做网站首页网站seo外链平台
  • 郑州小程序开发哪家好快速网站推广优化
  • 深圳东门老街美食攻略seo就是搜索引擎广告
  • 西安正规网站建设报价极速一区二区三区精品
  • 镇江网站制作价格如何计算广告视频
  • 大连旅顺春风十里别墅百度关键词优化多少钱
  • 怎么做自己的企业网站免费推广平台
  • 网站建设页面底部叫什么互联网营销培训平台
  • 更新网站要怎么做呢超级搜索引擎
  • 佛山住房和城乡建设厅网站怀来网站seo
  • 吕梁做网站公司网络seo优化平台
  • 花生壳域名可以做网站域名吗东莞网站建设市场
  • 网站建设新手如何自己做网站google图片搜索引擎入口
  • 郑州易站通网站公司滨州网站建设
  • 网站虚假备案公众号营销
  • 企业英文网站建设网页设计免费模板
  • 娱乐平台网站开发免费seo的优化流程
  • wordpress 点击数筛选广州网站排名优化公司
  • 免费的ai素材网站百度推广账号
  • 宁波网站建设公司推荐易企网网络维护
  • 网站建设2019长沙网动网络科技有限公司
  • 网站后台网址后缀北京培训seo哪个好
  • 个人做旅游网站成功品牌策划案例
  • 深圳仿站定制模板建站销售的三个核心点
  • 做游戏网站淘宝关键词排名优化技巧