<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>“You are part of a research team tasked with creating an ML system to detect plant diseases from leaf images. How would you design the pipeline?” by Ms Mahak</title>
      <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng</link>
      <description>To apply knowledge of Training Data, Concept Representation, and Function Approximation by building a simplified ML pipeline:- 1. Training Data: What kind of plant images are needed? 2. Concept Representation: How should the image features be captured? 3. Function Approximation: Which model could be used? Prediction: What is the expected output? </description>
      <language>en-us</language>
      <pubDate>2025-08-17 05:23:19 UTC</pubDate>
      <lastBuildDate>2025-09-14 05:34:57 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/1f4ac.png</url>
      </image>
      <item>
         <title></title>
         <author>deep555554</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609061</link>
         <description><![CDATA[<p>Input: Leaf image</p><p><br/></p><p>Preprocessing: Resize, normalize, augment</p><p><br/></p><p>Feature Extraction: CNN layers automatically capture texture, shape, color patterns</p><p><br/></p><p>Classification Model: CNN/Transfer Learning (ResNet, VGG, MobileNet)</p><p><br/></p><p>Output: Plant disease type (or Healthy) with probability</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:46:21 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609061</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609067</link>
         <description><![CDATA[<p>ML system for detecting plant diseases from leaf images, we first need a <strong>training dataset</strong> of leaf images labeled as healthy or with specific diseases, captured under different lighting, angles, and conditions. Next, for <strong>concept representation</strong>, the system should use preprocessing (resizing, normalization, augmentation) and a Convolutional Neural Network (CNN) to automatically learn important features like color changes, spots, or textures. For <strong>function approximation</strong>, a CNN-based model (often with transfer learning from pre-trained networks like ResNet or MobileNet) can be trained to classify diseases. Finally, the <strong>prediction output</strong> will be the disease type (or healthy) with a confidence score, helping in accurate and automated plant health diagnosis.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:46:24 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609067</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609080</link>
         <description><![CDATA[<p><br/></p><p><strong>1) Training Data — What images are needed?</strong></p><p><br/></p><p><br/></p><ul><li><p>Scope: Multiple crops (e.g., tomato, potato, wheat, rice) × multiple diseases (incl. healthy) × growth stages × backgrounds (field, lab) × lighting/weather.</p></li><li><p>Image quality: Smartphone-level, varied resolutions; different angles; close-ups and whole-leaf shots; both adaxial and abaxial surfaces; include confounders (dust, pest damage, nutrient deficiencies, sun scorch).</p></li><li><p>Labels (ground truth):<br></p><ul><li><p>Primary: {crop, disease class, healthy}.</p></li><li><p>Optional: severity (ordinal: none/mild/moderate/severe or % leaf area), symptom region masks/boxes (for explainability), collection metadata (GPS, date, device, growth stage).</p></li><li><p>Label source: agronomist/plant pathologist review; double-blind on a subset; adjudication for disagreements.</p></li></ul></li><li><p><br/></p></li><li><p>Sampling &amp; splits: Stratified train/val/test by farm &amp; season (to avoid leakage). Keep a hold-out “unseen region” test to check generalization.</p></li><li><p>Balance &amp; augmentation: Address class imbalance via targeted collection + augmentations (random crop/flip, small rotations, brightness/contrast, color jitter, CutMix/MixUp). Keep realistic—don’t over-distort disease color/texture cues.</p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><strong>2) Concept Representation — How to capture features?</strong></p><p><br/></p><p><br/></p><ul><li><p>Preprocessing pipeline:<br></p><ul><li><p>Resize to model input (e.g., 384×384), normalize per Imagenet stats.</p></li><li><p>Optional leaf segmentation (U-Net/DeepLab or simple color thresholding) to suppress background noise.</p></li><li><p>Convert color spaces alongside RGB features (HSV/Lab) if using classical features or to support color-aware augmentations.</p></li></ul></li><li><p><br/></p></li><li><p>Feature strategies:<br></p><ul><li><p>Modern (preferred): Let a CNN/Vision Transformer learn features directly from pixels (texture, color mottling, vein patterns, lesion shape).</p></li><li><p>Classical (fallback/ablation): Hand-crafted: color histograms, GLCM texture, LBP, vein morphology; feed to SVM/Random Forest (useful for low-data baselines).</p></li></ul></li><li><p><br/></p></li><li><p>Pretraining &amp; self-supervision:<br></p><ul><li><p>Start from ImageNet-pretrained backbones; optionally do domain pretraining via self-supervised learning (SimCLR/DINO/MoCo) on large unlabeled farm photos to learn crop-specific textures.</p></li></ul></li><li><p><br/></p></li><li><p>Explainability hooks: Keep intermediate feature maps and add Grad-CAM / Score-CAM; if you trained a segmentation head, those masks serve as human-interpretable evidence.</p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><strong>3) Function Approximation — Which model?</strong></p><p><br/></p><p><br/></p><ul><li><p>Classifier (multi-class, optionally hierarchical):<br></p><ul><li><p>Backbones: EfficientNet-V2 / ConvNeXt / ResNet50 (mobile-friendly: MobileNetV3 / EfficientNet-Lite). For larger setups: ViT-Base or Swin-T.</p></li><li><p>Head: global average pooling → dropout → dense layer for K classes.</p></li><li><p>Loss: cross-entropy (+ focal loss if class imbalance). If modeling severity ordinally, add a parallel ordinal regression head (e.g., CORN) or regression with Huber loss.</p></li></ul></li><li><p><br/></p></li><li><p>Multi-task option (recommended): Shared encoder with<br></p><ul><li><p>Disease classification head,</p></li><li><p>Severity head,</p></li><li><p>Optional segmentation head (DeepLabv3+) for lesion localization.</p></li></ul></li><li><p><br/></p></li><li><p>Training details:<br></p><ul><li><p>Optimizer: AdamW with cosine decay; mix precision; early stopping on macro-F1 (handles imbalance).</p></li><li><p>Regularization: RandAugment, MixUp/CutMix, label smoothing.</p></li><li><p>Calibration: temperature scaling or focal-tuning for reliable probabilities.</p></li></ul></li><li><p><br/></p></li><li><p>Metrics:<br></p><ul><li><p>Macro-F1 / per-class F1 (primary), overall accuracy (secondary), AUROC (open-set behavior via max-prob), MAE for severity, mIoU for segmentation.</p></li><li><p>Robustness checks: performance by device, lighting, crop stage, region; OOD test (nutrient deficiency vs fungal lesion).</p></li></ul></li><li><p><br/></p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><strong>Prediction — What’s the expected output?</strong></p><p><br/></p><p><br/></p><p>For each input image:</p><p><br/></p><ul><li><p>Top prediction: {crop, disease_label, confidence}</p></li><li><p>Class probabilities: vector over all disease classes (calibrated)</p></li><li><p>(Optional) Severity: none/mild/moderate/severe or % leaf area affected</p></li><li><p>(Optional) Lesion map: heatmap or binary mask for explainability</p></li><li><p>User-facing recommendation (rules/lookup): short guidance like “Likely Early Blight (0.87). Severity: moderate. Consider removing infected leaves; apply fungicide group X; avoid overhead irrigation.” (This recommendation layer is separate from the model, driven by agronomist-curated rules.)</p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><strong>Minimal deployable pipeline (summary)</strong></p><p><br/></p><p><br/></p><ol><li><p>Data ops: Collect &amp; label diverse leaf images → QC → stratified splits.</p></li><li><p>Preprocess: Resize/normalize; optional segmentation; balanced augmentations.</p></li><li><p>Model: ImageNet-pretrained EfficientNet-V2-S multi-task (disease + severity).</p></li><li><p>Train/validate: Macro-F1 early stopping; class-balanced sampling; calibration.</p></li><li><p>Export: Quantize/prune for edge (TFLite/Core ML/ONNX).</p></li><li><p>App layer: On-device inference; show prediction + heatmap + care tips; offline fallback.</p></li><li><p>Monitoring: Collect user feedback, drift detection, scheduled re-training with fresh seasons/regions.</p></li></ol><p><br/></p><p><br/></p><p>This covers the four pieces you asked for—data, representation, function approximation, and the exact form of the prediction—while being practical for a field-usable system.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:46:27 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609080</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609446</link>
         <description><![CDATA[<p><br/></p><p><br/></p><p>In Machine Learning (ML), we need examples to teach the model</p><p><br/></p><p>These examples are called Training Data</p><p><br/></p><p>Training data usually contains inputs (the features) and sometimes the correct outputs (labels</p><p><br/></p><p>Suppose we want to train a model to recognize whether a photo shows a cat or a dog:</p><p><br/></p><p>Input → the image</p><p><br/></p><p>Output (label) → “Cat” or “Dog”</p><p><br/></p><p>The model learns from many such examples. The more diverse and accurate the training data, the better the model’s performance.</p><p> Types of Training Data</p><p><br/></p><p>Labeled Data Input  correct output provided</p><p> An image labeled as “Cat”</p><p><br/></p><p>Unlabeled Data  Only input provided, no output</p><p><br/></p><p>Example: Just images without tag</p><p><br/></p><p>The quality of training data directly affects the accuracy of the model.</p><p><br/></p><p>If the data is incorrect, incomplete, or biased, the model will also learn wrongly</p><p>Do you want me to also explain how</p><p> training data is collected and prepared in real projects?</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:48:18 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609446</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609475</link>
         <description><![CDATA[<p>You need a big pile of photos—some of healthy leaves and others of sick leaves for every possible disease. You have to label each photo so the computer knows what it's looking at, like sorting them into different boxes.</p><p>The computer then goes through all these photos over and over. It starts to figure out the patterns on its own, learning what a sick leaf looks like compared to a healthy one. We don't build its brain from scratch; we use one that's already good with images and just teach it specifically about plant diseases.</p><p>After it learns, you can just show it a new leaf photo. It will check the photo and tell you if the leaf is healthy or what disease it might have.</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:48:29 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609475</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609593</link>
         <description><![CDATA[<p><br/></p><p><strong>1. Training Data</strong></p><p><br/></p><p><br/></p><ul><li><p>Type of Data Needed:<br></p><ul><li><p>High-quality leaf images of plants.</p></li><li><p>Both healthy and diseased leaves.</p></li><li><p>Multiple plant species (e.g., tomato, potato, rice, wheat).</p></li><li><p>Different lighting conditions, backgrounds, and angles to make the model robust.</p></li></ul></li><li><p><br/></p></li><li><p>Labels: Each image must be labeled with the correct class (e.g., Healthy, Tomato – Early Blight, Potato – Late Blight, etc.).</p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><strong>2. Concept Representation</strong></p><p><br/></p><p><br/></p><ul><li><p>Image Features to Capture:<br></p><ul><li><p>Color patterns (e.g., yellowing, spots, discoloration).</p></li><li><p>Texture features (e.g., rough, dry, patchy areas).</p></li><li><p>Shape information (e.g., deformations or holes in the leaf).</p></li></ul></li><li><p><br/></p></li><li><p>In practice:<br></p><ul><li><p>Use raw pixels (via convolutional neural networks) rather than hand-crafted features, because CNNs learn hierarchical patterns automatically.</p></li><li><p>Alternatively, use feature extraction methods like SIFT, HOG, or color histograms if using classical ML.</p></li></ul></li><li><p><br/></p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><strong>3. Function Approximation</strong></p><p><br/></p><p><br/></p><ul><li><p>Model Choices:<br></p><ul><li><p>Deep Learning (preferred): Convolutional Neural Networks (CNNs) for image classification. Pretrained models like ResNet, VGG, MobileNet (fine-tuned).</p></li><li><p>Classical ML (simplified case): SVM, Random Forest, or k-NN trained on extracted features (color, texture).</p></li></ul></li><li><p><br/></p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><strong>4. Prediction (Expected Output)</strong></p><p><br/></p><p><br/></p><ul><li><p>The system should output the predicted class of the leaf:<br></p><ul><li><p>Example: "Healthy" or "Tomato – Early Blight".</p></li></ul></li><li><p><br/></p></li><li><p>Optionally, also provide:<br></p><ul><li><p>Confidence score (e.g., 92% probability diseased).</p></li><li><p>Recommendation (e.g., “Possible fungal infection, apply treatment X”).</p></li></ul></li><li><p><br/></p></li></ul><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>✅ Final Simplified Pipeline:</p><p><br/></p><ol><li><p>Collect &amp; label diverse leaf images (training data).</p></li><li><p>Extract image patterns via CNN or feature descriptors (concept representation).</p></li><li><p>Train a model (CNN / SVM) to map features → disease class (function approximation).</p></li><li><p>Output predicted disease label + confidence (prediction).</p></li></ol><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:49:06 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609593</guid>
      </item>
      <item>
         <title></title>
         <author>rimiemail6</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609920</link>
         <description><![CDATA[<p><strong>        1. Training Data</strong></p><ul><li><p>Collect clear images of <strong>healthy and diseased leaves</strong> across crops.</p><p><br/></p><p><strong>2. Concept Representation</strong></p><ul><li><p>Use <strong>image features</strong> like color, texture, and shape.</p><p><br/></p><p>3. Function Approximation</p></li><li><p>Apply data augmentation to improve robustness.</p><p><strong>4. Prediction (Output)</strong></p><ul><li><p>The system outputs the <strong>disease label</strong> (e.g., “Leaf Blight”) with <strong>confidence scores</strong>.</p></li></ul></li></ul></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-24 05:50:44 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3552609920</guid>
      </item>
      <item>
         <title></title>
         <author>triptichauhan240</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3553516822</link>
         <description><![CDATA[<p>1. Data Collection → Healthy + Diseased leaf images.</p><p><br/></p><p><br/></p><p>2. Preprocessing &amp; Feature Extraction → Resize, normalize, CNN feature maps.</p><p><br/></p><p><br/></p><p>3. Model Training → CNN (or ML classifier).</p><p><br/></p><p><br/></p><p>4. Prediction → Disease type + confidence.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-25 06:36:53 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3553516822</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554954186</link>
         <description><![CDATA[<p>We’d collect diverse, labeled leaf images (healthy/diseased, multiple crops). Features are captured via CNNs to extract texture, color, and shape patterns. A deep learning model (e.g., ResNet) approximates the function mapping images to disease classes. Prediction outputs the disease type or “healthy,” enabling early, automated plant diagnosis.</p><p>By akhand Jyoti Raj </p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 04:58:51 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554954186</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554954809</link>
         <description><![CDATA[<p>Training Data → Healthy &amp; diseased leaf images.</p><p><br/></p><p>Concept Representation → Preprocessing + CNN features.</p><p><br/></p><p>Function Approximation → CNN (ResNet/VGG/MobileNet).</p><p><br/></p><p>Prediction → Disease class (or Healthy).</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 04:59:20 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554954809</guid>
      </item>
      <item>
         <title></title>
         <author>shivamsingh07081</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554955973</link>
         <description><![CDATA[<p>The pipeline uses training data of healthy and diseased leaf images across plant types. Concept representation involves extracting features like color, texture, and shape, or using CNN embeddings. A convolutional neural network approximates the function. The prediction output is the specific disease label or healthy status.</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:00:08 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554955973</guid>
      </item>
      <item>
         <title></title>
         <author>kritesh2432</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554958460</link>
         <description><![CDATA[<p>1. Collect Data – Leaf images (diverse, labeled by experts).</p><p>2. Preprocess – Resize, normalize, clean, augment (rotation, brightness, flip).</p><p>3. Model – Use CNN (ResNet/MobileNet with transfer learning).</p><p>4. Train &amp; Validate – Split dataset, handle imbalance, tune hyperparameters.</p><p>5. Evaluate – Accuracy, precision, recall, F1, confusion matrix.</p><p>6. Deploy – Mobile app (lightweight model) or cloud API.</p><p>7. Feedback Loop – Collect errors,</p><p> retrain, improve.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:01:51 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554958460</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554958506</link>
         <description><![CDATA[<p>Images of health vs unhealthy or diseased leafs or plants in training data  </p><p>Images must be in high quality with correct colour and good image processing with CNN</p><p>And can use deep learning model </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:01:53 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554958506</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554959594</link>
         <description><![CDATA[<p>We will look into the image of the leaf.</p><p>We will see features like color, veins, and other features.</p><p><br/></p><p>Here Deep Learning Concept will be used. CNN model will be used to process the details of the leaf. The model uses a sigmoid function and give output in the form of disease and disease free leaf. </p><p><br/></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:02:38 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554959594</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554959884</link>
         <description><![CDATA[<p>We’ll collect images of healthy and diseased leaves, use CNNs to pick up patterns, train a model on them, and then the system will tell if a leaf is healthy or which disease it has.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:02:52 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554959884</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960023</link>
         <description><![CDATA[<p><strong>Designing an ML Pipeline for Plant Disease Detection</strong></p><p><strong>1. Training Data: What kind of plant images are needed?</strong></p><ul><li><p><strong>Diverse and Representative:</strong> Images of various plant species, with healthy and diseased leaves, across different stages of disease progression, and under varying environmental conditions (lighting, background, etc.) are crucial for robust model performance.</p></li><li><p><strong>Annotated:</strong> Images must be accurately labeled with the plant species, disease type (if any), and severity to provide ground truth for training. This often involves expert botanical or agricultural knowledge.</p></li></ul><p><strong>2. Concept Representation: How should the image features be captured?</strong></p><ul><li><p><strong>Feature Engineering:</strong> Traditional methods involve hand-crafting features like color histograms, texture descriptors (e.g., Haralick features), and shape features (e.g., leaf vein patterns).</p></li><li><p><strong>Deep Learning (Feature Learning):</strong> Convolutional Neural Networks (CNNs) can automatically learn hierarchical features directly from raw image data, eliminating the need for manual feature extraction and often leading to superior performance.</p></li></ul><p><strong>3. Function Approximation: Which model could be used?</strong></p><ul><li><p><strong>Traditional Machine Learning Models:</strong> For engineered features, models like Support Vector Machines (SVMs), Random Forests, or Gradient Boosting Machines can be employed for classification.</p></li><li><p><strong>Deep Learning Models:</strong> For learned features, CNN architectures such as ResNet, VGG, Inception, or MobileNet are commonly used due to their ability to capture complex patterns in image data. Transfer learning from pre-trained models can also be leveraged.</p></li></ul><p><strong>Prediction: What is the expected output?</strong></p><ul><li><p>The expected output is a classification of the input leaf image, indicating:</p><ul><li><p><strong>Plant Species Identification:</strong> If the system is designed to identify different plant types.</p></li><li><p><strong>Disease Presence/Absence:</strong> A binary classification indicating whether a disease is present.</p></li><li><p><strong>Disease Type:</strong> A multi-class classification identifying the specific disease (e.g., powdery mildew, rust, blight).</p></li><li><p><strong>Disease Severity:</strong> A regression or multi-class classification indicating the level of disease infection.</p></li></ul></li></ul>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:02:58 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960023</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960191</link>
         <description><![CDATA[<p>Collect leaf photos, let the model learn patterns, and it predicts the disease.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:03:04 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960191</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960226</link>
         <description><![CDATA[<p>Training Data →</p><p>Healthy &amp; diseased leaf images.</p><p><br/></p><p>Concept</p><p>Representation →</p><p>Preprocessing + CNN features.</p><p><br/></p><p>Function Approximation</p><p>→ CNN</p><p>(ResNet/VGG/MobileNe t).</p><p><br/></p><p>Prediction → Disease class (or Healthy).</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:03:05 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554960226</guid>
      </item>
      <item>
         <title></title>
         <author>anand23scse1280069</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554961114</link>
         <description><![CDATA[<p>Data collection (image of the plants)</p><p>Apply some preprocessing teq(identify  the problem and get with it)</p><p>Do some feature engineering </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:03:42 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554961114</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554961132</link>
         <description><![CDATA[<p>1. <strong>Training Data</strong></p><p>We need <strong>plant images</strong> that are:</p><ul><li><p>Clear pictures of <strong>different types of plants</strong> (e.g., rose, sunflower, tulip).</p></li><li><p>Labeled correctly (each image must have the plant’s name).</p></li><li><p>Taken from different angles, lighting, and backgrounds so the model learns well.</p></li></ul><p>👉 Example: A folder with 100 pictures of roses, 100 of sunflowers, 100 of tulips.</p><p>2. <strong>Concept Representation</strong></p><p>We need to <strong>turn images into numbers</strong> (features). This can be done by:</p><ul><li><p>Using <strong>pixels and colors</strong> of the image.</p></li><li><p>Or better: using <strong>feature extractors</strong> (like edges, shapes, or deep learning feature maps).</p></li></ul><p>👉 Example: Instead of saying "this is a rose," we say: <em>this image has red color, petal-like edges, green leaves</em>.</p><p>3. <strong>Function Approximation</strong></p><p>We need a <strong>model</strong> that learns the mapping from features → plant type. Some options:</p><ul><li><p><strong>Simple models</strong>: Decision Tree, k-Nearest Neighbor (KNN).</p></li><li><p><strong>Advanced model</strong>: Convolutional Neural Network (CNN) (works best for images).</p></li></ul><p>👉 Example: CNN learns automatically which shapes, colors, and textures belong to each plant.</p><p>4. <strong>Prediction (Output)</strong></p><p>When we show the model a <strong>new plant image</strong>, it will predict:</p><ul><li><p>The <strong>plant’s name</strong> (class label).</p></li><li><p>Sometimes also a <strong>probability</strong> (e.g., "80% rose, 15% sunflower, 5% tulip").</p></li></ul><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:03:43 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554961132</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554962579</link>
         <description><![CDATA[<p>We'd collect diverse, labeled leaf images (healthy/diseased, multiple crops). Features are captured via CNNs to extract texture, color, and shape patterns. A deep learning model (e.g., ResNet) approximates the function mapping images to disease classes. Prediction outputs the disease type or "healthy," enabling early, automated plant diagnosis.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:04:46 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554962579</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554962833</link>
         <description><![CDATA[<p>Training data</p><p>Healthy and unhealthy leaves from a variety of plants</p><p><br/></p><p>Concept representation</p><p>Color, texture, shape, pattern</p><p><br/></p><p>Function approximation</p><p>Model like deep learning, NN</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:04:56 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554962833</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963141</link>
         <description><![CDATA[<p>1. Training Data: We need a large set of clear leaf images, both healthy and diseased, covering different plants, lighting, and angles.</p><p><br/></p><p><br/></p><p>2. Concept Representation: Use image features like color, texture, and shape. In practice, CNNs (Convolutional Neural Networks) automatically learn these features from pixels.</p><p><br/></p><p><br/></p><p>3. Function Approximation: Train a CNN or transfer-learning model (like ResNet, VGG).</p><p><br/></p><p><br/></p><p>4. Prediction: The system outputs the class (e.g., “healthy,” “powdery mildew,” “leaf spot”) for a given leaf image.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:05:09 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963141</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963560</link>
         <description><![CDATA[<p>Training Data:</p><p>What kind of plant images are needed? You would need a large dataset of leaf images, including both healthy leaves and leaves exhibiting various plant diseases</p><p><strong>Concept Representation:</strong></p><p><strong>How should the image features be captured?</strong> Image features can be captured using techniques like</p><p><strong>Function Approximation:</strong></p><p><strong>Which model could be used?</strong> Several machine learning models can be used for classification CNN</p><p><strong>Prediction:</strong></p><p><strong>What is the expected output?</strong> The expected output of the ML system would be the classification of a given leaf image, indication </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:05:24 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963560</guid>
      </item>
      <item>
         <title></title>
         <author>mohitkumarbth05</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963892</link>
         <description><![CDATA[<p><br/></p><p><strong>ML pipeline for plant disease detection from leaf images</strong> step by step:</p><p><strong>1. Problem Understanding</strong></p><ul><li><p>Task: Image classification (healthy vs. diseased + type of disease).</p></li><li><p>Input: Leaf images (RGB or grayscale).</p></li><li><p>Output: Predicted disease class (e.g., healthy, bacterial spot, rust, blight, etc.).</p></li></ul><p><strong>2. Data Collection</strong></p><ul><li><p>Collect a large dataset of leaf images (e.g., PlantVillage dataset).</p></li><li><p>Ensure diversity: different lighting, angles, backgrounds.</p></li><li><p>Label images with correct disease categories.</p></li></ul><p><strong>3. Data Preprocessing</strong></p><ul><li><p><strong>Image resizing</strong> (e.g., 224×224 pixels for CNN models).</p></li><li><p><strong>Normalization</strong> (scale pixel values between 0–1).</p></li><li><p><strong>Data augmentation</strong>: rotation, flipping, zoom, contrast adjustment (helps generalization).</p></li><li><p><strong>Background removal</strong> (optional) to focus on leaf only.</p></li></ul><p><strong>4. Feature Extraction &amp; Model Selection</strong></p><p>Two main approaches:</p><p><strong>(a) Traditional ML:</strong></p><ul><li><p>Extract handcrafted features (e.g., color histograms, texture features like GLCM, shape).</p></li><li><p>Feed features into ML classifiers (SVM, Random Forest, k-NN).</p></li><li><p>Less accurate compared to deep learning.</p></li></ul><p><strong>(b) Deep Learning (Preferred):</strong></p><ul><li><p>Use <strong>Convolutional Neural Networks (CNNs)</strong> (e.g., ResNet, EfficientNet, VGG).</p></li><li><p>Optionally apply <strong>Transfer Learning</strong> with pre-trained models (ImageNet weights).</p></li><li><p>Fine-tune on plant disease dataset.</p></li></ul><p><strong>5. Training</strong></p><ul><li><p>Split dataset: train (70%), validation (15%), test (15%).</p></li><li><p>Use <strong>cross-entropy loss</strong> for classification.</p></li><li><p>Optimizer: Adam/SGD.</p></li><li><p>Regularization: Dropout, Early Stopping.</p></li></ul><p><strong>6. Evaluation</strong></p><ul><li><p>Metrics: Accuracy, Precision, Recall, F1-score, Confusion Matrix.</p></li><li><p>Check per-class performance (to ensure no disease type is underperforming).</p></li></ul><p><strong>7. Deployment</strong></p><ul><li><p>Export trained model.</p></li><li><p>Deploy as:</p><ul><li><p><strong>Mobile app</strong> (farmers take leaf photos → instant diagnosis).</p></li><li><p><strong>Web application</strong> (upload leaf image).</p></li></ul></li><li><p>Integrate with cloud (AWS, GCP, or on-device inference for low connectivity).</p></li></ul><p><strong>8. Maintenance</strong></p><ul><li><p>Continuously collect new disease images.</p></li><li><p>Retrain the model periodically for better accuracy.</p></li><li><p>Add explainability (e.g., Grad-CAM heatmaps to show diseased region).</p></li></ul><p>✅ <strong>Pipeline Summary</strong><br>Data Collection → Preprocessing → Model (CNN/Transfer Learning) → Training &amp; Validation → Evaluation → Deployment → Maintenance</p><p>Do you want me to also <strong>draw this as a pipeline diagram/flowchart</strong> so it’s easier to present in Padlet?</p><p>You said:</p><p>Ms Mahak + 19 1d  "You are part of a research team tasked with creating an ML system to detect plant diseases from leaf images. How would you design the pipeline?"  To apply knowledge of Training Data, Concept Representation, and Function Approximation by building a simplified ML pipeline:- 1. Training Data: What kind of plant images are needed? 2. Concept Representation: How should the image features be captured? 3. Function Approximation: Which model could be used? Prediction: What is the expected output?</p><p>ChatGPT said:</p><p>Great prompt! Here’s a crisp, Padlet-ready answer mapped to the four parts:</p><p><strong>1) Training Data — what images?</strong></p><ul><li><p><strong>Scope:</strong> Multiple crops and disease classes + a “healthy” class.</p></li><li><p><strong>Diversity:</strong> Different cultivars, growth stages, lighting, angles, devices; field + lab images.</p></li><li><p><strong>Quantity:</strong> ≥1k images/class if possible; balance classes or plan to rebalance.</p></li><li><p><strong>Labels:</strong> Expert-verified disease label (and optionally severity), image-level at minimum; leaf masks (optional) for better focus.</p></li><li><p><strong>Splits:</strong> Train/val/test with <strong>plant/field-level</strong> separation to avoid leakage.</p></li><li><p><strong>Augmentation:</strong> flips, rotations, random crop, brightness/contrast, slight blur; avoid transformations that alter disease color/texture meaning.</p></li></ul><p><strong>2) Concept Representation — how to capture features?</strong></p><ul><li><p><strong>Preferred (learned):</strong> Use raw <strong>RGB pixels</strong> → normalize/resize (e.g., 224×224) → CNN learns features (edges → textures → spots/lesions).</p></li><li><p><strong>Helpful preprocessing (optional):</strong></p><ul><li><p>Leaf <strong>segmentation</strong> or background removal to reduce noise.</p></li><li><p>Add <strong>HSV/Lab</strong> color conversion for color-sensitive diseases.</p></li></ul></li><li><p><strong>Classical (if deep learning is not feasible):</strong></p><ul><li><p><strong>Color:</strong> histograms, mean/variance in HSV/Lab.</p></li><li><p><strong>Texture:</strong> GLCM, LBP, Haralick features to capture mottling/lesions.</p></li><li><p><strong>Shape:</strong> lesion/leaf area, contour stats.</p></li></ul></li></ul><p><strong>3) Function Approximation — which model?</strong></p><ul><li><p><strong>Best-practice:</strong> <strong>Transfer learning</strong> with a lightweight CNN (e.g., <strong>EfficientNet-B0</strong>, <strong>ResNet-18/34</strong>, <strong>MobileNetV3</strong>).</p><ul><li><p>Replace final layer with disease classes; fine-tune with Adam/SGD, early stopping.</p></li><li><p>Handle imbalance via class weights or focal loss.</p></li></ul></li><li><p><strong>Resource-constrained:</strong> Train a small custom CNN; or extract classical features → <strong>SVM/Random Forest</strong>.</p></li><li><p><strong>On-device deployment:</strong> Quantize/prune (TensorFlow Lite / ONNX) for mobile inference.</p></li></ul><p><strong>Prediction — what’s the output?</strong></p><ul><li><p><strong>Primary:</strong> Disease <strong>class label</strong> (e.g., “Tomato leaf—early blight”) + <strong>confidence score</strong>.</p></li><li><p><strong>Optional enrichments:</strong></p><ul><li><p><strong>Top-k</strong> suggestions if confidence is low.</p></li><li><p><strong>Grad-CAM heatmap</strong> to highlight infected regions (explainability).</p></li><li><p><strong>Severity estimate</strong> (mild/moderate/severe) and <strong>action tips</strong> (scouting/management).</p></li></ul></li><li><p><strong>Evaluation (brief):</strong> Accuracy + per-class Precision/Recall/F1, confusion matrix; test on <strong>unseen fields/devices</strong> for robustness.</p></li></ul><p><strong>Mini Pipeline:</strong><br>Collect &amp; label diverse leaf images → preprocess (resize/normalize + augment; optional segmentation) → feature learning (CNN) or hand-crafted features → model (transfer-learned CNN or SVM/RF) → validate &amp; tune → predict label + confidence (optional heatmap/severity) → deploy (mobile/web) → continuously update with new data.</p><p>You said:</p><p>Give me a short word and short form</p><p>ChatGPT said:</p><p>Got it 👍 Here’s a <strong>short + simple version</strong> in keywords &amp; short form:</p><p><strong>ML Pipeline for Plant Disease Detection</strong></p><ol><li><p><strong>TD (Training Data):</strong> Leaf images (healthy + diseased, diverse, labeled).</p></li><li><p><strong>CR (Concept Representation):</strong> Extract features – CNN learns color, texture, shape.</p></li><li><p><strong>FA (Function Approximation):</strong> Use CNN / Transfer Learning (e.g., ResNet, MobileNet).</p></li><li><p><strong>Pred (Prediction):</strong> Output = Disease class + confidence (e.g., “Tomato – Blight, 92%”).</p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 05:05:40 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3554963892</guid>
      </item>
      <item>
         <title></title>
         <author>dayushkdubey</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045637</link>
         <description><![CDATA[<p><br/></p><ol><li><p>Training Data: Curate labeled images of healthy + multiple diseased leaves; varied lighting/backgrounds; split into train/val/test; augment (flip/rotate/brightness).</p></li><li><p>Concept Representation: Resize (e.g., 224×224), normalize; use CNN feature maps (or color/texture if classical ML).</p></li><li><p>Function Approximation: Fine-tune a pretrained CNN (ResNet/MobileNet); alternatively SVM/RF on handcrafted features.</p></li><li><p>Training &amp; Eval: Optimize with cross-entropy; early stop; report accuracy, precision/recall/F1, confusion matrix.</p></li><li><p>Prediction/Deployment: Input new leaf → model outputs disease class + confidence; add thresholding and simple explainability (Grad-CAM) for trus</p></li></ol><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:20 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045637</guid>
      </item>
      <item>
         <title></title>
         <author>saifizainul9990</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045932</link>
         <description><![CDATA[<p>Collect diverse, labeled plant leaf images (healthy and diseased).</p><p>and deep CNN-based embeddings. Apply function approximation with models like CNNs or transfer learning. Predict disease type or healthy status, enabling early detection and improved crop management</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:25 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045932</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045963</link>
         <description><![CDATA[<p>We will design the pipeline by-</p><ol><li><p>Training data </p></li><li><p>Concept representation </p></li><li><p>Function approximately </p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:26 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555045963</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046158</link>
         <description><![CDATA[<p>1. Training Data</p><p><br/></p><p>Collect a large dataset of leaf images from multiple plant species.</p><p><br/></p><p>Each image should be labeled (e.g., healthy, disease type A, disease type B).</p><p><br/></p><p>Ensure diversity in lighting, angle, background, and leaf conditions to make the model robust.</p><p><br/></p><p>2. Concept Representation</p><p><br/></p><p>Use image preprocessing (resize, normalize, augment with flips/rotations).</p><p><br/></p><p>Represent features with pixels (raw images) or use deep feature extraction via convolutional layers.</p><p><br/></p><p>Focus on color patterns, texture, and spots that indicate disease.</p><p><br/></p><p>3. Function Approximation</p><p><br/></p><p>Apply a Convolutional Neural Network (CNN) for classification, since CNNs are well-suited for image data.</p><p><br/></p><p>Alternatively, start simple with transfer learning using pretrained models (ResNet, VGG, MobileNet).</p><p><br/></p><p>Prediction (Output)</p><p><br/></p><p>The system predicts the class label: e.g., “Healthy” or “Leaf Blight”.</p><p><br/></p><p>Optionally, return confidence scores for each class.</p><p><br/></p><p>👉 In short:</p><p><br/></p><p>Data: Diverse labeled leaf images.</p><p><br/></p><p>Representation: Image pixels + extracted texture/color features via CNN.</p><p><br/></p><p>Model: CNN / transfer learning classifier.</p><p><br/></p><p>Output: Predicted disease category (or healthy).</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:30 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046158</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046177</link>
         <description><![CDATA[<p>ML Pipeline for Plant Disease Detection</p><p><br/></p><p>1. Training Data → Collect labeled leaf images (healthy + diseased, different plants).</p><p><br/></p><p><br/></p><p>2. Concept Representation → Use preprocessing (resize, normalize, augment) and CNNs to capture image features.</p><p><br/></p><p><br/></p><p>3. Function Approximation → Train a CNN model (e.g., ResNet, MobileNet) to map images → disease labels.</p><p><br/></p><p><br/></p><p>4. Prediction (Output) → Given a leaf image, output the disease type (or healthy) with confidence score.</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:31 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046177</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046244</link>
         <description><![CDATA[<p>To design a machine learning pipeline for detecting plant diseases from leaf images, we'll break it down into four key components: Training Data, Concept Representation, Function Approximation, and Prediction.</p><p><br></p><p>*Training Data*</p><p><br></p><p>We need a large dataset of high-quality images of plant leaves, covering various plant species and disease types. The images should be captured in different lighting conditions and angles to ensure the model's robustness. Some potential sources of images include¹ ²:</p><p>- *PlantVillage Dataset*: A comprehensive dataset of plant images, including healthy and diseased leaves</p><p>- *Tomato Leaf Disease Detection dataset*: A dataset specifically focused on tomato leaf diseases, with high-resolution images</p><p>- *Field images*: Images captured in real-world agricultural settings to account for environmental variations</p><p><br></p><p>*Concept Representation*</p><p><br></p><p>To capture image features effectively, we can employ techniques like:</p><p>- *Image Preprocessing*: Apply techniques such as image enhancement, noise reduction, and segmentation to optimize image quality</p><p>- *Feature Extraction*: Use methods like color histograms, texture patterns, and shape characteristics to extract relevant features from leaf images</p><p>- *Deep Learning*: Utilize convolutional neural networks (CNNs) to automatically learn features from images, which can identify intricate patterns and anomalies</p><p><br></p><p>*Function Approximation*</p><p><br></p><p>For the model, we can consider:</p><p>- *Convolutional Neural Networks  Excel in feature extraction and image classification tasks, making them suitable for plant disease detection</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:34 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046244</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046476</link>
         <description><![CDATA[<p>Training Data- Collect labeled leaf images (healthy + diseased, multiple plant species, varied conditions).</p><p><br></p><p>Concept Representation- Extract features using CNNs (color, texture, shape, patterns).</p><p><br></p><p>Function Approximation- Use deep learning models (e.g., CNN/ResNet).</p><p><br></p><p>Prediction- Classify leaf as healthy or specific disease type.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:04:47 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046476</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046843</link>
         <description><![CDATA[<p>To build an ML pipeline for detecting plant diseases from leaf images, we first need a large and diverse dataset of leaf images, including healthy and diseased samples under different lighting and environmental conditions. Next, the images should be preprocessed (resizing, normalization, augmentation) and represented using extracted features such as color, texture, and shape, or directly through deep learning feature extraction using CNNs. For function approximation, models like Convolutional Neural Networks (CNNs) are most suitable as they learn patterns directly from images. The final output would be a prediction classifying the leaf as healthy or indicating the specific disease present.</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:05:09 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046843</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046855</link>
         <description><![CDATA[<p>I would insert data of patterns that are observed as the disease progresses. If the same patterns get found like maybe leaf size reducing, or trunk size reducing, late healing etc, then the plant would be classified diseased and hen further classifications would be done to find out the disease</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:05:10 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555046855</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555047645</link>
         <description><![CDATA[<p>Collect large diverse leaf data.</p><p>Find Data of healthy and diseased leaves. Which can help in prediction to the system.</p><p>From this data computer can predict and categorized healthy and diseased leaf</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:05:33 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555047645</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048017</link>
         <description><![CDATA[<p>ML Pipeline for Plant Disease Detection from Leaf Images</p><p><br/></p><p>1. Training Data</p><p><br/></p><p>A large dataset of healthy and diseased leaf images is needed.</p><p><br/></p><p>Images should cover all types of diseases.</p><p><br/></p><p>Collected under different lighting, backgrounds, and angles to make the model robust.</p><p><br/></p><p><br/></p><p>2. Concept Representation</p><p><br/></p><p>Preprocess the images: resize, normalize, and use data augmentation (flip, rotate, zoom) to avoid overfitting.</p><p><br/></p><p>Use CNN (Convolutional Neural Network) to automatically extract features like color, texture, and spots from the leaves.</p><p><br/></p><p><br/></p><p>3. Function Approximation (Model)</p><p><br/></p><p>Use CNN-based models such as ResNet, VGG16, or MobileNet.</p><p><br/></p><p>If data is limited, use Transfer Learning with pretrained models.</p><p><br/></p><p><br/></p><p>4. Prediction</p><p><br/></p><p>The output will be:</p><p><br/></p><p>Class Label → Whether the leaf is healthy or which disease it has.</p><p><br/></p><p>Probability Score → How confident the model is about its prediction.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:05:49 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048017</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048286</link>
         <description><![CDATA[<p>ML Pipeline Design Overview</p><p>The process begins with gathering training data, specifically a diverse dataset of leaf images covering both healthy and diseased plants, annotated by disease type.</p><p><br/></p><p>Next is concept representation, which involves extracting and selecting image features such as color, texture, shape, or deep features using convolutional neural networks, ensuring the features are informative for disease detection.</p><p><br/></p><p>The final stage is function approximation, where a machine learning model (such as CNN, Random Forest, or SVM) is trained on these features to predict the presence and type of disease. The expected output is the classification of each leaf image as healthy or with a specific disease.</p><p><br/></p><p>Step-by-Step Breakdown</p><p>Training Data</p><p>Collect labeled images of plant leaves, representing various species and disease cases (healthy and unhealthy).</p><p><br/></p><p>Ensure data diversity for robust generalization.</p><p><br/></p><p>Concept Representation</p><p>Choose feature extraction techniques: classical methods (color histograms, shape descriptors, textures) or automated methods (deep learning from pixels).</p><p><br/></p><p>Preprocess images for consistency (resizing, normalization).</p><p><br/></p><p>Function Approximation</p><p>Select and train a model (e.g., CNN for image classification).</p><p><br/></p><p>Use validation/testing sets to assess accuracy.</p><p><br/></p><p>Output: Disease label or ‘healthy’ for each input image.</p><p><br/></p><p>This structure is commonly followed in image-based plant disease detection ML projects.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:06:05 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048286</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048609</link>
         <description><![CDATA[<p>ML pipeline for plant disease detection from leaf images using the concepts of Training Data, Concept Representation, and Function Approximation:</p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>1. Training Data</p><p><br/></p><p>Goal: Provide the ML system with diverse examples so it can learn patterns of healthy vs. diseased leaves.</p><p><br/></p><p>Type of images needed:</p><p><br/></p><p>Clear images of leaves under various lighting conditions.</p><p><br/></p><p>Multiple plant species and leaf shapes.</p><p><br/></p><p>Healthy leaves (no disease).</p><p><br/></p><p>Diseased leaves, labeled with the specific disease type.</p><p><br/></p><p>Images at different stages of disease progression.</p><p><br/></p><p>Include some background variations (e.g., soil, sky) for robustness.</p><p><br/></p><p><br/></p><p>Labels: Each image should be annotated with the plant species and disease type (or “healthy” if no disease).</p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>2. Concept Representation</p><p><br/></p><p>Goal: Convert raw leaf images into meaningful features that a model can learn from.</p><p><br/></p><p>Approach 1: Manual Feature Extraction (simplified)</p><p><br/></p><p>Color features: Average RGB or HSV values, detecting discoloration.</p><p><br/></p><p>Texture features: Spot patterns, vein structure, roughness.</p><p><br/></p><p>Shape features: Leaf contours, edges, and holes.</p><p><br/></p><p><br/></p><p>Approach 2: Automatic Feature Extraction using Deep Learning (preferred)</p><p><br/></p><p>Use Convolutional Neural Networks (CNNs) to automatically extract hierarchical features:</p><p><br/></p><p>Early layers: edges, textures.</p><p><br/></p><p>Middle layers: spots, patterns, discoloration.</p><p><br/></p><p>Deeper layers: complex patterns representing disease types.</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>3. Function Approximation</p><p><br/></p><p>Goal: Choose a model that can learn the mapping from features to disease labels.</p><p><br/></p><p>Simplified model options:</p><p><br/></p><p>Classical ML:</p><p><br/></p><p>Random Forest, SVM, or Logistic Regression on manually extracted features.</p><p><br/></p><p>Works for small datasets but may miss subtle patterns.</p><p><br/></p><p><br/></p><p>Deep Learning:</p><p><br/></p><p>CNN (e.g., ResNet, MobileNet) on raw images for automatic feature learning.</p><p><br/></p><p>Better for large datasets and complex leaf patterns.</p><p><br/></p><p><br/></p><p><br/></p><p>Training process:</p><p><br/></p><p>Input: Leaf image features.</p><p><br/></p><p>Output: Probability distribution over disease classes (including healthy).</p><p><br/></p><p>Loss function: Cross-entropy for multi-class classification.</p><p><br/></p><p>Optimizer: Adam or SGD.</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>4. Prediction</p><p><br/></p><p>Goal: Output a label for new leaf images.</p><p><br/></p><p>Expected output:</p><p><br/></p><p>Class label: e.g., “Healthy,” “Powdery Mildew,” “Leaf Rust.”</p><p><br/></p><p>Optional confidence score: Probability that the leaf belongs to that class.</p><p><br/></p><p>Optional segmentation mask: If highlighting affected areas on the leaf.</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:06:16 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555048609</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049093</link>
         <description><![CDATA[<p>1. Training Data →</p><p><br/></p><p>Collect labeled leaf images (healthy + diseased, different plants).</p><p><br/></p><p>2. Concept Use Representation preprocessing (resize, normalize, augment) and CNNs to capture image features.</p><p><br/></p><p>3. Function Approximation → Train a CNN model (e.g., ResNet, MobileNet) to map images → disease labels.</p><p><br/></p><p>4. Prediction (Output) Given a leaf image, output the disease type (or healthy) with confidence score.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:06:36 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049093</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049324</link>
         <description><![CDATA[<p>To design an ML system for plant disease detection, we first need a large dataset of leaf images that includes both healthy and diseased samples collected under different conditions (Training Data). The image features can be represented either through traditional methods such as color, texture, and shape analysis, or automatically using Convolutional Neural Networks (Concept Representation). A suitable model like SVM for handcrafted features or CNNs for raw images can then be trained to approximate the mapping between images and disease categories (Function Approximation). Finally, the system will predict whether a new leaf is healthy or which type of disease it has, often along with a confidence score (Prediction).</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:06:47 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049324</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049554</link>
         <description><![CDATA[<p>To create a plant disease prediction model,first we need to train the model for which we need training datasets. In this case we need plant diseases categories and their images so that the model trains by recognising patterns from the datasets. After training from the datasets we have to make sure how the model is going to structure and store the information in itself, for which we going to need machine learning algorithms. After that, we test the model for unseen cases or data for which the model predicts the output according to the past experiences it gets from the datasets during its training period. That's how the machine learning model going to predicts after scanning a plant whether it is diseased or not.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:06:59 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049554</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049650</link>
         <description><![CDATA[<p>To design an ML pipeline for detecting plant diseases from leaf images, first gather a large, diverse dataset of labeled leaf images including both healthy and diseased samples.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:07:04 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049650</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049711</link>
         <description><![CDATA[<p>We can design pipelines by</p><ol><li><p>Training data </p></li><li><p>Concept representation </p></li><li><p>Function approximation </p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:07:08 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555049711</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555051115</link>
         <description><![CDATA[<p><br></p><p><strong>ML Pipeline for Plant Disease Detection</strong></p><p><br></p><p><br></p><ol><li><p>Data – Collect photos of healthy and diseased leaves and add labels.</p></li><li><p>Features – Clean the photos and extract important details (color, spots, shape).</p><p><br></p><p><br></p></li><li><p>Model – Image ke liye CNN jaisa model use karo aur train karo.</p></li><li><p>Prediction – The system tells if the leaf is healthy or has a disease.</p></li></ol><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:08:20 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555051115</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555051174</link>
         <description><![CDATA[<p>Training Data → Labeled leaf images with various diseases and healthy samples.</p><p><br/></p><p>Concept Representation → Use CNNs (automatic feature extraction) or classical descriptors (color, texture, shape).</p><p><br/></p><p>Function Approximation → Train a CNN (ResNet/MobileNet) for classification.</p><p>Prediction → Disease label (with confidence score).</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:08:23 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555051174</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052495</link>
         <description><![CDATA[<p>Here we have to find that which leaves are healthy and which are diseased. Based upon these we can predict the accuracy of the leaves .</p><p><br/></p><p>Training Data: Collect clear images of healthy and diseased leaves, labeled with the disease type.</p><p><br/></p><p>Concept Representation: Convert images into useful features.</p><p><br/></p><p>Function Approximation: Train an ML model  on these features to classify the disease.</p><p><br/></p><p>Prediction: The model takes a new leaf image and predicts if—and which—disease is present.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:09:28 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052495</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052511</link>
         <description><![CDATA[<p>Here we have to find that which leaves are healthy and which are diseased. Based upon these we can predict the accuracy of the leaves .</p><p><br/></p><p>Training Data: Collect clear images of healthy and diseased leaves, labeled with the disease type.</p><p><br/></p><p>Concept Representation: Convert images into useful features.</p><p><br/></p><p>Function Approximation: Train an ML model  on these features to classify the disease.</p><p><br/></p><p>Prediction: The model takes a new leaf image and predicts if—and which—disease is present.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:09:29 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052511</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052601</link>
         <description><![CDATA[<p>Plant Disease Detection Using Machine Learning TopicsTo design a plant disease detection pipeline from leaf images, you should gather a diverse, labeled dataset, preprocess images by cleaning and enhancing them, use a Convolutional Neural Network (CNN) for feature extraction and classification, split the data for training and testing, then evaluate the trained CNN model's performance and refine the pipeline as needed for deployment.</p><p> </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:09:34 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052601</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052719</link>
         <description><![CDATA[<p>Training Data: The Photo Album</p><p>First, you need a huge collection of photos. This is your "photo album."</p><p>You'd fill it with pictures of all sorts of leaves: healthy ones, ones with spots, ones turning yellow, and ones with strange-looking mold.</p><p>Each photo has a label: "This one is healthy," "This one has early blight," or "This one has a fungus." The more variety you have—different plants, different diseases, different lighting—the smarter your system will become.</p><p>2. Concept Representation: The Feature Finder</p><p>Next, the system has to learn what a disease "looks like."</p><p>It's like teaching a child to recognize a cat. You don't just say "cat." You point out the ears, the whiskers, the fur.</p><p>For the plant system, a computer program called a Convolutional Neural Network (CNN) acts as a super-smart detective. It automatically learns to pick out the important "features" of a sick leaf, like the shape of the spots, the color of the veins, and the texture of the surface.</p><p>3. Function Approximation: The Smart Brain</p><p>This is where the system learns to connect the dots.</p><p>You take all the features the detective found and feed them into the main part of the CNN.</p><p>This "brain" learns to connect the features to the correct disease. It's like a student studying flashcards: it sees a picture of spots (the feature) and learns to associate it with "early blight" (the answer). It keeps practicing until it gets it right almost every time.</p><p>4. Prediction: The Diagnosis</p><p>Finally, the system is ready to help the farmer.</p><p>The farmer takes a picture of a new leaf and uploads it.</p><p>The "smart brain" instantly analyzes the photo and gives its best guess: "This leaf has a 95% chance of having early blight."</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:09:42 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555052719</guid>
      </item>
      <item>
         <title></title>
         <author>yashsharma9033</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555062545</link>
         <description><![CDATA[<p>Training Data</p><p>We need many images of plant leaves. The dataset should have both healthy and diseased leaves, from different plants, and in different conditions like lighting and angles. All images must be labeled correctly.</p><p><br/></p><p>Concept Representation</p><p>The system should notice features of leaves such as color, spots, and texture. With deep learning, these features can be learned directly from images on basis of these features our model will do predictions. </p><p><br/></p><p>Function Approximation</p><p>A convolutional neural network (CNN) can be used to for mapping the input with output .Cnn may be used as it works well with images.</p><p><br/></p><p>Prediction</p><p>The model will predict whether the leaf is healthy or which disease it has on the basis of the features </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:16:55 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555062545</guid>
      </item>
      <item>
         <title></title>
         <author>sakshigarg1904</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555069728</link>
         <description><![CDATA[<p>Diverse plant images will be needed with different diseases and without diseases so that the machine could learn more accurately with large dataset and generates more accurate prediction (outputs). </p><p><br></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 06:21:38 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555069728</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555352514</link>
         <description><![CDATA[<p>Training Data</p><p>We need lots of plant leaf images (both healthy and diseased).</p><p>Images should be from different plants, in various lighting and angles.</p><p>Each image must be labeled correctly.</p><p><br/></p><p>Concept Representation</p><p>The system should learn features like color, spots, and texture of leaves.</p><p>Using deep learning, these features will be automatically detected.</p><p>Based on them, the model will make predictions.</p><p><br/></p><p>Function Approximation</p><p>We can use a Convolutional Neural Network (CNN) since it works best for images.</p><p>It will map input images to the correct output (healthy/diseased).</p><p><br/></p><p>Prediction</p><p>The model will predict if a leaf is healthy or which disease it has based o</p><p>n the features.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 11:04:56 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555352514</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555356995</link>
         <description><![CDATA[<p>1. Training Data – Collect a large set of leaf images of different plants, including healthy and diseased leaves (various diseases, lighting, and backgrounds).</p><p><br/></p><p><br/></p><p>2. Concept Representation – Preprocess images (resize, normalize, augment) so features like color, texture, and leaf spots are captured.</p><p><br/></p><p><br/></p><p>3. Function Approximation – Use a Convolutional Neural Network (CNN) model for classification of leaf images.</p><p><br/></p><p><br/></p><p>4. Prediction (Output) – The system predicts whether a leaf is healthy or diseased, and if diseased, identifies the type of disease.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-26 11:10:43 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3555356995</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556983222</link>
         <description><![CDATA[<p>Data Collection → Preprocessing → Model Selection → Training → Evaluation → Deployment → Feedback and repeat</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:56:11 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556983222</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556983875</link>
         <description><![CDATA[<p>To make a system that finds plant diseases from leaf pictures, we first collect many images of leaves — both healthy and diseased, taken in different lights and angles. Then we clean and prepare these images by resizing, normalizing, or adding variations like rotation and brightness change. After that, we use a model like CNN (a type of deep learning) which learns important features such as color, spots, and shapes from the leaves. The model is trained to tell if a leaf is healthy or has a certain disease. Finally, when we give a new leaf image, the system shows if it is healthy or which disease it has, along with how sure it is about the result.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:57:01 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556983875</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556984655</link>
         <description><![CDATA[<p>1.Training Data:</p><p>Collect a large dataset of leaf images from different plant species, including both healthy and diseased leaves. The dataset should have variations in lighting, angle, and background to make the model robust.</p><p><br/></p><p>2. Concept Representation:</p><p>Preprocess the images by resizing, normalizing, and augmenting them. Extract important features such as leaf color, texture, and presence of spots or patterns. This ensures the model focuses on disease-related features.</p><p><br/></p><p>3. Function Approximation (Model):</p><p>Use a Convolutional Neural Network (CNN), as it is well-suited for image classification tasks. Train the model on labeled leaf images to classify whether the leaf is healthy or which disease it has.</p><p><br/></p><p>4. Prediction / Output:</p><p>The system should predict the health status of the leaf (e.g., Healthy, Disease A, Disease B, etc.) and provide probabilities for each class.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:58:10 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556984655</guid>
      </item>
      <item>
         <title></title>
         <author>chiragsharma6678</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556984656</link>
         <description><![CDATA[<p>1. Data Collection → Gather labeled leaf images.</p><p>2. Preprocessing &amp; Feature Extraction → Resize, normalize, augment images.</p><p>3. Model Training → CNN or transfer learning.</p><p>4. Prediction → Classify leaf as healthy or diseased.</p><p>5. Evaluation &amp; Deployment → Measure performance and integrate </p><p>into an app.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:58:10 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556984656</guid>
      </item>
      <item>
         <title></title>
         <author>priyanshu63930</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985028</link>
         <description><![CDATA[<p>Collect a large dataset of leaf images from different plant species.</p><p><br/></p><p>Include both healthy and diseased leaves covering multiple diseases.</p><p><br/></p><p>Ensure variations in lighting, angles, and backgrounds for robustness.</p><p><br/></p><p>Use publicly available datasets (e.g., PlantVillage) or field data.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:58:32 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985028</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985139</link>
         <description><![CDATA[<p>Training data: plants having diseases. </p><p>Concept representation: image features can be captured using vector features. </p><p>Function approximation: decision tree</p><p>Prediction: after doing all the above mentioned process, we will expect that our output will be.. Whether it is defective plant ( means having disease) or not.. </p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:58:40 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985139</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985672</link>
         <description><![CDATA[<p>Diverse plant images will be needed with different diseases and without diseases so that the machine could learn more accurately with large dataset and generates more accurate prediction (outputs).</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-08-27 11:59:21 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3556985672</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564331055</link>
         <description><![CDATA[<p><br/></p><p>Different data , types of data </p><p>Supervised learning </p><p>Unsupervised learning </p><p>Reinforcement learning </p><p>Diverse plant images will be needed with different diseases and without diseases so that the machine could learn more accurately with large dataset and generates more accurate prediction (outputs).</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-02 05:02:35 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564331055</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564331752</link>
         <description><![CDATA[<p>Data Acquisition: Collect and label a diverse dataset of healthy and diseased leaf images.</p><p>Data Pre-processing: Augment, resize, and normalize images for model training, potentially enhancing them and removing noise.</p><p>Model Development: Choose and train a suitable ML/DL model (e.g., CNNs) for disease classification, followed by hyperparameter tuning and validation.</p><p>Deployment &amp; Monitoring: Integrate the model into an application for real-time inference and continuously monitor its performance in real-world use cases, updating as needed.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-02 05:02:57 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564331752</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564333078</link>
         <description><![CDATA[<p><br/></p><p><br/></p><p>ML Pipeline for Plant Disease Detection**</p><p><br/></p><p>1. **Training Data**:</p><p><br/></p><p>   * Collect labeled images of **healthy and diseased plant leaves**.</p><p>   * Dataset should cover multiple plant species, diseases, and conditions.</p><p><br/></p><p>2. **Concept Representation**:</p><p><br/></p><p>   * Capture image features like **color, texture, and patterns**.</p><p>   * Use **CNNs** to automatically learn features from images.</p><p><br/></p><p>3. **Function Approximation**:</p><p><br/></p><p>   * Train a model (e.g., **Convolutional Neural Network**) to map features → disease class.</p><p><br/></p><p>4. **Prediction**:</p><p><br/></p><p>   * For a new leaf image, the model outputs the **disease type (or healthy)** with a **confidence </p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-02 05:03:41 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3564333078</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571443622</link>
         <description><![CDATA[<p>ML Pipeline for Plant Disease Detection</p><p><br/></p><p>1. Training Data → Collect labeled images of healthy and diseased leaves (different plant species, lighting, angles).</p><p><br/></p><p>2. Concept Representation → Extract image features:</p><p>Traditional ML: color, texture, shape.</p><p>Deep Learning: use CNNs to learn features automatically.</p><p><br/></p><p><br/></p><p>3. Function Approximation → Train a model to classify:</p><p>Options: SVM, Random Forest, Logistic Regression, CNN (best choice).</p><p><br/></p><p><br/></p><p>4. Prediction → Output the disease type (e.g., Healthy, Leaf Spot, Powdery Mildew) with probability.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-06 06:00:47 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571443622</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571583217</link>
         <description><![CDATA[<p>ML Pipeline for Plant Disease Detection</p><p><br/></p><p>1. Training Data Collect labeled images of healthy and diseased leaves (different plant species, lighting, angles).</p><p><br/></p><p>2. Concept Representation Extract image features:</p><p><br/></p><p>Traditional ML:</p><p><br/></p><p>color, texture, shape. Deep Learning: use CNNs to learn features automatically.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-06 11:21:09 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571583217</guid>
      </item>
      <item>
         <title></title>
         <author>sachingamers83075</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571583913</link>
         <description><![CDATA[<p>1 st - training </p><p>Images of healthy and unhealthy leafes </p><p><br/></p><p>2nnd </p><p>Describe yellow leaves as disease </p><p>And green leaf as green </p><p>3d Prediction </p><p>Predict healthy and diseased leaf</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-06 11:23:03 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3571583913</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3583522972</link>
         <description><![CDATA[<ol><li><p>Train it on a lot of data set of green and yellow leaf. </p></li><li><p>Labeling yellow as desisead and green as healthy </p></li><li><p>Getting output </p></li></ol>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-14 05:31:23 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3583522972</guid>
      </item>
      <item>
         <title></title>
         <author>deep555554</author>
         <link>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3583524120</link>
         <description><![CDATA[<p>1. Training Data</p><p><br/></p><p>Collect a large dataset of plant leaf images.</p><p><br/></p><p>Both healthy and diseased leaves.</p><p><br/></p><p>Multiple diseases (like bacterial spot, blight, powdery mildew, etc.), not just yellow vs. green.</p><p><br/></p><p>Different lighting conditions, angles, and backgrounds to make the model robust.</p><p><br/></p><p><br/></p><p>Data should be labeled: each image tagged as healthy or with the specific disease name.</p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>2. Concept Representation</p><p><br/></p><p>Convert images into a form that the ML system can understand.</p><p><br/></p><p>Techniques:</p><p><br/></p><p>Preprocessing: Resize, normalize pixel values, remove noise/background.</p><p><br/></p><p>Feature Extraction:</p><p><br/></p><p>Classical: Use texture, shape, and color histograms.</p><p><br/></p><p>Deep Learning: Use CNNs (Convolutional Neural Networks) to automatically learn important features from images.</p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p><br/></p><p>---</p><p><br/></p><p>3. Function Approximation (Model)</p><p><br/></p><p>Choose a model to map features → disease category.</p><p><br/></p><p>Options:</p><p><br/></p><p>CNN-based deep learning models (ResNet, VGG, EfficientNet) → good for image classification.</p><p><br/></p><p>Transfer Learning: Use pre-trained models (like MobileNet, ResNet) fine-tuned on plant leaf dataset.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-09-14 05:34:56 UTC</pubDate>
         <guid>https://padlet.com/mahak3/6lxlme6wgt9x2yng/wish/3583524120</guid>
      </item>
   </channel>
</rss>
