{"id":103,"date":"2022-11-19T16:24:04","date_gmt":"2022-11-20T00:24:04","guid":{"rendered":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/"},"modified":"2024-04-15T00:56:18","modified_gmt":"2024-04-15T07:56:18","slug":"detecting-apple-leaf-infection","status":"publish","type":"post","link":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/","title":{"rendered":"Detecting Apple Leaf Infection"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"103\" class=\"elementor elementor-103\">\n\t\t\t\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-73bf68aa elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"73bf68aa\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3d019cf0\" data-id=\"3d019cf0\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-1876267 toptile elementor-widget elementor-widget-shortcode\" data-id=\"1876267\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72329ddb posttx elementor-widget elementor-widget-text-editor\" data-id=\"72329ddb\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<figure class=\"wp-caption aligncenter\"><img decoding=\"async\" class=\"alignnone\" src=\"https:\/\/cdn-images-1.medium.com\/max\/800\/1*TXBr3cOIzPt7aOTm0uoBQA.gif\" alt=\"Detecting Apple Leaf Infection\" width=\"800\" height=\"600\" data-width=\"800\" data-height=\"600\" \/><figcaption class=\"wp-caption-text\"><em>Photo by <\/em><a href=\"https:\/\/dribbble.com\/shots\/3976388-Apple\" target=\"_blank\" rel=\"noopener\"><em>Cvijovic Zarko<\/em><\/a><em> on\u00a0<\/em><a href=\"https:\/\/dribbble.com\/\" target=\"_blank\" rel=\"noopener\"><em>Dribbble<\/em><\/a><\/figcaption><\/figure><p>Like every other plant, apple leaves are susceptible to many diseases. On a large scale, these diseases are harmful to the plants and an early diagnosis can help in early prevention ensuring plant quality.<\/p><p>Today, we aim to develop a neural network model which helps in this diagnosis by determining the apple leaf disease simply by <em>\u201clooking at it\u201d.<\/em><\/p><p>With the help of this model, our objective is to classify the apple leaf disease into one of three categories, that are:<br \/>1. Apple Black Rot<br \/>2. Apple Cedar Rust<br \/>3. Apple Scab<\/p><p><!-- Start of Embedded Video Section --><\/p><center><br \/><iframe title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/aLSpv3ViDBg\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/center><p><br \/><!-- End of Embedded Video Section --><\/p><p>For apple scab, leaf spots are round, olive-green in colour, and up to 0.5-inch across. These spots are velvet-like with fringed borders. Black rot is often recognized with symptoms such as purple spots on upper leaf surfaces.<\/p><p>As the spots age, the centers dry out and turn yellow to brown. Cedar rust is a fungal disease. Spores overwinter as a reddish-brown gall on young twigs. Sometimes, orange spots may develop on the fruit as well.<\/p><p>Firstly, we need a dataset on which we can train and prepare our model. The dataset can be accessed by the following <a href=\"https:\/\/www.kaggle.com\/mhantor\/apple-leaf-diseases\" target=\"_blank\" rel=\"noopener\">link<\/a>. Now that we have our dataset. The next thing we need is access to a platform that lets us train our DNN model. In order to do so, we can use the <a href=\"https:\/\/cainvas.ai-tech.systems\/dashboard\/\" target=\"_blank\" rel=\"noopener\">AITS Cainvas Platform<\/a>. This gives us access to highly efficient GPUs and we can prepare our jupyter notebooks easily.<\/p><p><script src=\"https:\/\/gist.github.com\/029761fa50d25987e3bebc94df3cbc15.js\"><\/script><\/p><p>\u00a0<\/p><p><script src=\"https:\/\/gist.github.com\/5dbff0e569629f4a767e99076d95e3ae.js\"><\/script><\/p><p>After importing all the libraries, we will create a \u2018train_path\u2019 variable that will access the directory containing the image files.<\/p><p>Since our data is not separated into training and validation images, we can either create new directories and split the data into training and validation folders or we can make do with this directory and create a validation split while pre-processing the data. We choose to proceed with the latter since it is more convenient.<\/p><p>Let us proceed with displaying some images in our notebook just to visualize the data we\u2019re dealing with. We\u2019ll display 6 images from each directory (each disease type) in different cells of our jupyter notebook.<\/p><figure><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn-images-1.medium.com\/max\/600\/1*zzwnjnbnD6yrla2RtRMNyw.png\" alt=\"Apple Black Rot Images\" width=\"357\" height=\"371\" data-width=\"413\" data-height=\"429\" \/><\/figure><p>\u00a0<\/p><figure><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn-images-1.medium.com\/max\/600\/1*BZyiyBBRScg-k0QodBDsvA.png\" alt=\"Apple Cedar Rust Images\" width=\"378\" height=\"389\" data-width=\"415\" data-height=\"427\" \/><\/figure><p>\u00a0<\/p><figure><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn-images-1.medium.com\/max\/800\/1*-S7izk4zg8BKp2fFP1lpsA.png\" alt=\"Apple Scab\" width=\"385\" height=\"395\" data-width=\"415\" data-height=\"426\" \/><\/figure><p>\u00a0<\/p><p>Now that we know what kind of data we\u2019re dealing with. Let us start with pre-processing our data. Since our images are less in number, we define training and validation image data generators to expand our dataset of training and validation images.<\/p><p>This is done by artificially generating new images by processing the existing images. By random flipping, rotating, scaling, and performing similar operations, we can create new images.<\/p><p>This creation is done with the help of ImageDataGenerator() function from the keras library. This pre-processing function is extremely helpful in dealing with image data. Next, we load our training and validation data through these image data generators and set an image input size of 64*64.<\/p><p><script src=\"https:\/\/gist.github.com\/1571276756658f1eab25217d2db91612.js\"><\/script><\/p><p><script src=\"https:\/\/gist.github.com\/760023c0ccd8a66ede4497c41df1fe8a.js\"><\/script><\/p><p>Since we do not have separate directories for training and validation data, we have added a validation split of 20% in the train image generator. This is done with the help of <em>validation_split<\/em> feature of Image Data Generator.<\/p><p>After defining the generators, we need to load our images to these functions and prepare them for further processing in the model.<\/p><figure class=\"wp-caption aligncenter\"><figure style=\"width: 428px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdn-images-1.medium.com\/max\/800\/1*7ZGqUqJhBtQYA9wSswxCzw.png\" alt=\"Model Architecture\" width=\"428\" height=\"428\" data-width=\"428\" data-height=\"428\" \/><figcaption class=\"wp-caption-text\">Model Architecture<\/figcaption><\/figure><\/figure><p>Now that we have our images which have been pre-processed and are ready to be read by our Neural Network Model, we define the architecture for it. We define a Sequential model with the following layers having about 235k trainable parameters.<\/p><p>For our model, every 2-dimensional convolution layer having a filter size of 2*2 is followed by a Max Pooling 2 Dimensional layer which has a similar filter size.<\/p><p>Now, we begin training our model. In the beginning, we defined a batch size of 20 for the images. We use this parameter for defining steps per epoch and validation steps.<\/p><p><script src=\"https:\/\/gist.github.com\/de62a58e57d493d8a0ceb37e8939f317.js\"><\/script><\/p><figure><img decoding=\"async\" class=\"aligncenter\" src=\"https:\/\/cdn-images-1.medium.com\/max\/800\/1*DERa5T7SZsTYU1wJGX0X3w.png\" alt=\"Accuracy and Loss values\" width=\"338\" height=\"480\" data-width=\"338\" data-height=\"480\" \/><\/figure><p>\u00a0<\/p><p>Training for 70 epochs ( or 70 iterations ) and with a learning rate of 0.001, we achieve a maximum training accuracy of about 98% and a maximum validation accuracy of about 97%. These values seem very promising. Next, let us visualize the training process of the model by monitoring the accuracy and loss values with respect to the number of epochs.<\/p><p>Using the model.evaluate() function, we evaluate the accuracy of our model solely on validation images. This metric confirms our earlier hypothesis and gives a validation accuracy of over 95%.<br \/>Lastly, we will predict on a random image from the apple scab directory.<\/p><p>When we select any random image using random.choice() and predict the disease, we observe that our model successfully predicts the right disease and thus ensures that our model is a success.<\/p><figure class=\"wp-caption aligncenter\"><figure style=\"width: 208px\" class=\"wp-caption aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdn-images-1.medium.com\/max\/800\/1*CQ5HYAzGg2c5vgib89p6Yw.png\" alt=\"Model Prediction\" width=\"208\" height=\"235\" data-width=\"208\" data-height=\"235\" \/><figcaption class=\"wp-caption-text\">Model Prediction<\/figcaption><\/figure><\/figure><p>Using our <a href=\"https:\/\/www.ai-tech.systems\/https:\/\/en.wikipedia.org\/wiki\/Machine_learning\">Embedded ML<\/a> knowledge, we have successfully developed a model which can predict the disease on apple leaves with great accuracy and thus, helping in an early diagnosis and an early precaution might help in curing the disease and improving crop yield.<\/p><p>If you want to access the entire notebook, follow this <a href=\"https:\/\/cainvas.ai-tech.systems\/use-cases\/apple-leaf-infection-detection-app\/\" target=\"_blank\" rel=\"noopener\">link<\/a>.<\/p><p>Best of luck with your Machine Learning careers.<br \/>Cheers!<\/p><p>Notebook Link: <a href=\"https:\/\/cainvas.ai-tech.systems\/use-cases\/apple-leaf-infection-detection-app\/\" target=\"_blank\" rel=\"noopener\">Click Here<\/a><\/p><p>Credits: <a href=\"https:\/\/medium.com\/u\/35fe36ce6210\" target=\"_blank\" rel=\"noopener\">Kkharbanda<\/a><\/p><p style=\"position: absolute; left: -14158px;\"><a href=\"https:\/\/www.fakewatches.is\/\">fakewatches.is<\/a><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-ee935ad elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"ee935ad\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9020acf\" data-id=\"9020acf\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-ca334d6 psotspac elementor-widget elementor-widget-text-editor\" data-id=\"ca334d6\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>You may also be interested in \u00b7<\/p><ul><li>Learning more about <a class=\"waffle-rich-text-link\" href=\"https:\/\/www.ai-tech.systems\/fingerprint-pattern-classification-using-deep-learning\/\">Fingerprint pattern classification using Deep Learning<\/a>\u00a0<\/li><li>Reading about <a class=\"waffle-rich-text-link\" href=\"https:\/\/www.ai-tech.systems\/mushroom-classification-using-deep-learning\/\">Mushroom Classification Using Deep Learning<\/a>\u00a0<\/li><li>Finding out about <a class=\"waffle-rich-text-link\" href=\"https:\/\/en.wikipedia.org\/wiki\/Deep_learning\">Deep Learning<\/a>, the technology enabling machines to interpret complex data and mimic human cognition<\/li><\/ul><p>Become a Contributor: <a class=\"waffle-rich-text-link\" href=\"https:\/\/www.ai-tech.systems\/write-for-aits-publication\/\">Write for AITS Publication<\/a> Today! We\u2019ll be happy to publish your latest article on data science, artificial intelligence, machine learning, deep learning, and other technology topics<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Photo by Cvijovic Zarko on\u00a0Dribbble Like every other plant, apple leaves are susceptible to many diseases. On a large scale, these diseases are harmful to the plants and an early diagnosis can help in early prevention ensuring plant quality. Today, we aim to develop a neural network model which helps in this diagnosis by determining &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\"> <span class=\"screen-reader-text\">Detecting Apple Leaf Infection<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":11779,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"elementor_header_footer","format":"standard","meta":{"_mi_skip_tracking":false,"site-sidebar-layout":"default","site-content-layout":"default","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":""},"categories":[1],"tags":[56,13,14,12],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.10 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Detecting Apple Leaf Infection<\/title>\n<meta name=\"description\" content=\"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Detecting Apple Leaf Infection\" \/>\n<meta property=\"og:description\" content=\"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\" \/>\n<meta property=\"og:site_name\" content=\"AI Technology &amp; Systems\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aitechsystems\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-20T00:24:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-15T07:56:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/12\/Detecting-Apple-Leaf-Infection.gif\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/gif\" \/>\n<meta name=\"author\" content=\"user\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AITechSystems\" \/>\n<meta name=\"twitter:site\" content=\"@AITechSystems\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"user\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\"},\"author\":{\"name\":\"user\",\"@id\":\"https:\/\/www.ai-tech.systems\/#\/schema\/person\/246809287e426d89aaa196c865e96f0b\"},\"headline\":\"Detecting Apple Leaf Infection\",\"datePublished\":\"2022-11-20T00:24:04+00:00\",\"dateModified\":\"2024-04-15T07:56:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\"},\"wordCount\":975,\"publisher\":{\"@id\":\"https:\/\/www.ai-tech.systems\/#organization\"},\"keywords\":[\"Detecting Apple Leaf Infection\",\"embeddedML\",\"Microcontroller Machine Learning\",\"tinyML\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\",\"url\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\",\"name\":\"Detecting Apple Leaf Infection\",\"isPartOf\":{\"@id\":\"https:\/\/www.ai-tech.systems\/#website\"},\"datePublished\":\"2022-11-20T00:24:04+00:00\",\"dateModified\":\"2024-04-15T07:56:18+00:00\",\"description\":\"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ai-tech.systems\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Detecting Apple Leaf Infection\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ai-tech.systems\/#website\",\"url\":\"https:\/\/www.ai-tech.systems\/\",\"name\":\"AI Technology &amp; Systems\",\"description\":\"on-device tinyML and AI solutions for microcontrollers and PIC\",\"publisher\":{\"@id\":\"https:\/\/www.ai-tech.systems\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ai-tech.systems\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.ai-tech.systems\/#organization\",\"name\":\"AI Technology & Systems\",\"url\":\"https:\/\/www.ai-tech.systems\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ai-tech.systems\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/01\/cropped-cropped-AITS-.png\",\"contentUrl\":\"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/01\/cropped-cropped-AITS-.png\",\"width\":846,\"height\":683,\"caption\":\"AI Technology & Systems\"},\"image\":{\"@id\":\"https:\/\/www.ai-tech.systems\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.instagram.com\/aitechsystems\/\",\"https:\/\/www.linkedin.com\/company\/aitechsystems\/\",\"https:\/\/www.youtube.com\/channel\/UCJglRvwhM4e3-2slK51yOaA\",\"https:\/\/www.facebook.com\/aitechsystems\",\"https:\/\/twitter.com\/AITechSystems\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.ai-tech.systems\/#\/schema\/person\/246809287e426d89aaa196c865e96f0b\",\"name\":\"user\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ai-tech.systems\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/97905c4bfc1106d4e811d9aabdf42862?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/97905c4bfc1106d4e811d9aabdf42862?s=96&d=mm&r=g\",\"caption\":\"user\"},\"sameAs\":[\"http:\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Detecting Apple Leaf Infection","description":"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/","og_locale":"en_US","og_type":"article","og_title":"Detecting Apple Leaf Infection","og_description":"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.","og_url":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/","og_site_name":"AI Technology &amp; Systems","article_publisher":"https:\/\/www.facebook.com\/aitechsystems","article_published_time":"2022-11-20T00:24:04+00:00","article_modified_time":"2024-04-15T07:56:18+00:00","og_image":[{"width":800,"height":600,"url":"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/12\/Detecting-Apple-Leaf-Infection.gif","type":"image\/gif"}],"author":"user","twitter_card":"summary_large_image","twitter_creator":"@AITechSystems","twitter_site":"@AITechSystems","twitter_misc":{"Written by":"user","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#article","isPartOf":{"@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/"},"author":{"name":"user","@id":"https:\/\/www.ai-tech.systems\/#\/schema\/person\/246809287e426d89aaa196c865e96f0b"},"headline":"Detecting Apple Leaf Infection","datePublished":"2022-11-20T00:24:04+00:00","dateModified":"2024-04-15T07:56:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/"},"wordCount":975,"publisher":{"@id":"https:\/\/www.ai-tech.systems\/#organization"},"keywords":["Detecting Apple Leaf Infection","embeddedML","Microcontroller Machine Learning","tinyML"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/","url":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/","name":"Detecting Apple Leaf Infection","isPartOf":{"@id":"https:\/\/www.ai-tech.systems\/#website"},"datePublished":"2022-11-20T00:24:04+00:00","dateModified":"2024-04-15T07:56:18+00:00","description":"Detecting Apple Leaf Infection - Like every other plant, apple leaves are susceptible to many diseases. On a large scale.","breadcrumb":{"@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ai-tech.systems\/detecting-apple-leaf-infection\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ai-tech.systems\/"},{"@type":"ListItem","position":2,"name":"Detecting Apple Leaf Infection"}]},{"@type":"WebSite","@id":"https:\/\/www.ai-tech.systems\/#website","url":"https:\/\/www.ai-tech.systems\/","name":"AI Technology &amp; Systems","description":"on-device tinyML and AI solutions for microcontrollers and PIC","publisher":{"@id":"https:\/\/www.ai-tech.systems\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ai-tech.systems\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.ai-tech.systems\/#organization","name":"AI Technology & Systems","url":"https:\/\/www.ai-tech.systems\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ai-tech.systems\/#\/schema\/logo\/image\/","url":"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/01\/cropped-cropped-AITS-.png","contentUrl":"https:\/\/www.ai-tech.systems\/wp-content\/uploads\/2021\/01\/cropped-cropped-AITS-.png","width":846,"height":683,"caption":"AI Technology & Systems"},"image":{"@id":"https:\/\/www.ai-tech.systems\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.instagram.com\/aitechsystems\/","https:\/\/www.linkedin.com\/company\/aitechsystems\/","https:\/\/www.youtube.com\/channel\/UCJglRvwhM4e3-2slK51yOaA","https:\/\/www.facebook.com\/aitechsystems","https:\/\/twitter.com\/AITechSystems"]},{"@type":"Person","@id":"https:\/\/www.ai-tech.systems\/#\/schema\/person\/246809287e426d89aaa196c865e96f0b","name":"user","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ai-tech.systems\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/97905c4bfc1106d4e811d9aabdf42862?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/97905c4bfc1106d4e811d9aabdf42862?s=96&d=mm&r=g","caption":"user"},"sameAs":["http:"]}]}},"_links":{"self":[{"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/posts\/103"}],"collection":[{"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/comments?post=103"}],"version-history":[{"count":15,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/posts\/103\/revisions"}],"predecessor-version":[{"id":14450,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/posts\/103\/revisions\/14450"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/media\/11779"}],"wp:attachment":[{"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/media?parent=103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/categories?post=103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ai-tech.systems\/wp-json\/wp\/v2\/tags?post=103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}