LLMs for Everyone: Running LangChain and a MistralAI 7B Model in Google Colab
https://towardsdatascience.com/llms-for-everyone-running-langchain-and-a-mistralai-7b-model-in-google-colab-246ca94d7c4d
https://towardsdatascience.com/llms-for-everyone-running-langchain-and-a-mistralai-7b-model-in-google-colab-246ca94d7c4d
Medium
LLMs for Everyone: Running LangChain and a MistralAI 7B Model in Google Colab
Experimenting with Large Language Models for free
Design Patterns with Python for Machine Learning Engineers: Prototype
https://towardsdatascience.com/design-patterns-with-python-for-machine-learning-engineers-prototype-fcc1358a862d
https://towardsdatascience.com/design-patterns-with-python-for-machine-learning-engineers-prototype-fcc1358a862d
Medium
Design Patterns with Python for Machine Learning Engineers: Prototype
Learn how to use the Prototype design pattern to enhance your code
Why is print not recommended in linters?
https://medium.com/@ayush-thakur02/why-is-print-not-recommended-in-linters-4287fc6c7b26
https://medium.com/@ayush-thakur02/why-is-print-not-recommended-in-linters-4287fc6c7b26
Medium
Why is print not recommended in linters?
If you are a Python developer, you might have used the print function to debug your code or display some output. It is a handy tool that…
How do you start to learn Machine Learning by yourself?
https://medium.com/@fernandosanju53/how-do-you-start-to-learn-machine-learning-by-yourself-83e213ee33e5
https://medium.com/@fernandosanju53/how-do-you-start-to-learn-machine-learning-by-yourself-83e213ee33e5
Medium
How do you start to learn Machine Learning by yourself?
Learning machine learning on your own can be a rewarding journey. Here’s a step-by-step guide to help you get started:
The Crucial Metrics in Model Evaluation: Beyond Accuracy
https://medium.com/@sabbasi3/the-crucial-metrics-in-model-evaluation-beyond-accuracy-117c381de9a0
https://medium.com/@sabbasi3/the-crucial-metrics-in-model-evaluation-beyond-accuracy-117c381de9a0
Medium
The Crucial Metrics in Model Evaluation: Beyond Accuracy
In the world of machine learning, accuracy is often hailed as the ultimate measure of a model’s performance. However, there are scenarios…
Enhancing Formula 1 Data Analysis: Adding Pit Stop Information with FastF1
https://medium.com/@sabbasi3/enhancing-formula-1-data-analysis-adding-pit-stop-information-with-fastf1-7f0b09361053
https://medium.com/@sabbasi3/enhancing-formula-1-data-analysis-adding-pit-stop-information-with-fastf1-7f0b09361053
Medium
Enhancing Formula 1 Data Analysis: Adding Pit Stop Information with FastF1
Formula 1, the pinnacle of motorsport, offers a treasure trove of data for avid analysts and enthusiasts. With the FastF1 Python library…
Calculate Candidate Compatibility Percentage for a Job Position (NLP)
https://patriziacastagnod.medium.com/calculate-candidate-compatibility-percentage-for-a-job-position-nlp-ccf67b9000ba
https://patriziacastagnod.medium.com/calculate-candidate-compatibility-percentage-for-a-job-position-nlp-ccf67b9000ba
Medium
Calculate Candidate Compatibility Percentage for a Job Position (NLP)
Utilizing NLP and ML Techniques to Assess Candidate Fit for Job Roles
Coding Odyssey #005 : A Daily Dose of Problem Solving
https://medium.com/@mimahmetavcil/coding-odyssey-005-a-daily-dose-of-problem-solving-e3468e5755b9
https://medium.com/@mimahmetavcil/coding-odyssey-005-a-daily-dose-of-problem-solving-e3468e5755b9
Medium
Coding Odyssey #005 : A Daily Dose of Problem Solving
A palindrome number is one that remains the same when its digits are reversed. For example, 121, 1331, and 454 are all examples of…
Joining Data with FastF1 and merge_asof(): A Guide
https://medium.com/@sabbasi3/joining-data-with-fastf1-and-merge-asof-a-guide-8d083922e60d
https://medium.com/@sabbasi3/joining-data-with-fastf1-and-merge-asof-a-guide-8d083922e60d
Medium
Joining Data with FastF1 and merge_asof(): A Guide
Formula 1, with its lightning-fast cars and cutting-edge technology, is a sport that demands precise analysis. For enthusiasts and data…
Project Natural Language Processing With Python
https://medium.com/@hedriss10/project-natural-language-processing-with-python-44ecf3d80d39
https://medium.com/@hedriss10/project-natural-language-processing-with-python-44ecf3d80d39
Medium
Project Natural Language Processing With Python
Text Analysis with Supervised Learning
Two Kinds of Threads Pools, and Why You Need Both
https://pythonspeed.com/articles/two-thread-pools/
https://pythonspeed.com/articles/two-thread-pools/
Python⇒Speed
Two kinds of threads pools, and why you need both
How big should your thread pool be? It depends on your use case.
Talking to Notebooks With Jupyter AI
https://talkpython.fm/episodes/show/440/talking-to-notebooks-with-jupyter-ai
https://talkpython.fm/episodes/show/440/talking-to-notebooks-with-jupyter-ai
talkpython.fm
Talking to Notebooks with Jupyter AI
We all know that LLMs and generative AI has been working its way into many products. It's Jupyter's turn to get a really awesome integration. We have David Qiu here to tell us about Jupyter AI. Jupyter AI provides a user-friendly and powerful way to apply…
Welcoming the Supporting Developer in Residence
https://discuss.python.org/t/welcoming-the-supporting-developer-in-residence/39702
https://discuss.python.org/t/welcoming-the-supporting-developer-in-residence/39702
Discussions on Python.org
Welcoming the Supporting Developer in Residence
Hello there! When we were hiring for the Deputy Developer in Residence role sponsored by Bloomberg, we received an unexpected number of great applications. Ultimately, after an extensive interview process, the Steering Council and I chose Petr Viktorin.…
Ideas: Support Multiple Divisors in divmod()
https://discuss.python.org/t/support-multiple-divisors-in-divmod/33109
https://discuss.python.org/t/support-multiple-divisors-in-divmod/33109
Discussions on Python.org
Support multiple divisors in divmod()
What do you think about idea of supporting multiple divisors in divmod()? So instead of minutes, seconds = divmod(t, 60) hours, minutes = divmod(minutes, 60) days, hours = divmod(hours, 24) weeks, days = divmod(days, 7) you could write: weeks, days, hours…
Long-Term Vision for a Parallel Programming Model?
https://discuss.python.org/t/what-is-the-long-term-vision-for-a-parallel-python-programming-model/39190
https://discuss.python.org/t/what-is-the-long-term-vision-for-a-parallel-python-programming-model/39190
Discussions on Python.org
What is the Long-Term Vision for a Parallel Python Programming Model?
With PEP 703 and various ongoing projects to bring just-in-time compilation to CPython, I would like to ask what the long-term vision for a parallel Python programming model is. For context, I am asking this is an academic programming language implementation…
Running Python Parallel Applications With Sub Interpreters
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
https://tonybaloney.github.io/posts/sub-interpreter-web-workers.html
tonybaloney.github.io
Running Python Parallel Applications with Sub Interpreters
An exploration into the possibility of running a parallel application using sub interpreters