Image classification with Python and Scikit learn | Computer vision tutorial

Поділитися
Вставка
  • Опубліковано 27 вер 2024
  • Code: github.com/com...
    Data: drive.google.c...
    #computervision #imageclassification #python

КОМЕНТАРІ • 136

  • @ComputerVisionEngineer
    @ComputerVisionEngineer  Рік тому +2

    Did you enjoy this video? Try my premium courses! 😃🙌😊
    ● Hands-On Computer Vision in the Cloud: Building an AWS-based Real Time Number Plate Recognition System bit.ly/3RXrE1Y
    ● End-To-End Computer Vision: Build and Deploy a Video Summarization API bit.ly/3tyQX0M
    ● Computer Vision on Edge: Real Time Number Plate Recognition on an Edge Device bit.ly/4dYodA7
    ● Machine Learning Entrepreneur: How to start your entrepreneurial journey as a freelancer and content creator bit.ly/4bFLeaC
    Learn to create AI-based prototypes in the Computer Vision School! www.computervision.school 😃🚀🎓

  • @philippe6724
    @philippe6724 Місяць тому +1

    Philipp did an excellent job at explaining all the details of sklearn. Thank you for sharing your knowledge-)

  • @John-xi2im
    @John-xi2im 6 місяців тому +3

    ultimate teaching style, this was the best computer vision introduction tutorial I have ever seen on youtube as it was very easy to understand , thanks a lot Philip!!

  • @imadsaddik
    @imadsaddik Рік тому +7

    The way you explained this topic is amazing, I enjoyed watching the video and I didn't even feel the length of it.

  • @nazarmerza1
    @nazarmerza1 Місяць тому

    This an amazing tutorial. Great job Felipe!

  • @Akios281
    @Akios281 5 місяців тому +1

    Thank you very much, Felipe, for these very clear explanations. Until now, I was making predictions for numerical values. Before watching your videos, I thought image classification was more complicated (even though this is a relatively straightforward use case). I have just one perhaps silly question: How did you create the image captures for the dataset? Was it done manually, or did you use specific software for this somewhat tedious task? Thanks again!

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  5 місяців тому +1

      Hi, I took the parking lot video I show in the tutorial, I created a binary mask with the location of all the parking slots, then got all the connected components using opencv, then cropped the bboxes from the video frames. 🙌

  • @CarlosAlejandro-g8h
    @CarlosAlejandro-g8h 10 місяців тому

    Thank you, very clear and easy to follow tutorial

  • @deco-f7y
    @deco-f7y Рік тому

    Your tutorial is very cool, thank you very much for helping me with your tutorial

  • @abdvi4423
    @abdvi4423 10 місяців тому

    I love the explanation and you helped me so much!

  • @hamzawi2752
    @hamzawi2752 Рік тому

    Thank you so much for your time, you did a great job.

  • @valnuke
    @valnuke 6 місяців тому +6

    you're the best Felipe! short videos straight to the point, great explanations

  • @saketolfa
    @saketolfa Рік тому

    Thumbs up for this video. I just noticed a small mistake . I think you accidentally switched the parameters for the accuracy_score function. It should be accuracy_score(y_test, y_prediction) instead of accuracy_score(y_prediction, y_test).

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +2

      Hey, thank you for your contribution! Although the order of input parameters is not crucial at computing the accuracy, the function outputs the same result 💪🙌

  • @guilhermegodoi2336
    @guilhermegodoi2336 Рік тому +2

    Amazing job Felipe, you are helping me so much on my studies! I'm from Brazil and I will definitely use your videos to help on my completion of course work

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +1

      Hey Guilherme! It makes me so happy the videos are helping you! 😃😃
      Thank you for watching! 🤓💪

  • @TatianaMaskaron
    @TatianaMaskaron 6 місяців тому +1

    hi, qq how did you split the images to empty and not empty? I saw the other video where you cropped images, but how did you separate 6K+ images into empty and not empty, its not clear.

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  6 місяців тому +1

      The opencv function I used to get all connected components provides an id for every component, so I looked at the ids of empty slots and non empty slots and save them into different directories.

    • @TatianaMaskaron
      @TatianaMaskaron 6 місяців тому +1

      @@ComputerVisionEngineer i see, thank you. Yes I also looked at the other videos you have and realized how its done. Thanks for responding. Btw I pinged you on linedin for a project. I did not see reply, assuming you are not logging in to that often. Would you be interested in a paid consultation?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  6 місяців тому +1

      @@TatianaMaskaron thank you so much for reaching out regarding a paid consultation, I do work as a freelance contractor, but I am a little too busy right now with other projects. Yeah I don't use linkedin that much, but you can reach out to me through mail, discord, Patreon, or the comments in my videos, I try to answer as soon as possible. 🙌

    • @TatianaMaskaron
      @TatianaMaskaron 6 місяців тому

      @@ComputerVisionEngineer Filippe, if you can pass me your email that would be great. I don't know how to reach out on here without using comments.

  • @HaxeHere
    @HaxeHere Рік тому +3

    Thanks a lot for your content Felipe, you're a great teacher! I'm new to machine learning so there's one thing that confuses me: how can I now utilize the the model that I've created? I understand that Pickle transforms the data into byte form and that it can be read somehow, but could you give me an example of what to now do with this data?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +4

      Sure! Take a look at this function, here is an example of how I use the same image classifier I trained in this video to make predictions github.com/computervisioneng/parking-space-counter/blob/master/util.py#L14
      Please mind I am loading the model in line 11. 💪💪

    • @HaxeHere
      @HaxeHere Рік тому

      Thank you!

  • @informationnet
    @informationnet Рік тому

    It helped a lot for me.

  • @FahadKiani1
    @FahadKiani1 10 місяців тому

    Felipe the Legend 👏🏽

  • @amanPatel-mw7ly
    @amanPatel-mw7ly 6 місяців тому +1

    not able to download dataset

  • @andres_camarillo
    @andres_camarillo Рік тому

    Great video!

  • @江東諺-o1q
    @江東諺-o1q Рік тому +1

    Could you release the data of empty and not empty for us? Thank you very much for your amazing tutorials on OpenCV and Machine Learning. It is beneficial for me to construct my own project!

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +4

      Sure! I am happy to help you in your machine learning journey! 😃🙌
      Here you go: drive.google.com/file/d/11DyZ165lZGzULEZSQNofyy9A8xaYgFJ2/view?usp=share_link

  • @mirtanvirahmed3868
    @mirtanvirahmed3868 11 місяців тому

    amazing tutorial indeed! ❤️ 👌 can you suggest me some resources where i can find some free data for training models?

  • @vivekpatel009
    @vivekpatel009 Рік тому

    Amazing tutorial !!, Just a question, there are many classifiers in sklearn. Why did you choose SVC specifically ?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      No reason. Given the data I used in this project, I think pretty much any other classifier would have had a similar performance. 💪💪

  • @tharndu3387
    @tharndu3387 Рік тому +5

    Why don't you annotate the images using bounding box or any methoda ? Is it not compulsory ? 🥲

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +2

      Hey, given this is an image classifier the type of annotation we need is only the image category. 💪💪

  • @YigalBZ
    @YigalBZ Рік тому

    Thank you for a great clear video. I am going to run it through. Yet something is missing for me: I would like to train a set of specific toy car recognition. For that I need to take pictures of the toy car , and pictures of the floor/table (where the car can be placed) for the "empty' part. Can you recommend: 1) how many pictures of each? 2) What resolution? does it matter? 3) Any other guide line you would recommend?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +1

      About the number of pictures, you should be able to achieve a high level of accuracy with a 'small' dataset; try with 200 images in each class. The resolution may not be that critical, but try to make it as high as possible. 🙌

  • @MrThefakiri
    @MrThefakiri Рік тому

    You are use category_index for labels ?? I think the labels is category

  • @yanhu2011
    @yanhu2011 Рік тому

    Great video. Is there a follow up on this to show how you can use the classifier and display the annotated image with green box and red box representing occupied and unoccupied spots in a parking lot image?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Thank you! Sure, visualization is covered in the parking spot detector and counter video! ua-cam.com/video/F-884J2mnOY/v-deo.html

  • @datascientistonline12
    @datascientistonline12 Рік тому +1

    Hi, great tutorial! I seem to be stuck on a problem when I execute the "grid_search.fit(x_train, y_train)" part of the code. This is the issue "FitFailedWarning: Estimator fit failed. The score on this train-test partition for these parameters will be set to nan. Details:
    TypeError: only size-1 arrays can be converted to Python scalars". Do you know how to fix this? I have ensured to use the correct versions (scikit learn, scikit image, and numpy) as shown in video, and followed the video step by step. This is the code for importing images i have (i had to add dtype=object when converting lists to numpy array as it was giving me visibleDeprecationWarning): for category_idx, category in enumerate(categories):
    for file in os.listdir(os.path.join(input_dir, category)):
    img_path = os.path.join(input_dir, category, file)
    img = imread(img_path)
    print(len(data))
    img = resize(img, (200, 200))
    data.append(img.flatten())
    labels.append(category_idx)
    data = np.asarray(data, dtype=object)
    labels = np.asarray(labels, dtype=object). Finally, do you have an instagram or other site to discuss this issue, if possible?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, what is your Python version and your OS? Many things could be going on. I would start by making sure the data and labels are being loaded correctly. You could print 'data' and 'labels' and see if they make sense.

  • @cenizamaricar7911
    @cenizamaricar7911 7 місяців тому

    Hello Sir, can we use this scikit in egg sexing for our incubator?

  • @alephzahir2780
    @alephzahir2780 6 місяців тому

    Hello , can u help me to know how go use my own data but i want to put an image and the code classify the image belong to any class , thank you

  • @zilefacebenezernwetlawung3200
    @zilefacebenezernwetlawung3200 Місяць тому

    thanks very much can the score be 100%

  • @cattnation6257
    @cattnation6257 6 місяців тому

    i need your advice i have task where i need to find avarage pixal value of x-ray image object in x-ray image i have many object like pen paper palstic and so on and each intesity is different some are overlap some have no clear edegs and mixed edges can i detect or draw a boundry box around each object is it possible without ml model i am newbew in this field specially in image processing can it can be done by image process alone can i segement object if intesity of each object is different and edges are not so clear please help me i am single develpoer in my team

  • @yacinerouizi844
    @yacinerouizi844 Рік тому

    thank you felipe

  • @BeeLiBahLa
    @BeeLiBahLa 5 місяців тому

    Im confused, which part of the code tells it that the picture has a car or not?

    • @arbababdurrab5702
      @arbababdurrab5702 2 місяці тому

      do you find out??? if yes then plzz also tell me

  • @itsthemeg
    @itsthemeg 10 місяців тому

    Could you make another video when you test out this classifier?. Like host this online and let the user upload images of parking spaces and the program outputs 'empty' or 'not empty'. Thanks

  • @erfanalaei8784
    @erfanalaei8784 3 місяці тому

    i love you

  • @abdullahazizhussain8117
    @abdullahazizhussain8117 Рік тому

    amazing tutorial, thanks!
    I had a question about the model.p file, is there some way I can open it and view its contents, I want to know how it classified, or maybe to see if the task was done as I wanted it to be done.

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      For models trained with scikit learn, in some cases is possible to look at the model weights or some of its internal parameters. But in general I would say model.p is a binary file and it only makes sense in scikit learn, there is not an easy way to 'open it and view its content'. 🙌

  • @hassanmohamud6415
    @hassanmohamud6415 Рік тому

    hi um i dont know why i dont know how to get data i did get from desc but i still didnt know if you could tell me that would really help

  • @nwbstplyr
    @nwbstplyr 8 місяців тому

    cool video! can i possibly import this model to like a huskylens? thanks!

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  8 місяців тому +1

      Hi, if you can execute Python and Scikit learn, then most likely yes! 🙌

    • @nwbstplyr
      @nwbstplyr 8 місяців тому

      @@ComputerVisionEngineer sounds great, trying to come up with a plan to computer vision something either its a good object or a bad one depending on some criteria

  • @silentt2143
    @silentt2143 Рік тому

    If I have more that 2 categories of images, can I name “x_train” and “x_test” whatever I want? For example “car_train”, “car_test”, “bus_train”, “bus_test”, and “limo_train”, “limo_test”?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +1

      Hey, you can certainly name your variables whatever you want. But, remember the category is already encoded in the labels variable. For example if you are building a vehicle classifier and the categories are car, bus and limo. Then each data point will be labeled as 0 (car), 1(bus) or 2 (limo).

    • @silentt2143
      @silentt2143 Рік тому

      @@ComputerVisionEngineer ok cool. Thank you!

  • @group4661
    @group4661 Рік тому

    Hello, can you help me to come up with python code that classify duck eggs such as balot, penoy, abnoy according to it's classification?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, that sounds like a cool project! As long as the different classes are visually distinct, you can classify them with an image classifier! I suggest you start with the data collection; collect data from all the different categories you wish to classify. Once you have the data, the Python code would be very similar as the one I used in this video! 😃💪🦆

  • @itsthemeg
    @itsthemeg 10 місяців тому

    Can this prediction model be used for any set of data?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  10 місяців тому

      Sure, it is an image classifier. There are other approaches that may yield a higher accuracy, though.

  • @SleepySoundscapes777
    @SleepySoundscapes777 Рік тому

    hey , great Tutorial thank you , but how do i use it now to classify new images ?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, oh I see the inference of individual images is not covered in this tutorial. Take a look at this video ua-cam.com/video/MJCSjXepaAM/v-deo.html, in this video I also train a classifier using scikit learn and I show you how to inference new data. 🙌

    • @SleepySoundscapes777
      @SleepySoundscapes777 Рік тому

      @@ComputerVisionEngineer thank you so much

  • @Matlab-ku3ns
    @Matlab-ku3ns Рік тому

    where do i get model.p file?? it is not available in code nor data link given in description

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, in order to create the model.p file you need to execute 'main.py' from the project's repository. 🙌

  • @odaithalji9603
    @odaithalji9603 Рік тому

    I have a task to classify cat and dog so i tried the same way you do it but the accuracy its very low i used gray scale to minimize the complicity but didont work , i want to used like this approach if you has any advice

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Try changing the size you are resizing the images to, line 23 from file main.py. What is the size of your images?

    • @odaithalji9603
      @odaithalji9603 Рік тому

      ​@@ComputerVisionEngineer
      I putted the size to (50,50) To make all image to one size but the image become a worst

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      @@odaithalji9603 by increasing the size in line 23 performance should go up. Nevertheless, this may not be the best approach for this type of task. I would recommend you to use feature extraction before applying a scikit learn classifier. I may do a video about it soon. 💪

    • @odaithalji9603
      @odaithalji9603 Рік тому +1

      @@ComputerVisionEngineer
      Ok ,Thank you vary much,I will be waiting

  • @horyantan5899
    @horyantan5899 Рік тому

    how if I need to use CNN network? Example AlexNet?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, I may make another video in the future on creating an image classifier based on deep learning, like AlexNet. 😃💪

  • @peterMwaura-rh3nm
    @peterMwaura-rh3nm Рік тому

    Thanks. Is there a way I can convert the model to a
    tflite

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, the image classifier we used in this video is from scikit learn library, it is not possible to convert it to tflite. 🙌

    • @peterMwaura-rh3nm
      @peterMwaura-rh3nm Рік тому

      @@ComputerVisionEngineer okay thanks a lot. I will be on the lookout for Keras and tensor flow. Thanks

  • @niklaskeller8465
    @niklaskeller8465 Рік тому

    How do you build up your trainig data? You won‘t have decided for 6000 pictures whether they are empty or not?
    Did you use kind of a „step by step“ classification? So that with lets say with 50 pictures you built up a classifier, that builds up further (and of course checked it then whether it worked properly?
    Thanks for your videos!

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey Niklas! That is a good question.
      The data I used in this video comes from a previous video where I built a parking space detector and counter. In that other video I got the location of all parking slots by getting all the connected components of a binary mask. The function I used for getting the connected components got me not only the bbox but also an id for that specific location. Then, as most of the spaces are either empty or not-empty during the entire video, I just selected a few empty spaces (and a few not-empty spaces) and cropped them out of the video in all frames. 💪💪

  • @EndahSugiatri
    @EndahSugiatri Рік тому

    how to deploy your pickle model on android app?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey Endah, there are different ways in which you can deploy the model we created in Scikit learn in an Android app. If you are looking to run the model in the mobile device you could consider the Python library sklearn2onnx in order to convert the Scikit learn model into an onnx file. 😃💪

    • @EndahSugiatri
      @EndahSugiatri Рік тому

      @@ComputerVisionEngineer do you have any reference to change the model? I had trouble finding the reference, I used this classification method for my thesis and my deadline is only 2 days to be able to run this program. I hope you can help me, thank you

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Try to Google "deploy scikit learn model android app" there are a few articles on how to do it, you may find the solution in one of those articles. 😃

  • @salvadorliebana6079
    @salvadorliebana6079 6 місяців тому

    Que crack

  • @mayankrohilla4105
    @mayankrohilla4105 2 місяці тому

    Why am I getting an accuracy score of 1.0 xD

  • @nigzz9117
    @nigzz9117 Рік тому

    Hi, please I have a project that is similar to yours and I would please like your assistance in some questions.
    The label being passed into the training and testing set, is it numerical or in string format? Cause I have to use labelencoder for my label before passing it into the function.
    Then the data being saved in the data variable is there any way I can convert them into a 4D array to be able to pass it into a CNN model?
    Thank you.

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, the label is numerical. Sure, you could reshape 'data' into a 4D array, it is possible. In that case, you may don't need to flatten the array as I did. 😃🙌

  • @F_F_CH
    @F_F_CH 5 місяців тому

    Ciao Fillippe, I have question about this profession in 2024 and want to know your opinion. Do I need to study any course in online platforms to become a good on it and of course finde a job(take certificate for CV). And is it easy to find a job as Comp.Vision engineer nowadays(2024 and maybe future). What can you advise me to become an engineer as you (online courses, books ect...)
    P.S. I really appreciate your contents, thank you for your time and effort. Hope to become a professional com.vision engineer and send you a gift from my 1st salary(but now i dont know, how to become it)

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  5 місяців тому +1

      Hi, take a look at the computer vision roadmap video, there are links to youtube videos and resources you can use to learn computer vision engineering. 🙌

  • @dipamsarkar2403
    @dipamsarkar2403 11 місяців тому +1

    Sir, I have facing some error while training the classifier. It says : ValueError: Found input variables with inconsistent numbers of samples: [4872, 1218]
    It would be of great help if you solve this problem🙏

    • @saifeldenkhaled9716
      @saifeldenkhaled9716 6 місяців тому

      it'd be better if you put the snippet of code so we can check it out with you

  • @rakeshkumarrout2629
    @rakeshkumarrout2629 Рік тому +1

    This is really anazing.can you make a video on how to apply GAN and use it or make it from scartch?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +2

      Hey Rakesh, making a video about GANs is a very good idea! I will definitely keep it in mind for future videos! 😄

  • @bisyrim1030
    @bisyrim1030 8 місяців тому

    I have 100.0% of samples were correctly classified 😁

  • @muhammadahmadessa9584
    @muhammadahmadessa9584 Рік тому

    Great video, could I use this same code to classify more than 2 categories? or does it only classify in binary, like e.g empty not empty.

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому +1

      Hey, thank you! Yes, you can use it to classify more than 2 categories! 😃🙌

  • @AbhishekRaj-ig3gk
    @AbhishekRaj-ig3gk Рік тому +1

    Very helpful ❤

  • @matthiasandreas6549
    @matthiasandreas6549 Рік тому

    Thank you so much for this Video. Makes fun and have learning effect.

  • @all_rounder_786_
    @all_rounder_786_ Рік тому

    Hello Sir, i used the same code, but its not giving me the output result, like don't print the accuracy... kindly help!
    thats what it is showing in the notification area.
    Shared indexes are downloaded for Python packages in 1 min, 12 sec (20.48 MB)

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, I just tested the code and everything seems to be working well on my end!
      That msg seems to be related to Pycharm, maybe you could try to execute from another IDE or from the command line?

    • @yagmur3718
      @yagmur3718 Рік тому

      I'm experiencing the same, any suggestions for a solution?

  • @tharndu3387
    @tharndu3387 Рік тому

    When i was trying to convert data and labels into numpy array, i got this error😢
    ValueError: setting an array element with a sequence. The requested array has an inhomogeneous shape after 1 dimensions. The detected shape was (84,) + inhomogeneous part.
    What is this ?
    Thanks for the amazing tutorial ❤

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Hey, what is your OS and your Python version? Have you installed the requirements listed in the requirements.txt file?

    • @tharndu3387
      @tharndu3387 Рік тому

      @@ComputerVisionEngineer No sir, first i used a data set that i have created, when i load your data set, now it is working 😍
      But I want to know what is that error ? How it occurred 🥲

  • @shivammehta9858
    @shivammehta9858 Рік тому

    A great session by you sir , sir pls also share the code to input a photo in it and put it in the trained model to show the results of analysation

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      Do you mean the code to make predictions on individual images? I will try to add that code soon.

  • @mayankmalhotra3523
    @mayankmalhotra3523 9 місяців тому

    Hi Felipe, Actually I wanted to ask that is this model build using pretrained model or not? and If it is build on pre trained model can you suggest me a video of yours where I can learn building a model with using a pretrained model

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  9 місяців тому +1

      Hi, I build this model using scikit learn, I am not using a pre trained model. 🙌

    • @mayankmalhotra3523
      @mayankmalhotra3523 9 місяців тому

      also i wanted to know about your video named as sign language detection with scikit learn. The thing is in that video the sign detection one of yours are you using any pre trained model?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  9 місяців тому

      @@mayankmalhotra3523 yes in that video the landmark detection is with a pre trained model.

    • @mayankmalhotra3523
      @mayankmalhotra3523 9 місяців тому

      @@ComputerVisionEngineer hey felipe i loved the tutorial but if i wanna see how the model recognises the parking spaces in a video and its real time working ? actually i wanted to see the output of it

  • @indointanchannel
    @indointanchannel Рік тому

    Thank you, sir. Could you share the dataset used?

  • @the.patricklong
    @the.patricklong 9 місяців тому +1

    AWESOME! Made my first working ML model. Thank you so much!!!!

  • @kenatsharaby
    @kenatsharaby Рік тому

    Great stuf!

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      😃 Thank you so much for your support!! 🙌🙌

    • @kenatsharaby
      @kenatsharaby Рік тому

      @@ComputerVisionEngineer Your' welcome. Question: how can I contact you privately to hire you for an ai project I am running?

    • @ComputerVisionEngineer
      @ComputerVisionEngineer  Рік тому

      You are welcome to tell me about your project through discord. The link is in the about section.