Machine Translation and Multilinguality in August 2022
Machine Translation and Multilinguality in August 2022 | Jindřich’s blog
Read moreDeep Learning, NLP, NMT, AI, ML
Machine Translation and Multilinguality in August 2022 | Jindřich’s blog
Read moreOne of the strengths of Python is that it comes with batteries included: it has a rich and versatile standard library that makes it one of the best programming languages for writing scripts for the command line. But, if you write scripts for the command line, then you also need to provide a good command line interface, which you can create with the Python argparse library. In this video course, you’ll learn: What the Python argparse library is, and why […]
Read moreIn August 2022, Python inched closer to the 3.11 release, pandas introduced enhancement proposals, various packages saw new releases, Python extended its lead at the top of the TIOBE index, and PyPI battled malware. Read on for more details about what happened in the world of Python in August 2022! Python Has PEPs, NumPy Has NEPs, pandas Now Has PDEPs The first pandas enhancement proposal (PDEP) was submitted on August 3, 2022, and was entitled Purpose and guidelines. Enhancement proposals […]
Read moreOne of the problems business leaders face in communicating with their technical counterparts is trying to describe their AI problem. To simplify some of the communication, here are some common AI problem types. Try to map AI opportunities at hand to these common problem types. Note that the problem types often overlap—but that’s ok. The key is to identify problem types that most closely match the task at hand when communicating with your AI and data science experts. Common AI […]
Read moreWhen it comes to software automation, many teams turn to AI as their potential answer. AI in the form of machine learning or NLP may be an excellent solution to a problem. But did you know that the best way to start AI initiatives is to start with no AI at all? This may seem counterintuitive, but there’s a simple reason for it. It’s because you may not be ready for AI as a solution. There could be several missing elements that’ll prevent you from seeing success with AI if pursued prematurely. When it comes to AI, it’s not far-fetched to […]
Read moreWe’ve all heard of sentiment analysis, but what exactly is it and what can it do for your brand, your business, and how can you get started with it? What is Sentiment Analysis? Sentiment analysis relates to analyzing content such as social media comments, customer feedback, employee feedback, and even facial expressions in images to render sentiment orientation. These sentiments can be as broad as just saying that the specific content is from a “detractor” or “promoter,” or it can be […]
Read moreThe Python language is in constant development. A new version is released annually in October to great fanfare. Before these stable releases, you can preview the new features by installing a pre-release of Python. Volunteers worldwide work on developing Python by updating the documentation, reporting issues, suggesting and discussing improvements, fixing bugs, and implementing new features. You can join this work and contribute to the efforts. The best way to start getting involved in the development of Python is to […]
Read moreFunctions are the building blocks of almost every Python program. They’re where the real action takes place! In your Python Basics journey, you’ve probably encountered functions such as print(), len(), and round(). These are all built-in functions because they come built into the Python language itself. You can also create user-defined functions that perform specific tasks. Functions break code into smaller chunks and are great for defining actions that a program will execute several times throughout your code. Instead of […]
Read moreEven though web and mobile applications appear to have taken over the software development market, there’s still demand for traditional graphical user interface (GUI) desktop applications. If you’re interested in building these kinds of applications in Python, then you’ll find a wide variety of libraries to choose from. They include Tkinter, wxPython, PyQt, PySide, and a few others. In this tutorial, you’ll learn the basics of building GUI desktop applications with Python and PyQt. For this tutorial, you’ll create a […]
Read moreIn this video course, you’ll build a URL shortener with Python and FastAPI. URLs can be extremely long and not user-friendly. This is where a URL shortener can come in handy. A URL shortener reduces the number of characters in a URL, making it easier to read, remember, and share. By following this step-by-step project, you’ll build a URL shortener with Python and FastAPI. At the end of this course, you’ll have a fully functional API-driven web app that creates […]
Read more