Refurbishing and modernizing Python codebases with refurb
Photo by Roberto
Read moreDeep Learning, NLP, NMT, AI, ML
Photo by Roberto
Read moreMuch of the Python code you’ll write is unconditional. That is, the code does not make any choices. Every line of code is executed in the order that it’s written or in the order that functions are called, with possible repetitions inside loops. In this course, you’ll learn how to use conditional logic to write programs that perform different actions based on different conditions. Paired with functions and loops, conditional logic allows you to write complex programs that can handle […]
Read moreMany programmers, regardless of their specialty, deal with text on a daily basis. For example, web developers work with text input from web forms. Data scientists process text to extract data and perform tasks like sentiment analysis, which can help identify and classify opinions in a body of text. Collections of text in Python are called strings. Special functions called string methods are used to manipulate strings. There are string methods for changing a string from lowercase to uppercase, removing […]
Read moreLast week I collaborated with a team of two other fellows from the University of North Florida in an AI for Good Hackathon organized by JEA and sponsored by Microsoft and FIS to solve one of the two presented problems for the hackathon — on Vehicle Route Optimization.
Read morePython’s enum module provides the Enum class, which allows you to create enumeration types. To create your own enumerations, you can either subclass Enum or use its functional API. Both options will let you define a set of related constants as enum members. In the following sections, you’ll learn how to create enumerations in your code using the Enum class. You’ll also learn how to set automatically generated values for your enums and how to create enumerations containing alias and […]
Read moreSeveral years ago, a product manager at a tech company had a data collection problem: to scrape software security vulnerability data from multiple web sources, consolidate the vulnerabilities and store them in a database. As this was an automation problem relating to data, the product manager (PM) immediately concluded that this was a machine learning problem. The PM then “hired” the company’s data science team to build ML models to solve the problem. The data science team agreed to the […]
Read moreVisualization of the Perceptron from the Asimov Institute.
Read moreJAX is written in pure Python, but it depends on XLA, which needs to be installed as the jaxlib package. Use the following guide to install JAX using pip or conda
Read more