Yashvi Patel
Yashvi Patel
  • Видео 26
  • Просмотров 50 784
Google cloud Sql with Flask api | Cloud SQL | FLASK | GCP
Setting up a database can be very messy and time-consuming but there are some simple and scalable solutions are available and one such solution is Google Cloud SQL. Cloud SQL is a fully-managed database service (PaaS) that helps you set up, maintain, manage, and administer your SQL on Google Cloud Platform
In this video, we will learn how to set up Cloud SQL to build a Flask API.
⭐️ Code GitHub repo - github.com/YashviP/flask-cloud-sql-demo
⭐️ Google cloud sql documentation - cloud.google.com/sql
⭐️ Gcloud Authentication-cloud.google.com/docs/authentication/getting-started
If you have any doubts or queries you can comment down here 👇🏻, or message me on LinkedIn.
If you like these tutorials and ...
Просмотров: 5 571

Видео

Classify diseases in apple🍎 trees | kaggle mini project for Beginners | CNN
Просмотров 2 тыс.3 года назад
In this video, I explained how to create a deep learning model to identify Foliar diseases in apples using convolutional neural networks. I used a dataset of the Kaggle competition i.e Plant Pathology 2021. Apples are one of the most important temperate fruit crops in the world. Foliar (leaf) diseases pose a major threat to the overall productivity and quality of apple orchards. The current pro...
Evaluation Metrics | Classification
Просмотров 5953 года назад
After Creating machine learning model , it is very important to choose right metric to evaluate model performace , so in this video I talked about different evaulation metrics like confusion matrix , accuracy , precision , recall , f1-score, binary cross entropy , categorical cross entropy , AUC-ROC curve. If you have any doubts or queries you can comment down here 👇🏻, or message me on LinkedIn...
Convolutional Neural Networks | Computer vision playlist
Просмотров 4453 года назад
The advancements in Computer Vision in Deep learning are due to primarily one particular algorithm - a Convolutional Neural Network. In this video, I explained what Convolutional Neural Network(CNN) is and why not use neural networks for images, all the steps of CNN, and at the end, we saw the CNN code to recognize the handwritten digits using the Tensorflow library. ★ link to the google colab ...
Neural Networks Foundations with Tensorflow 2.x | Computer Vision Playlist
Просмотров 3173 года назад
In this video, I talked about features of TensorFlow, basics of neural networks like activation functions, backpropagation, gradient descent algorithms and I created a handwritten digit classifier to demonstrate the working of TensorFlow. I also Talked about Eager execution and autographs in TensorFlow. ★ link to the google colab notebook - github.com/YashviP/Computer-Vision-Playlist/blob/main/...
Image Contours | Contour Features | OpenCV | Computer Vision Playlist
Просмотров 1,3 тыс.3 года назад
Contours can be explained simply as a curve joining all the continuous points (along the boundary), having same color or intensity. The contours are a useful tool for shape analysis and object detection and recognition. In this video I explained what contours are , and its parameters - retrieval mode , Contour approximation method . I also talked about contour features like Moments , Perimeter ...
Natural language Processing with SpaCy | Rule based matching
Просмотров 4,3 тыс.3 года назад
Spacy rule based systems let you match entities using tokens , phrases and REGEX and can easily access and analyze the surrounding tokens, spans or add entries to the named entities in doc.ents. Rule-based systems are a good choice if there’s a more or less finite number of examples that you want to find in the data, or if there’s a very clear, structured pattern you can express with token rule...
Histogram Equalisation | Adjusting Contrast of Image | Computer Vision playlist
Просмотров 2293 года назад
In this video , I talked about histogram equalisation A histogram of an image is the graphical interpretation of the image’s pixel intensity values. Histogram Equalization adjusts the contrast of an image using histogram. To enhance the image's contrast, it spreads out the most frequent pixel intensity values. histogram equalization allows the image’s areas with lower contrast to gain a higher ...
Natural language processing with spaCy | Introduction
Просмотров 7193 года назад
★Natural Language Processing or NLP is a field of Artificial Intelligence that gives the machines the ability to read, understand and derive meaning from human languages. ★spacy is an open-source software library for advanced natural language processing In this introductory video of Natural language processing with spacy in which I talked about how to install spacy , tokenisation , part of spee...
Canny Edge Detection in OpenCV | Computer vision playlist
Просмотров 4803 года назад
The Canny edge detection is a multi-stage algorithm to detect a wide range of edges in images. The Canny edge detection algorithm is composed of 4 steps: 1. Noise reduction 2. Gradient calculation 3. Non-maximum suppression 4. Edge Tracking by Hysteresis In this video, I explained all the above steps in detail. ★ Image blurring - ruclips.net/video/RUiROaX84jU/видео.html ★ link to the google col...
Image Blurring using OpenCV | Computer Vision playlist
Просмотров 3183 года назад
Blurring is a technique in image processing in which we perform a convolution operation between the image and a low-pass filter. In this video I explained different image blurring filters like average filter , median filter , gaussian filter and bilateral filter . ★ link to the google colab notebook - github.com/YashviP/Computer-Vision-Playlist/blob/main/OpenCV/Blurring_images.ipynb ★ All the n...
Image Thresholding in OpenCV | Computer Vision Playlist
Просмотров 2573 года назад
Thresholding is used to create a binary image from a grayscale image . It is the simplest way to segment objects from a background. There are two types of thresholding - Simple Thresholding and Adaptive Thresholding. In this video I explained Simple and adaptive thresholding both and how to apply them using opencv-python and I also explained Otsu’s Binarization. ★ link to the google colab noteb...
Morphological Transformations on Images | OpenCV | Computer Vision Playlist
Просмотров 2163 года назад
Morphological transformations are some simple operations based on the image shape. It is normally performed on binary images. It needs two inputs, one is our original image, second one is called structuring element or kernel which decides the nature of operation. Two basic morphological operators are Erosion and Dilation. Then its variant forms like Opening, Closing, Gradient etc also comes int...
How I learned datascience | Roadmap to learn datascience | Learn datascience in 2021
Просмотров 1,9 тыс.3 года назад
Data Science is the area of study which involves extracting insights from vast amounts of data by the use of various scientific methods, algorithms, and processes. In this video, I talked about my journey to learn data science. I have divided this video into several phases to learn data science and talked about what resources you can follow to learn data science. I also created a document where...
Geometric transformation of images | OpenCV | Computer Vision playlist
Просмотров 5043 года назад
Training the deep learning model requires a vast amount of data. And in almost all of the cases, models perform better as training data increases. One way to artificially generate more data is to randomly apply some transformation to the input data. A technique is also known as image augmentation or data augmentation. In this video, I explained some basic transformation techniques like scaling,...
Handling kaggle large datasets on 16Gb RAM | CSV | Yashvi Patel
Просмотров 9 тыс.3 года назад
Handling kaggle large datasets on 16Gb RAM | CSV | Yashvi Patel
Bitwise operations on images | Add Watermark on images | OpenCV Python | By Yashvi Patel
Просмотров 3593 года назад
Bitwise operations on images | Add Watermark on images | OpenCV Python | By Yashvi Patel
getting started with videos | OpenCV basics | Computer vision playlist | BY YASHVI PATEL
Просмотров 2383 года назад
getting started with videos | OpenCV basics | Computer vision playlist | BY YASHVI PATEL
Drawing functions in OpenCv | OpenCv Basics | Computer Vision playlist | BY YASHVI PATEL
Просмотров 2553 года назад
Drawing functions in OpenCv | OpenCv Basics | Computer Vision playlist | BY YASHVI PATEL
Introduction to OpenCv | Getting started with images | BY YASHVI PATEL
Просмотров 3303 года назад
Introduction to OpenCv | Getting started with images | BY YASHVI PATEL
Introduction to Computer Vision | Computer Vision playlist | BY YASHVI PATEL
Просмотров 8293 года назад
Introduction to Computer Vision | Computer Vision playlist | BY YASHVI PATEL
Topic Modeling Using Gensim | COVID-19 Open Research Dataset (CORD-19) | LDA | BY YASHVI PATEL
Просмотров 8833 года назад
Topic Modeling Using Gensim | COVID-19 Open Research Dataset (CORD-19) | LDA | BY YASHVI PATEL
TOPIC MODELING | LATENT DIRICHLET ALLOCATION ( LDA ) | IN DEPTH | BY YASHVI PATEL
Просмотров 15 тыс.3 года назад
TOPIC MODELING | LATENT DIRICHLET ALLOCATION ( LDA ) | IN DEPTH | BY YASHVI PATEL
Kaggle M5 Forecasting | Time Series Forecasting using LSTM | BY YASHVI PATEL
Просмотров 2 тыс.3 года назад
Kaggle M5 Forecasting | Time Series Forecasting using LSTM | BY YASHVI PATEL
LSTM and GRU in depth | How it works | BY YASHVI PATEL
Просмотров 1,8 тыс.3 года назад
LSTM and GRU in depth | How it works | BY YASHVI PATEL
RNN simplified | Recurrent Neural Networks | BY YASHVI PATEL
Просмотров 5703 года назад
RNN simplified | Recurrent Neural Networks | BY YASHVI PATEL

Комментарии

  • @mohansharma8095
    @mohansharma8095 26 дней назад

    Hey @yashvi Do we use this datasets in pyspark also? Am I right?

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

    That's very useful content!!

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

    Why reduce the count by 1? Any intuitive explanation? And what is the outcome of this algorithm? How to interpret it?

  • @user-bs6ll3in3x
    @user-bs6ll3in3x 2 месяца назад

    Thank you @Yashvi Patel, this is honestly one of the simplest explanation of LDA that's available on RUclips

  • @suzzay9653
    @suzzay9653 4 месяца назад

    can you provide link to dataset please?

  • @multitaskprueba1
    @multitaskprueba1 4 месяца назад

    You are a genius! Fantastic video! Thanks!

  • @0777deep
    @0777deep 4 месяца назад

    You are good man! Amazing!! Thank you so much.😊

  • @Baking_Blitz
    @Baking_Blitz 4 месяца назад

    use urdu instead of english for better understanding

  • @Baking_Blitz
    @Baking_Blitz 4 месяца назад

    instead of reading explain it

  • @KA00_7
    @KA00_7 5 месяцев назад

    Very well explained , thank you

  • @rohankamble6424
    @rohankamble6424 5 месяцев назад

    Stupid video

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

    Hi, I was wondering how the topics are initially defined and given a document of thousands of words, how do we decide how many topics there is or how large (word counts) a topic is? Thanks!

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

    Great guide.

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

    Very good points. I have a problem where i have images of very large size and could not load even single images for training with batch size one. Please suggest on this

  • @srishtichaurasia7402
    @srishtichaurasia7402 9 месяцев назад

    The calculations appear to be wrong

  • @ramendrachaudhary9784
    @ramendrachaudhary9784 9 месяцев назад

    This is really good

  • @ramendrachaudhary9784
    @ramendrachaudhary9784 9 месяцев назад

    Good explanation. Well done

  • @NguyenTran-eq2wg
    @NguyenTran-eq2wg 10 месяцев назад

    Thanks for the extremely easy to follow tutorial!

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

    great explanation

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

    Hi, thanks for this clear example. The same sample project can deploy directly on cloud run? Or needs to change the connection function to Cloud Sql?

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

    Hello Yashvi mam your video was of great help. How do I load a large file to cnn for example a 64 x 100000 . Can it be separated into batches

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

    Thank you!

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

    What about using cloud services, please make a video on that topic too🙂,

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

    thank you so much

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

    Great video, very informative , please make more video like this

  • @moulee007
    @moulee007 2 года назад

    how are you able to load the whole dataframe in the train variable... its not working with large datasets

    • @1408vs
      @1408vs 2 года назад

      yes

    • @1408vs
      @1408vs 2 года назад

      use nrows to limit the number of rows that you load. train=pd.read_csv('../input/amex-default-prediction/train_data.csv', nrows=5000) with this you can check datatypes

  • @harshjadhav8536
    @harshjadhav8536 2 года назад

    I had this problems at kaggle and also came across your id in kaggle, kind of surprised to find this video here, you helped me clear my doubts a bit, thanks mam!

  • @abhbk66
    @abhbk66 2 года назад

    I'm surprised that this video is not popular, Thank you very much for your help.

  • @kaxxamhinna5044
    @kaxxamhinna5044 2 года назад

    Thank you very much for sharing your work! God bless

  • @kaianchan7768
    @kaianchan7768 2 года назад

    Can you explain a bit on these attributes 'd_1', 'd_2', ... 'd_1917', I am not really understand what they are. Thanks!

  • @arnabdas6572
    @arnabdas6572 2 года назад

    My pc has only 4Gb RAM.

  • @rajkushwahar
    @rajkushwahar 2 года назад

    Nice but explain step by step

  • @RAHULKUMAR-sr8fk
    @RAHULKUMAR-sr8fk 2 года назад

    by using vaex library

  • @thepresistence5935
    @thepresistence5935 2 года назад

    Crispy video, Thanks learned a lot!

  • @HoneyofKnowledge
    @HoneyofKnowledge 2 года назад

    Amazing! I always wondered about this problem but never thought the solution could be this easy!

  • @thepresistence5935
    @thepresistence5935 2 года назад

    Why specifically gray scale, why not 3 channels

  • @nikhil_somani
    @nikhil_somani 2 года назад

    Hi Yashvi, Great work with videos delivered, suggestion to make your cam view in a round view at bottom right or content images should be adjusted in that way as content is not visible due to that somewhere.

    • @YashviPatel
      @YashviPatel 2 года назад

      Thank you for highlighting , I will keep that in mind in future videos.

  • @pramodk4565
    @pramodk4565 2 года назад

    Such an underrated video. Keep the great work going

  • @tuneinsight8497
    @tuneinsight8497 2 года назад

    Hi yashvi , can you mentor me on one project related to document intelligence using nlp . I have just started nlp.

  • @archilpatel
    @archilpatel 2 года назад

    Hi Yashvi, I am 4th year engineering student trying my hands in Machine Learning and Data science. Can you please give me a roadmap for machine learning? I am completely newbie please suggest me something

  • @adedamolaadeniran8782
    @adedamolaadeniran8782 2 года назад

    Hi Yashvi, Just curious? why do you transform an already transformed dataset ? The train_df was transformed earlier and you transformed again during test?

  • @narasimhamurthy4791
    @narasimhamurthy4791 2 года назад

    Happiness on your face one the app works as expected :)

  • @srikantdhondi
    @srikantdhondi 2 года назад

    os.environ.get('CLOUD_SQL_USERNAME') returns 'None', any suggestions why?

  • @srikantdhondi
    @srikantdhondi 2 года назад

    I was following your instructions,but could not move forward due this error, I am unable to connect Python's Flask App with MySQL DB instance on Cloud Shell Editior (Google Cloud Platform). Getting the below error: (2003, "Can't connect to MySQL server on 'localhost' ([Errno 2] No such file or directory)") Traceback (most recent call last): Could you suggest how to resolve Db connection issues?

  • @sidsoni15
    @sidsoni15 2 года назад

    Nice Video, Thank you so much for this much information

  • @sidsoni15
    @sidsoni15 2 года назад

    nice work

  • @arpitbharti2458
    @arpitbharti2458 2 года назад

    Hi Yashvi, nice video Can you make a video of which course you opted for learning data science and your journey to get selecting in google. Will be very helpful.

  • @kundansrikanthkaki3123
    @kundansrikanthkaki3123 2 года назад

    Hi the doc which was attached has been deleted. Can you please re-attach the document. Thanks in advance.

    • @YashviPatel
      @YashviPatel 2 года назад

      reattched . sorry for inconvenience . Thank you

  • @mohitjoshi4209
    @mohitjoshi4209 2 года назад

    Hey!, the document link that you shared is deleted. Kindly share again

  • @Suraj-wq9jn
    @Suraj-wq9jn 2 года назад

    The link to Google Sheets is having a problem. can you please pin it again?