OCDevel
Machine Learning Guide
Machine learning audio course, teaching the fundamentals of machine learning and artificial intelligence. It covers intuition, models (shallow and deep), math, languages, frameworks, etc. Where your other ML resources provide the trees, I provide the forest. Consider MLG your syllabus, with highly-curated resources for each episode's details at ocdevel.com. Audio is a great supplement during exercise, commute, chores, etc.
Where to listen?
Podcasts in the app Replaio Radio Coming soonPodcasts are coming to the app soon. Install now and be the first to see a whole new take on podcasts
Episodes
MLA 009 Charting and Visualization Tools for Data Science 06.11.2018 24:43
Python charting libraries - Matplotlib, Seaborn, and Bokeh - explaining, their strengths from quick EDA to interactive, HTML-exported visualizations, and clarifies where D3.js fits as a JavaScript alternative for end-user applications. It also evaluates major software solutions like Tableau, Power BI, QlikView, and Excel, detailing how modern BI tools now integrate drag-and-drop analytics with emb...
MLA 008 Exploratory Data Analysis (EDA) 26.10.2018 25:07
Exploratory data analysis (EDA) sits at the critical pre-modeling stage of the data science pipeline, focusing on uncovering missing values, detecting outliers, and understanding feature distributions through both statistical summaries and visualizations, such as Pandas' info(), describe(), histograms, and box plots. Visualization tools like Matplotlib, along with processes including imputation an...
MLA 007 Jupyter Notebooks 16.10.2018 16:52
Jupyter Notebooks, originally conceived as IPython Notebooks, enable data scientists to combine code, documentation, and visual outputs in an interactive, browser-based environment supporting multiple languages like Python, Julia, and R. This episode details how Jupyter Notebooks structure workflows into executable cells - mixing markdown explanations and inline charts - which is essential for doc...
MLA 006 Salaries for Data Science & Machine Learning 19.07.2018 19:35
O'Reilly's 2017 Data Science Salary Survey finds that location is the most significant salary determinant for data professionals, with median salaries ranging from $134,000 in California to under $30,000 in Eastern Europe, and highlights that negotiation skills can lead to salary differences as high as $45,000. Other key factors impacting earnings include company age and size, job title, industry,...
MLA 005 Shapes and Sizes: Tensors and NDArrays 09.06.2018 27:18
Explains the fundamental differences between tensor dimensions, size, and shape, clarifying frequent misconceptions—such as the distinction between the number of features ("columns") and true data dimensions—while also demystifying reshaping operations like expand_dims, squeeze, and transpose in NumPy. Through practical examples from images and natural language processing, listeners learn how to m...
MLA 003 Storage: HDF, Pickle, Postgres 24.05.2018 17:46
Practical workflow of loading, cleaning, and storing large datasets for machine learning, moving from ingesting raw CSVs or JSON files with pandas to saving processed datasets and neural network weights using HDF5 for efficient numerical storage. It clearly distinguishes among storage options—explaining when to use HDF5, pickle files, or SQL databases—while highlighting how libraries like pandas,...
MLA 002 Numpy & Pandas 24.05.2018 18:10
NumPy enables efficient storage and vectorized computation on large numerical datasets in RAM by leveraging contiguous memory allocation and low-level C/Fortran libraries, drastically reducing memory footprint compared to native Python lists. Pandas, built on top of NumPy, introduces labelled, flexible tabular data manipulation—facilitating intuitive row and column operations, powerful indexing, a...
MLA 001 Degrees, Certificates, and Machine Learning Careers 24.05.2018 11:21
While industry-respected credentials like Udacity Nanodegrees help build a practical portfolio for machine learning job interviews, they remain insufficient stand-alone qualifications—most roles require a Master's degree as a near-hard requirement, especially compared to more flexible web development fields. A Master's, such as Georgia Tech's OMSCS, not only greatly increases employability but is...
MLG 029 Reinforcement Learning Intro 05.02.2018 43:21
Notes and resources: ocdevel.com/mlg/29 Try a walking desk to stay healthy while you study or work! Reinforcement Learning (RL) is a fundamental component of artificial intelligence, different from purely being AI itself. It is considered a key aspect of AI due to its ability to learn through interactions with the environment using a system of rewards and punishments. Links: openai/baselines r...
MLG 028 Hyperparameters 2 04.02.2018 51:07
Notes and resources: ocdevel.com/mlg/28 Try a walking desk to stay healthy while you study or work! More hyperparameters for optimizing neural networks. A focus on regularization, optimizers, feature scaling, and hyperparameter search methods. Hyperparameter Search Techniques Grid Search involves testing all possible permutations of hyperparameters, but is computationally exhaustive and suited...
MLG 027 Hyperparameters 1 28.01.2018 47:04
Full notes and resources at ocdevel.com/mlg/27 Try a walking desk to stay healthy while you study or work! Hyperparameters are crucial elements in the configuration of machine learning models. Unlike parameters, which are learned by the model during training, hyperparameters are set by humans before the learning process begins. They are the knobs and dials that humans can control to influence t...
MLG 026 Project Bitcoin Trader 27.01.2018 38:40
Try a walking desk to stay healthy while you study or work! Ful notes and resources at ocdevel.com/mlg/26 NOTE . This episode is no longer relevant, and tforce_btc_trader no longer maintained. The current podcast project is Gnothi. Episode Overview TForce BTC Trader Project: Trading Crypto Special: Intuitively highlights decisions: hypers, supervised v reinforcement, LSTM v CNN Crypto (v stock)...
MLG 025 Convolutional Neural Networks 30.10.2017 44:39
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/25 Filters and Feature Maps: Filters are small matrices used to detect visual features from an input image by applying them to local pixel patches, creating a 3D output called a feature map. Each filter is tasked with recognizing a specific pattern (e.g., edges, textures) in the input images. Con...
MLG 024 Tech Stack 07.10.2017 1:01:36
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/24 Hardware Desktop if you're stationary, as you'll get the best performance bang-for-buck and improved longevity; laptop if you're mobile. Desktops. Build your own PC, better value than pre-built. See PC Part Picker , make sure to use an Nvidia graphics card. Generally shoot for 2nd-best of CPUs...
MLG 023 Deep NLP 2 20.08.2017 43:04
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/23 Neural Network Types in NLP Vanilla Neural Networks (Feedforward Networks) : Used for general classification or regression tasks. Examples include predicting housing costs or classifying images as cat, dog, or tree. Convolutional Neural Networks (CNNs) : Primarily used for image-related tasks....
MLG 022 Deep NLP 1 29.07.2017 49:40
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/22 Deep NLP Fundamentals Deep learning has had a profound impact on natural language processing by introducing models like recurrent neural networks (RNNs) that are specifically adept at handling sequential data. Unlike traditional linear models like linear regression, RNNs can address the complex...
MLG 020 Natural Language Processing 3 23.07.2017 40:45
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/20 NLP progresses through three main layers: text preprocessing, syntax tools, and high-level goals, each building upon the last to achieve complex linguistic tasks. Text Preprocessing Text preprocessing involves essential steps such as tokenization, stemming, and stop word removal. These foundati...
MLG 019 Natural Language Processing 2 11.07.2017 1:05:54
Try a walking desk to stay healthy while you study or work! Notes and resources at ocdevel.com/mlg/19 Classical NLP Techniques: Origins and Phases in NLP History : Initially reliant on hardcoded linguistic rules, NLP's evolution significantly pivoted with the introduction of machine learning, particularly shallow learning algorithms, leading eventually to deep learning, which is the current sta...
MLG 018 Natural Language Processing 1 26.06.2017 58:08
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/18 Overview: Natural Language Processing (NLP) is a subfield of machine learning that focuses on enabling computers to understand, interpret, and generate human language. It is a complex field that combines linguistics, computer science, and AI to process and analyze large amounts of natural language data...
MLG 017 Checkpoint 04.06.2017 8:08
Try a walking desk to stay healthy while you study or work! At this point, browse #importance:essential on ocdevel.com/mlg/resources with the 45m/d ML, 15m/d Math breakdown.
MLG 016 Consciousness 21.05.2017 1:14:05
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/16 Inspiration in AI Development Early inspirations for AI development centered around solving challenging problems, but recent advancements like self-driving cars and automated scientific discoveries attract professionals due to potential economic automation and career opportunities. The Singularity The s...
MLG 015 Performance 07.05.2017 42:51
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/15 Concepts Performance Evaluation Metrics : Tools to assess how well a machine learning model performs tasks like spam classification, housing price prediction, etc. Common metrics include accuracy, precision, recall, F1/F2 scores, and confusion matrices. Accuracy : The simplest measure of performance, in...
MLG 014 Shallow Algos 3 23.04.2017 48:27
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/14 Anomaly Detection Systems Applications : Credit card fraud detection and server activity monitoring. Concept : Identifying outliers on a bell curve. Statistics : Central role of the Gaussian distribution (normal distribution) in detecting anomalies. Process : Identifying significant deviations from the mea...
MLG 013 Shallow Algos 2 09.04.2017 55:36
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/13 Support Vector Machines (SVM) Purpose : Classification and regression. Mechanism : Establishes decision boundaries with maximum margin. Margin : The thickness of the decision boundary, large margin minimizes overfitting. Support Vectors : Data points that the margin directly affects. Kernel Trick : Proj...
MLG 012 Shallow Algos 1 19.03.2017 53:36
Try a walking desk to stay healthy while you study or work! Full notes at ocdevel.com/mlg/12 Topics Shallow vs. Deep Learning : Shallow learning can often solve problems more efficiently in time and resources compared to deep learning. Supervised Learning : Key algorithms include linear regression, logistic regression, neural networks, and K Nearest Neighbors (KNN). KNN is unique as it is instan...
Similar podcasts
Replaio is not a podcast publisher; show names, artwork and audio belong to their authors and are distributed through public RSS feeds.