Introduction to Natural Language Processing (NLP)
Table of Contents
Introduction to Natural Language Processing (NLP)
...
https://pyimagesearch.com/2022/06/27/introduction-to-natural-language-processing-nlp/
Table of Contents
Introduction to Natural Language Processing (NLP)
...
https://pyimagesearch.com/2022/06/27/introduction-to-natural-language-processing-nlp/
PyImageSearch
Introduction to Natural Language Processing (NLP) - PyImageSearch
A brief introduction to the world of Natural Language Processing.
karpathy / minGPT
A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training
https://github.com/karpathy/minGPT
A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training
https://github.com/karpathy/minGPT
GitHub
GitHub - karpathy/minGPT: A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training
A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training - karpathy/minGPT
Using GPT-3 to explain how code works
One of my favourite uses for the GPT-3 AI language model is generating explanations of how code works. It’s shockingly effective at this: its training set clearly include a vast amount of source code.
https://simonwillison.net/2022/Jul/9/gpt-3-explain-code/
One of my favourite uses for the GPT-3 AI language model is generating explanations of how code works. It’s shockingly effective at this: its training set clearly include a vast amount of source code.
https://simonwillison.net/2022/Jul/9/gpt-3-explain-code/
Simon Willison’s Weblog
Using GPT-3 to explain how code works
One of my favourite uses for the GPT-3 AI language model is generating explanations of how code works. It’s shockingly effective at this: its training set clearly include a vast …
Stop using “pip freeze” for your Python projects
Photo by Dev Benjamin on UnsplashA discussion into why
https://towardsdatascience.com/stop-using-pip-freeze-for-your-python-projects-9c37181730f9
Photo by Dev Benjamin on UnsplashA discussion into why
pip freeze
is not as cool when it comes to ...https://towardsdatascience.com/stop-using-pip-freeze-for-your-python-projects-9c37181730f9
Medium
Stop using “pip freeze” for your Python projects
A discussion into why `pip freeze` is not as cool when it comes to managing Python dependencies
Logging in Python: A Developer’s Guide
In this tutorial, you’ll learn how to set up logging in Python using the built-in logging module. You’ll learn the basics of logging, logging variable values and exceptions, configuring custom loggers and formatters, and more.
https://blog.sentry.io/2022/07/19/logging-in-python-a-developers-guide/
In this tutorial, you’ll learn how to set up logging in Python using the built-in logging module. You’ll learn the basics of logging, logging variable values and exceptions, configuring custom loggers and formatters, and more.
https://blog.sentry.io/2022/07/19/logging-in-python-a-developers-guide/
Code From Anywhere: Dev Containers and Github Codespaces
Because VS Code can run in the browser, Dev Containers, along with Github Codespaces, also allow you to develop from almost anywhere. They’re great for standardizing development across a team. They can also make working on several repos at once much easier because each repo can have its own specific environment for development.
https://earthly.dev/blog/devcontianers/
Because VS Code can run in the browser, Dev Containers, along with Github Codespaces, also allow you to develop from almost anywhere. They’re great for standardizing development across a team. They can also make working on several repos at once much easier because each repo can have its own specific environment for development.
https://earthly.dev/blog/devcontianers/
Earthly Blog
Code From Anywhere: Dev Containers and Github Codespaces
We recently started using Dev Containers and Codespaces for development on our Jekyll blog here at Earthly. We have a lot of different plugins and ...
TinyFlux
The tiny time series database optimized for your happiness.
https://github.com/citrusvanilla/tinyflux
The tiny time series database optimized for your happiness.
https://github.com/citrusvanilla/tinyflux
GitHub
GitHub - citrusvanilla/tinyflux: The tiny time series database optimized for your happiness.
The tiny time series database optimized for your happiness. - citrusvanilla/tinyflux
PRegEx
PRegEx is a Python package that can be used in order to construct Regular Expression patterns in a more human-friendly way.
https://github.com/manoss96/pregex
PRegEx is a Python package that can be used in order to construct Regular Expression patterns in a more human-friendly way.
https://github.com/manoss96/pregex
GitHub
GitHub - manoss96/pregex: PRegEx - Programmable Regular Expressions
PRegEx - Programmable Regular Expressions. Contribute to manoss96/pregex development by creating an account on GitHub.
neural-compressor
An open-source Python library supporting popular model compression techniques on all mainstream deep learning frameworks (TensorFlow, PyTorch, ONNX Runtime, and MXNet)
https://github.com/intel/neural-compressor
An open-source Python library supporting popular model compression techniques on all mainstream deep learning frameworks (TensorFlow, PyTorch, ONNX Runtime, and MXNet)
https://github.com/intel/neural-compressor
GitHub
GitHub - intel/neural-compressor: SOTA low-bit LLM quantization (INT8/FP8/INT4/FP4/NF4) & sparsity; leading model compression techniques…
SOTA low-bit LLM quantization (INT8/FP8/INT4/FP4/NF4) & sparsity; leading model compression techniques on TensorFlow, PyTorch, and ONNX Runtime - intel/neural-compressor
Skyplane
Blazing fast bulk data transfers between any cloud.
https://github.com/skyplane-project/skyplane
Blazing fast bulk data transfers between any cloud.
https://github.com/skyplane-project/skyplane
GitHub
GitHub - skyplane-project/skyplane: 🔥 Blazing fast bulk data transfers between any cloud 🔥
🔥 Blazing fast bulk data transfers between any cloud 🔥 - skyplane-project/skyplane
Frelatage
A Greybox and Coverage-based library to fuzz Python applications.
https://github.com/Rog3rSm1th/Frelatage
A Greybox and Coverage-based library to fuzz Python applications.
https://github.com/Rog3rSm1th/Frelatage
GitHub
GitHub - Rog3rSm1th/frelatage: Coverage-based fuzzer for python applications
Coverage-based fuzzer for python applications. Contribute to Rog3rSm1th/frelatage development by creating an account on GitHub.
Can anyone explain the differences of Conda vs Pip?
https://www.reddit.com/r/Python/comments/w564g0/can_anyone_explain_the_differences_of_conda_vs_pip/
https://www.reddit.com/r/Python/comments/w564g0/can_anyone_explain_the_differences_of_conda_vs_pip/
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
3 Simple Ideas From Functional Programming To Improve Your Code
Functional programming is a complex topic to dive into. However, there are 3 simple ideas from functional/declarative code that you can apply to your own code today - without becoming a Haskell expert! This video dives into the details and show you a few examples in Python of how you can use these ideas in both object-oriented and functional/procedural code.
https://www.youtube.com/watch?v=4B24vYj_vaI
Functional programming is a complex topic to dive into. However, there are 3 simple ideas from functional/declarative code that you can apply to your own code today - without becoming a Haskell expert! This video dives into the details and show you a few examples in Python of how you can use these ideas in both object-oriented and functional/procedural code.
https://www.youtube.com/watch?v=4B24vYj_vaI
YouTube
Write AWESOME Code With These 3 Functional Programming Concepts
💡 Learn how to design great software in 7 steps: https://arjan.codes/designguide.
Functional programming is a complex topic to dive into. However, there are 3 simple ideas from functional/declarative code that you can apply to your own code today - without…
Functional programming is a complex topic to dive into. However, there are 3 simple ideas from functional/declarative code that you can apply to your own code today - without…
django-readers
A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.
https://github.com/dabapps/django-readers/
A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects.
https://github.com/dabapps/django-readers/
GitHub
GitHub - dabapps/django-readers: A lightweight function-oriented toolkit for better organisation of business logic and efficient…
A lightweight function-oriented toolkit for better organisation of business logic and efficient selection and projection of data in Django projects. - GitHub - dabapps/django-readers: A lightweight...
htag
A new python library to create UI (or UI toolkit), which can be rendered in anything which can render html/js/css.
https://github.com/manatlan/htag
A new python library to create UI (or UI toolkit), which can be rendered in anything which can render html/js/css.
https://github.com/manatlan/htag
GitHub
GitHub - manatlan/htag: Python3 GUI toolkit for building "beautiful" applications for mobile, web, and desktop from a single codebase
Python3 GUI toolkit for building "beautiful" applications for mobile, web, and desktop from a single codebase - manatlan/htag
Build a Passwordless Authentication System Using Django, Twilio Verify, and SendGrid
In this tutorial, you will learn how to create a passwordless authentication system using Twilio Verify, SendGrid, Django, and Python. The proposed authentication system will require users to verify their identity using a one-time password.
https://www.twilio.com/blog/passwordless-authentication-system-django-twilio-verify-sendgrid
In this tutorial, you will learn how to create a passwordless authentication system using Twilio Verify, SendGrid, Django, and Python. The proposed authentication system will require users to verify their identity using a one-time password.
https://www.twilio.com/blog/passwordless-authentication-system-django-twilio-verify-sendgrid
Twilio Blog
Build a Passwordless Authentication System Using Django, Twilio Verify, and SendGrid
In this tutorial, learn how to create a passwordless authentication system using Twilio Verify, SendGrid, Django, and Python to verify identity with an OTP.
Performance comparison: counting words in Python, C/C++, Awk, Rust, and more
https://benhoyt.com/writings/count-words/
https://benhoyt.com/writings/count-words/
Benhoyt
Performance comparison: counting words in Python, Go, C++, C, AWK, Forth, and Rust
Performance comparison of counting and sorting word frequencies in various languages (Python, Go, C++, C, AWK, Forth, and Rust)