Enlightenment
Enlightenment
  • Видео 54
  • Просмотров 93 657
Architecting for success with Artificial Intelligence - Dr Steve Gustafson - CTO Noonum
#AutoML #MLOps #ArtificialIntelligence
Dr Steven Gustafson discusses what the difference is between success and failure of Artificial Intelligence projects in industry and presents a case study. He also introduces a framework for AutoML that he has invented and published.
Dr Steven Gustafson received his PhD in Computer Science and Artificial Intelligence, and shortly thereafter was awarded IEEE Intelligent System's "AI's 10 to Watch" for his work in algorithms that discover algorithms. For 10+ years at GE's corporate R&D center he was a leader in AI, successful technical lab manager, all while inventing and deploying state-of-the-art AI systems for almost every GE business, from GE Capita...
Просмотров: 250

Видео

R basics: File System - Variables - Vectors - Factors - Getting Help
Просмотров 822 года назад
#R #RProgramming #Vectors #Factors #Basics
Installing R, R Studio and R Packages
Просмотров 1722 года назад
R and R studio are widely used for statistics, data mining, optimisation and artificial intelligence.
Grammatical Evolution
Просмотров 2,8 тыс.3 года назад
This is a series of videos on Modern Optimisation methods. This lecture introduces Grammatical Evolution, an evolutionary automatic programming method to evolve computer programs in an arbitrary language. This lecture assumes familiarity with simulated evolution especially Genetic Algorithms. GP Bibliography: gpbib.cs.ucl.ac.uk/ A Field Guide to Genetic Programming By Poli, Langdon and McPhee F...
Particle Swarm Optimisation
Просмотров 10 тыс.3 года назад
#PSO #Swarm #ParticleSwarmOptimisation This is a series of videos on Modern Optimisation methods. This video introduces particle swarm optimisation. Predator Confusion Effect [1]: www.sciencedirect.com/science/article/pii/S0003347284802328 Many eyes hypothesis [2]: www.sciencedirect.com/science/article/pii/0003347295801499 Beni, G., Wang, J. (1993). "Swarm Intelligence in Cellular Robotic Syste...
Feature Selection With Genetic Algorithms - Code and Plots
Просмотров 17 тыс.3 года назад
#GeneticAlgorithms #FeatureSelection #Regression link to all the R code used: www.dropbox.com/sh/k8j696nfvjqp3h2/AAB2L3qgjZlf-_1beaWA_FC3a?dl=0 To extract the best linear model (alongside all its coefficients, and error analysis) use this code: www.dropbox.com/s/uxqr2dmioa30c53/getBestLmModel.R?dl=0 Linear Regression: ruclips.net/video/VtYqxjDhP7E/видео.html Research article (statistical signif...
Population Based Methods - Genetic Algorithms
Просмотров 3,4 тыс.3 года назад
#EvolutionaryAlgorithms #GeneticAlgorithms #Optimisation This is a series of lectures on Modern Optimisation Methods. “Exploration and exploitation in evolutionary algorithms: A survey” 2013. ACM Computing Surveys. dl.acm.org/citation.cfm?id=2480752
Single State Methods in Optimisation
Просмотров 1,2 тыс.3 года назад
#Optimisation #HillClimbing #SimulatedAnnealing This is a series of videos on modern optimisation, Genetic Algorithms and Evolutionary Algorithms.
Gradient Descent and Local Search
Просмотров 1,6 тыс.3 года назад
#EvolutionaryAlgorithms #GradientDescent #LocalSearch This is a series of short videos on Modern Optimisation methods such as Evolutionary Algorithms, Genetic Algorithms, and Genetic Programming.
Introduction to Modern Optimisation
Просмотров 2,6 тыс.3 года назад
#GeneticAlgorithms #EvolutionaryAlgorithms #Metaheuristics This is a series of short videos on Modern Optimisation methods. en.wikipedia.org/wiki/Mathematical_optimization Atari Game playing: link.springer.com/chapter/10.1007/978-3-319-55696-3_5
Linear Regression
Просмотров 4883 года назад
Regression: onlinecourses.science.psu.edu/stat501/node/250 Correlations - Pearson, Spearman, Kendal’s Tau: ruclips.net/video/IXJ1hXuo3HQ/видео.html ANOVA: onlinecourses.science.psu.edu/stat501/node/265 Based on the least squares criterion, which equation best summarizes the data? The sum of the squared prediction errors is 766.5 for the dashed line, while it is only 597.4 for the solid line. Th...
Correlations - Pearson, Spearman and Kendal's Tau
Просмотров 6043 года назад
Cancer mortality plots: onlinecourses.science.psu.edu/stat414/node/276 Statistical Hypotheses: ruclips.net/video/albAw5rMUkY/видео.html Parametric tests - Z-tests and t-tests: ruclips.net/video/2T7TAFl3zvA/видео.html Non-parametric tests : ruclips.net/video/hWHZz7yGbno/видео.html Anscombe's quartet: en.wikipedia.org/wiki/Correlation_and_dependence#Correlation_and_linearity Spurious Correlations...
Non parametric hypothesis testing
Просмотров 6573 года назад
Statistical Hypothesis: ruclips.net/video/albAw5rMUkY/видео.html Central Limit Theorem: ruclips.net/video/5O3FOVAlNfA/видео.html Descriptive Statistics: ruclips.net/video/RU0m22JJ1vQ/видео.html sphweb.bumc.bu.edu/otlt/mph-modules/bs/bs704_nonparametric/BS704_Nonparametric2.html Complete Exercise sphweb.bumc.bu.edu/otlt/mph-modules/bs/bs704_nonparametric/BS704_Nonparametric4.html Reject H0 if : ...
Hypothesis testing: Z-test and t-test
Просмотров 7253 года назад
Statistical Hypothesis: ruclips.net/video/albAw5rMUkY/видео.html Central Limit Theorem: ruclips.net/video/5O3FOVAlNfA/видео.html Descriptive Statistics: ruclips.net/video/RU0m22JJ1vQ/видео.html #Z-test (R code): z.test = function(a, mu, var){ zeta = (mean(a) - mu) / (sqrt(var / length(a))) return(zeta) } #Sample call a = c(65, 78, 88, 55, 48, 95, 66, 57, 79, 81) z.test(a, 75, 18) #Sample output...
Statistical Hypothesis
Просмотров 6493 года назад
Why Say Fail to Reject in a Hypothesis Test? www.thoughtco.com/fail-to-reject-in-a-hypothesis-test-3126424 Introduction: This is a series of videos that produces a university course on Applied Statistics. The link to video series is: ruclips.net/p/PLU98PJIZ0JfJHi1dnjpcHz6_Fy5zUOZg_ The topics covered are: Aggregating information; measures of central tendency. Spread of information; data distrib...
Sampling Distribution and Central Limit Theorem
Просмотров 5033 года назад
Sampling Distribution and Central Limit Theorem
Sampling and Surveying
Просмотров 6553 года назад
Sampling and Surveying
Standardising Normal Distribution
Просмотров 3623 года назад
Standardising Normal Distribution
Normal Distribution
Просмотров 4683 года назад
Normal Distribution
Poisson Distribution
Просмотров 3343 года назад
Poisson Distribution
Geometric Distribution
Просмотров 6073 года назад
Geometric Distribution
Binomial Distribution
Просмотров 7163 года назад
Binomial Distribution
Geometric Distributions
Просмотров 343 года назад
Geometric Distributions
Binomial Distribution
Просмотров 983 года назад
Binomial Distribution
Bernoulli and Binomial Variables
Просмотров 7303 года назад
Bernoulli and Binomial Variables
Descriptive Statistics - Measuring central tendency and dispersion; histograms, box plots and more
Просмотров 2 тыс.4 года назад
Descriptive Statistics - Measuring central tendency and dispersion; histograms, box plots and more
Applied Statistics - Introduction
Просмотров 20 тыс.4 года назад
Applied Statistics - Introduction
Automatic Programming with Genetic Programming
Просмотров 1,2 тыс.4 года назад
Automatic Programming with Genetic Programming
Multi Objective Optimisation
Просмотров 2,9 тыс.4 года назад
Multi Objective Optimisation
Powerful Paragraphs 12: Continuity - Link Key Terms
Просмотров 2054 года назад
Powerful Paragraphs 12: Continuity - Link Key Terms