Mastering Support Vector Machines with Python and Scikit-Learn

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • Are you ready to delve into the world of machine learning algorithms and enhance your understanding of SVM? In this comprehensive tutorial, we'll guide you through the ins and outs of Support Vector Machines, one of the most powerful and versatile tools in the machine learning toolbox.
    Interested in discussing a Data or AI project? Feel free to reach out via email or simply complete the contact form on my website.
    📧 Email: ryannolandata@gmail.com
    🌐 Website & Blog: ryannolandata....
    🍿 WATCH NEXT
    Scikit-Learn and Machine Learning Playlist: • Scikit-Learn Tutorials...
    Random Forest Classifier: • Random Forest Algorith...
    Extra Trees Classifier: • Extra Trees Classifier...
    Logistic Regression: • Hands-On Machine Learn...
    MY OTHER SOCIALS:
    👨‍💻 LinkedIn: / ryan-p-nolan
    🐦 Twitter: / ryannolan_
    ⚙️ GitHub: github.com/Rya...
    🖥️ Discord: / discord
    📚 *Data and AI Courses: datacamp.pxf.i...
    📚 *Practice SQL & Python Interview Questions: stratascratch....
    WHO AM I?
    As a full-time data analyst/scientist at a fintech company specializing in combating fraud within underwriting and risk, I've transitioned from my background in Electrical Engineering to pursue my true passion: data. In this dynamic field, I've discovered a profound interest in leveraging data analytics to address complex challenges in the financial sector.
    This UA-cam channel serves as both a platform for sharing knowledge and a personal journey of continuous learning. With a commitment to growth, I aim to expand my skill set by publishing 2 to 3 new videos each week, delving into various aspects of data analytics/science and Artificial Intelligence. Join me on this exciting journey as we explore the endless possibilities of data together.
    *This is an affiliate program. I may receive a small portion of the final sale at no extra cost to you.

КОМЕНТАРІ • 9

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

    Hey guys I hope you enjoyed the video! If you did please subscribe to the channel!
    Join our Data Science Discord Here: discord.com/invite/F7dxbvHUhg
    If you want to watch a full course on Machine Learning check out Datacamp: datacamp.pxf.io/XYD7Qg
    Want to solve Python data interview questions: stratascratch.com/?via=ryan
    I'm also open to freelance data projects. Hit me up at ryannolandata@gmail.com
    *Both Datacamp and Stratascratch are affiliate links.

  • @pmnt98
    @pmnt98 Місяць тому +3

    mean1 = 55
    std_dev1 = 10
    num_samples = 500
    column1_numbers = np.random.normal(mean1, std_dev1, num_samples)
    column1_numbers = np.clip(column1_numbers, 30, 120)
    column1_numbers = np.round(column1_numbers).astype(int)
    mean2 = 18
    std_dev2 = 3
    column2_numbers = np.random.normal(mean2, std_dev2, num_samples)
    column2_numbers = np.clip(column2_numbers, 12, 26)
    column2_numbers = np.round(column2_numbers).astype(int)
    column3_numbers = np.random.randint(2, size=num_samples)
    column3_numbers[column1_numbers > mean1] =1
    data = {"Miles_Per_week": column1_numbers,
    "Farthest_run": column2_numbers,
    "Qualified_Boston_Marathon": column3_numbers}
    df = pd.DataFrame(data)

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

    Hello Ryan. Thanks for the video. I can’t seem to find where you put down the code for the “data generation” and matplotlib. Could you help with that. Thanks

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

    very useful

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

    Thanks for the video, could you by any chance cover glms or bayesian linear regression?

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

      Yes in the future. Have about a months worth of videos currently being built for the scikit course I’ve been working on

  • @henry-o8i
    @henry-o8i 6 місяців тому

    Hey wonder if you have the code for the data so we can follow along?

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

      I don’t have the code atm, but I plan on uploading all the videos code to my website in the near future