Extract Features from Image using Pretrained Model | Python

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024
  • ⭐️ Content Description ⭐️
    In this video, I have explained on how to extract features from the image using a pretrained model. This is very helpful if you want to reuse the features for training the model.
    Text-based Tutorial: www.hackersrea...
    GitHub Code Repo: bit.ly/datasci...
    🌐 Website: www.hackersrea...
    🔔 Subscribe: bit.ly/hackersr...
    🗓️ 1:1 Consultation with Me: calendly.com/h...
    📷 Instagram: / aswintechguy
    🔣 Linkedin: / aswintechguy
    🎯 GitHub: github.com/asw...
    🎬 Share: • Extract Features from ...
    ⚡️ Data Structures & Algorithms tutorial playlist: bit.ly/dsatutorial
    😎 Hackerrank problem solving solutions playlist: bit.ly/hackerra...
    🤖 ML projects tutorial playlist: bit.ly/mlprojec...
    🐍 Python tutorial playlist: bit.ly/python3p...
    💻 Machine learning concepts playlist: bit.ly/mlconcepts
    ✍🏼 NLP concepts playlist: bit.ly/nlpconcepts
    👽 Deep learning concepts playlist: bit.ly/dlconcepts
    🕸️ Web scraping tutorial playlist: bit.ly/webscrap...
    Make a small donation to support the channel 🙏🙏🙏:-
    🆙 UPI ID: hackersrealm@apl
    💲 PayPal: paypal.me/hack...
    #extractfeaturesfromimage #dlconcepts #hackersrealm #deeplearning #machinelearning #datascience #model #project #artificialintelligence #neuralnetwork #deeplearningtheory #python #tutorial #aswin #ai #dataanalytics #data #bigdata #programming #datascientist #technology #coding #datavisualization #computerscience #pythonprogramming #analytics #tech #dataanalysis #programmer #statistics #developer #ml #coder #theoryconcepts

Комментарии • 31

  • @RajatShetty-ul1ux
    @RajatShetty-ul1ux 7 месяцев назад +1

    Hi sir, I'm trying to do a project using ml. I'm a mechanical engineering final year student. And I'm not getting any resources for using ml for feature extraction from microstructures of metal. Can you clear some of my doubts?

  • @arijitkumarkhanra389
    @arijitkumarkhanra389 2 месяца назад +1

    Thanks for the video. I am currently working on EfficientNet and Topological data analysis. I have to extract features from the TDA and then from EfficientNet and then combine it and run it on SVM. Can it work there too??
    Thanks again

    • @HackersRealm
      @HackersRealm  2 месяца назад

      yes, you just have to change the model and use it. Use concat function to combine the features.

  • @ashwinkumar5223
    @ashwinkumar5223 Год назад +1

    Wonderful.
    Please create train and test set from the extracted features and make new video.
    Thank you

  • @luciesaintpierreedene8796
    @luciesaintpierreedene8796 Год назад +1

    Thank you sir, please can I use this extracted features for image classification using a lightweight transformer?

    • @HackersRealm
      @HackersRealm  Год назад

      Yeah you can use this for any model you want, it will work!!

  • @Gpt.engineer717
    @Gpt.engineer717 6 месяцев назад

    How to extract features from a synthetic dataset that includes various inputs and outputs

    • @HackersRealm
      @HackersRealm  6 месяцев назад

      Could you share what type of data, we are dealing with? text, image, table?

  • @chandrangshusarkar6070
    @chandrangshusarkar6070 Год назад

    sir can you pls telll me how LSTM can be implemented for object tracking

    • @HackersRealm
      @HackersRealm  Год назад

      Is this for tracking object in video?

  • @NorahALmousa
    @NorahALmousa 8 месяцев назад

    How can I extract specific features from the image using this method? For example, I went to extract just the face and other thing will be ignore ? Can I see the image after the feature extraction ? I mean print pic of the image to see how it looks .

    • @HackersRealm
      @HackersRealm  8 месяцев назад +1

      For those specific extraction, you need to try different methods... you could extract facial points using another model and extract the features like that.

    • @NorahALmousa
      @NorahALmousa 8 месяцев назад

      @@HackersRealm Thank you for the prompt response. Can you share model names or recommend resources? My main concern is whether feature extraction can ensure privacy preservation for some of the image pictures after we extract some of these features. Is it a viable approach?

    • @NorahALmousa
      @NorahALmousa 8 месяцев назад

      @@HackersRealm Also, can I use adversarial learning to preserve privacy in images by learning what features can be extracted?

  • @ahmedhesham8883
    @ahmedhesham8883 Год назад

    Good Explanation, is it possible to extract important Features and use it to crop the image to see the output ?

    • @HackersRealm
      @HackersRealm  Год назад

      It will be a multi step process. First you will localize the important object using some object detection model, then you can crop the images and extract features for that.

    • @VanshikaSharma-et7du
      @VanshikaSharma-et7du 7 месяцев назад

      @@HackersRealm after extracting features of the particular object, how can i use these features to detect if the same object is in another image?
      Like i found a person in a video and i need to find that if the same person is in another video

    • @HackersRealm
      @HackersRealm  7 месяцев назад +1

      @@VanshikaSharma-et7du that will be object detection and recognition, and there will be a series of steps you need to do for that

  • @pranavhshetty4538
    @pranavhshetty4538 10 месяцев назад

    can this features be used for defect detection projects

  • @muhammadramzan9543
    @muhammadramzan9543 Год назад

    How extract task specific features using this method.

  • @relationshipdestiny3355
    @relationshipdestiny3355 8 месяцев назад

    Can this code be used to extract finger vein images for a verification system?

  • @neeraj1rohilla
    @neeraj1rohilla Год назад

    Hi, please tell Can I supply my extracted features of image to CNN model to classify only? I mean Can I use CNN only for classification based on my algorithm's extracted features?

    • @HackersRealm
      @HackersRealm  Год назад

      You could directly use fully connected layers to do the classification as the features are already extracted

    • @neeraj1rohilla
      @neeraj1rohilla Год назад

      ​@@HackersRealm🙏. Can you suggest some code/video where I can see this kind of work

    • @HackersRealm
      @HackersRealm  Год назад

      @@neeraj1rohilla i have done image caption generator in similar way, you could check that in the channel

  • @ixcsnyildirim8181
    @ixcsnyildirim8181 Год назад

    hi thnks sir, Can optimization algorithm be applied to extracted features?