The Research Scientist Pod
  • Home
  • About Me
  • Blog
  • My account
  • Online Courses
    • Top Online Courses for Data Science
    • Top Online Courses for Machine Learning
    • Top Online Python Courses for Data Science
    • Top Online R Courses for Data Science
  • Publications
  • Resources
  • Sign-Up
  • Useful Links
    • Cookie Policy
    • Disclaimer
    • Privacy Policy
    • Terms & Conditions
  • C++
  • DSA
Select Page

How to Solve Python ValueError: invalid literal for int() with base 10 Solution

by Suf | Dec 4, 2021 | Data Science, Programming, Python, Tips

Invalid literal for int() with base 10 occurs when you try to convert an invalid object into an integer. Python is good at converting between different data types. When using the int() function, we must follow a specific set of rules. If we do not follow these rules,...

How to Get a Substring From a String in Python

by Suf | Dec 1, 2021 | Data Science, Programming, Python, Tips

Table of contentsWhat is a String?What is a Substring in Python?Using split()Using [start:]Using [:end]Using [start:end:step]Using List ComprehensionCheck if Substring Exists in SubstringSimilarities Between StringsPython String ComparisonSummary What is a String? A...

Python TypeError: can only concatenate str (not “int”) to str Solution

by Suf | Nov 30, 2021 | Data Science, Programming, Python, Tips

If we try to concatenate an integer with a string, we will raise the error “TypeError: can only concatenate str (not “int”) to str”. This error occurs because you can only concatenate strings with other strings. In this tutorial, we will go through the...

How to Calculate Cosine Similarity in Python

by Suf | Nov 27, 2021 | Data Science, Programming, Python, Tips

Table of contentsWhat is Cosine Similarity?How to Calculate Cosine SimilarityCosine DistanceVisual Description of Cosine SimilarityNumerical Example of Cosine SimilarityPython Example of Cosine SimilarityDifferences Between Cosine and Jaccard SimilaritySoft Cosine...

How to Calculate Jaccard Similarity in Python

by Suf | Nov 25, 2021 | Data Science, Programming, Python, Tips

Understanding the similarity between two objects is a universal problem. In machine learning, you can use similarity measures for various issues. These include object detection, classification and segmentation tasks in computer vision and similarity between text...

Top 12 Python Libraries for Data Science and Machine Learning

by Suf | Nov 19, 2021 | Data Science, Machine Learning, Python, Tips

Machine learning is the science of programming a computer to learn from different data and perform inference. Yesteryear, machine learning tasks involved manual coding all of the algorithms and mathematical and statistical formulae. Nowadays, we have fantastic...
« Older Entries
Next Entries »
  • Privacy Policy
  • Terms & Conditions
  • Cookie Policy
  • Disclaimer
  • C++
  • Python
  • R
  • Rust