Python for Data Analysis Part-4
Universal Functions: Fast Element-Wise Array Functions A universal function, or ufunc, is a function that performs element-wise operations on data in ndarrays. You can think of them as fast vectorized…
Universal Functions: Fast Element-Wise Array Functions A universal function, or ufunc, is a function that performs element-wise operations on data in ndarrays. You can think of them as fast vectorized…
Boolean Indexing Let’s consider an example where we have some data in an array and an array of names with duplicates. I’m going to use here the randn function in…
Agenda MLOps is enabling machine learning applications in production at scale. MLOps Through 2023, atleast 50% of the IT leaders will scuffle to move their AI predictive projects from proof…
Basic Indexing and Slicing NumPy array indexing is a rich topic, as there are many ways you may want to select a subset of your data or individual elements. One-dimensional…
NumPy Basics: Arrays and Vectorized Computation NumPy, short for Numerical Python, is one of the most important foundational packages for numerical computing in Python. Most computational packages providing scientific functionality…
Network intrusion is a growing threat with potentially severe impacts, which can be damaging in multiple ways to network infrastructures and digital/ intellectual assets in the cyberspace. The approach most…
Classical Convolutional Neural Networks[CNN] Classical CNNs can recognize a person, a car, a building, an animal, a bird, and also can distinguish among these as our eyes and brain do.…
Integration of ML, NLP using RASA NLU What is RASA NLU? Rasa NLU is an open-source NLP library for intent classification and entity extraction in chatbots. Why Should I use…
Tokenization It is a simple concept where we split a text into meaningful segments. Similarity Using GloVe Knowing similarity between two sentences/words helps a lot. GloVe helps in finding similarity.…
Agenda Data collection can be manual or electronic. Web scrapping is the electronic or digital way to collect data from websites in structured formats like CSV, JSON or XML. Some…