Heuristic Optimization Methods Calculus and Optimization

Slides:



Advertisements
Similar presentations
Local optimization technique G.Anuradha. Introduction The evaluation function defines a quality measure score landscape/response surface/fitness landscape.
Advertisements

G5BAIM Artificial Intelligence Methods
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 14.
Chin-Shiuh Shieh Assignment 3.1, 文鶑 1.  Maximize F 1 (x,y) Assignment Requirement: Find maximize value of F 1 (x,y) used hill-climbing (gradient-ascent)
Neural and Evolutionary Computing - Lecture 4 1 Random Search Algorithms. Simulated Annealing Motivation Simple Random Search Algorithms Simulated Annealing.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 One-Dimensional Unconstrained Optimization Chapter.
Introducción a la Optimización de procesos químicos. Curso 2005/2006 BASIC CONCEPTS IN OPTIMIZATION: PART II: Continuous & Unconstrained Important concepts.
Optimization of thermal processes
5/20/ Multidimensional Gradient Methods in Optimization Major: All Engineering Majors Authors: Autar Kaw, Ali.
Empirical Maximum Likelihood and Stochastic Process Lecture VIII.
Chapter 14 – Partial Derivatives
Mean-Shift Algorithm and Its Application Bohyung Han
Optimization via Search CPSC 315 – Programming Studio Spring 2009 Project 2, Lecture 4 Adapted from slides of Yoonsuck Choe.
Optimization Methods One-Dimensional Unconstrained Optimization
MAE 552 – Heuristic Optimization Lecture 4 January 30, 2002.
Optimization Methods One-Dimensional Unconstrained Optimization
MAE 552 – Heuristic Optimization Lecture 10 February 13, 2002.
Lecture 17 Today: Start Chapter 9 Next day: More of Chapter 9.
Informed Search Chapter 4 Adapted from materials by Tim Finin, Marie desJardins, and Charles R. Dyer CS 63.
Advanced Topics in Optimization
Optimization Methods One-Dimensional Unconstrained Optimization
Optimization via Search CPSC 315 – Programming Studio Spring 2008 Project 2, Lecture 4 Adapted from slides of Yoonsuck Choe.
ENCI 303 Lecture PS-19 Optimization 2
ME 2304: 3D Geometry & Vector Calculus Dr. Faraz Junejo Gradient of a Scalar field & Directional Derivative.
Informed State Space Search Department of Computer Science & Engineering Indian Institute of Technology Kharagpur.
1 Optimization Multi-Dimensional Unconstrained Optimization Part II: Gradient Methods.
Sec 15.6 Directional Derivatives and the Gradient Vector
Applications of Dynamic Programming and Heuristics to the Traveling Salesman Problem ERIC SALMON & JOSEPH SEWELL.
8.02 Math (P)Review: Outline
Engineering Optimization Chapter 3 : Functions of Several Variables (Part 1) Presented by: Rajesh Roy Networks Research Lab, University of California,
Local Search and Optimization Presented by Collin Kanaley.
Exam 1 Oct 3, closed book Place ITE 119, Time:12:30-1:45pm
Heuristic Optimization Methods Calculus and Optimization Chin-Shiuh Shieh.
Performance Surfaces.
Exam 1 Oct 3, closed book Place ITE 119, Time:12:30-1:45pm One double-sided cheat sheet (8.5in x 11in) allowed Bring your calculator to the exam Chapters.
Lecture 4 Chapter 3 Improving Search
Informed Search Chapter 4 (b)
Optimization via Search
Informed Search Chapter 4 (b)
Department of Computer Science
The “Zoo” of Vector Analysis
Heuristic Optimization Methods Optimization as Search
CS 460 Spring 2011 Lecture 4.
C.-S. Shieh, EC, KUAS, Taiwan
Computational Optimization
Vector Calculus (Chapter 13)
Chapter 14.
Section Euler’s Method
Applications of Differential Calculus
AP Calculus BC April 18, 2016 Mr. Agnew
Hill-climbing Search Goal: Optimizing an objective function.
Aviv Rosenberg 10/01/18 Seminar on Experts and Bandits
Reconstructing a Function from its Gradient
Mathematics.
The “Zoo” of Vector Analysis
L5 Optimal Design concepts pt A
More on Search: A* and Optimization
Differentiation Rules and Rates of Change
Numerical Computation and Optimization
difference in the y-values
Applied Electromagnetic Waves
Performance Surfaces.
Heuristic Optimization Methods Prologue
Gradient/Concavity 2.5 Geometrical Application of Calculus
Differentiation from first principles
Find the set of points (x, y) such that F(x, y) = 0 if F(x, y) = (r - 4)x, {image} , and r = |x|
What are optimization methods?
Differentiation from first principles
Lecture 16 Gradient in Cartesian Coordinates
Analyzing Multivariable Change: Optimization
Presentation transcript:

Heuristic Optimization Methods Calculus and Optimization Chin-Shiuh Shieh

Gradient In vector calculus, the gradient (梯度) of a scalar field is a vector field that points in the direction of the greatest rate of increase of the scalar field, and whose magnitude is that rate of increase.

Gradient (cont)

Gradient and Optima Local optima (or saddle point) occur at points with zero gradient, that is

Example

Example (cont)

Gradient-Ascent Method Greedy method Hill-climbing “Direction” and “Step Size”

Gradient-Ascent Method (cont) Direction Gradient give the direction of search Step Size By heuristic Adaptive step size λ  λ*2 if F(x’) is better than F(x) λ  λ*0.5 otherwise

Limitations Can be trapped in local optima Object function is not differentiable Gradient is complicate, or not available By approximation Typical usages Coarse-grain grid method for locating near optima, and hill-climbing for pinpointing the global optimum Refine candidate solutions for heuristic methods