Add post on OR

This commit is contained in:
Dimitri Lozeve 2020-04-08 17:40:56 +02:00
parent 02f4a537bd
commit ebff8c5361
6 changed files with 236 additions and 0 deletions

View file

@ -51,6 +51,10 @@
<a href="./posts/iclr-2020-notes.html">ICLR 2020 Notes: Speakers and Workshops</a> - May 5, 2020
</li>
<li>
<a href="./posts/operations-research-references.html">Operations Research and Optimisation: where to start?</a> - April 8, 2020
</li>
<li>
<a href="./posts/hierarchical-optimal-transport-for-document-classification.html">Reading notes: Hierarchical Optimal Transport for Document Representation</a> - April 5, 2020
</li>

View file

@ -65,6 +65,52 @@
</article>
]]></summary>
</entry>
<entry>
<title>Operations Research and Optimisation: where to start?</title>
<link href="https://www.lozeve.com/posts/operations-research-references.html" />
<id>https://www.lozeve.com/posts/operations-research-references.html</id>
<published>2020-04-08T00:00:00Z</published>
<updated>2020-04-08T00:00:00Z</updated>
<summary type="html"><![CDATA[<article>
<section class="header">
</section>
<section>
<p><a href="https://en.wikipedia.org/wiki/Operations_research">Operations research</a> (OR) is a vast area comprising a lot of theory, different branches of mathematics, and too many applications to count. In this post, I will try to explain why I find it so fascinating, but also why it can be a little disconcerting to explore at first. Then I will try to ease the newcomers path in this rich area, by suggesting a very rough “map” of the field and a few references to get started.</p>
<p>Keep in mind that although I studied it during my graduate studies, this is not my primary area of expertise (Im a data scientist by trade), and I definitely dont pretend to know everything in OR. This is a field too vast for any single person to understand in its entirety, and I talk mostly from a “amateur mathematician and computer scientist” standpoint.</p>
<h1 id="why-is-it-hard-to-approach">Why is it hard to approach?</h1>
<ul>
<li>why it may be more difficult to approach than other, more recent areas like ML and DL
<ul>
<li>slightly longer history</li>
<li>always very close to applications: somehow more “messy” in its notations, vocabulary, standard references, etc, as other “purer” fields of maths (similar to stats in this regard)</li>
<li>often approached from a applied point of view means that many very different concepts are often mixed together</li>
</ul></li>
<li>why it is interesting and you should pursue it anyway
<ul>
<li>history of the field</li>
<li>examples of applications</li>
<li>theory perspective, rigorous field</li>
</ul></li>
<li>different subfields
<ul>
<li>optimisation: constrained and unconstrained</li>
<li>game theory</li>
<li>dynamic programming</li>
<li>stochastic processes</li>
<li>simulation</li>
</ul></li>
<li>how to learn and practice
<ul>
<li>references</li>
<li>courses</li>
<li>computational assets</li>
</ul></li>
</ul>
</section>
</article>
]]></summary>
</entry>
<entry>
<title>Reading notes: Hierarchical Optimal Transport for Document Representation</title>
<link href="https://www.lozeve.com/posts/hierarchical-optimal-transport-for-document-classification.html" />

View file

@ -74,6 +74,10 @@ public key: RWQ6uexORp8f7USHA7nX9lFfltaCA9x6aBV06MvgiGjUt6BVf6McyD26
<a href="./posts/iclr-2020-notes.html">ICLR 2020 Notes: Speakers and Workshops</a> - May 5, 2020
</li>
<li>
<a href="./posts/operations-research-references.html">Operations Research and Optimisation: where to start?</a> - April 8, 2020
</li>
<li>
<a href="./posts/hierarchical-optimal-transport-for-document-classification.html">Reading notes: Hierarchical Optimal Transport for Document Representation</a> - April 5, 2020
</li>

View file

@ -0,0 +1,92 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<meta name="description" content="Dimitri Lozeve's blog: Operations Research and Optimisation: where to start?">
<title>Dimitri Lozeve - Operations Research and Optimisation: where to start?</title>
<link rel="stylesheet" href="../css/tufte.css" />
<link rel="stylesheet" href="../css/pandoc.css" />
<link rel="stylesheet" href="../css/default.css" />
<link rel="stylesheet" href="../css/syntax.css" />
<!-- KaTeX CSS styles -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.css" integrity="sha384-BdGj8xC2eZkQaxoQ8nSLefg4AV4/AwB3Fj+8SUSo7pnKP6Eoy18liIKTPn9oBYNG" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.js" integrity="sha384-JiKN5O8x9Hhs/UE5cT5AAJqieYlOZbGT3CHws/y97o3ty4R7/O5poG9F3JoiOYw1" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
</head>
<body>
<article>
<header>
<nav>
<a href="../">Home</a>
<a href="../projects.html">Projects</a>
<a href="../archive.html">Archive</a>
<a href="../contact.html">Contact</a>
</nav>
<h1 class="title">Operations Research and Optimisation: where to start?</h1>
<p class="byline">April 8, 2020</p>
</header>
</article>
<article>
<section class="header">
</section>
<section>
<p><a href="https://en.wikipedia.org/wiki/Operations_research">Operations research</a> (OR) is a vast area comprising a lot of theory, different branches of mathematics, and too many applications to count. In this post, I will try to explain why I find it so fascinating, but also why it can be a little disconcerting to explore at first. Then I will try to ease the newcomers path in this rich area, by suggesting a very rough “map” of the field and a few references to get started.</p>
<p>Keep in mind that although I studied it during my graduate studies, this is not my primary area of expertise (Im a data scientist by trade), and I definitely dont pretend to know everything in OR. This is a field too vast for any single person to understand in its entirety, and I talk mostly from a “amateur mathematician and computer scientist” standpoint.</p>
<h1 id="why-is-it-hard-to-approach">Why is it hard to approach?</h1>
<ul>
<li>why it may be more difficult to approach than other, more recent areas like ML and DL
<ul>
<li>slightly longer history</li>
<li>always very close to applications: somehow more “messy” in its notations, vocabulary, standard references, etc, as other “purer” fields of maths (similar to stats in this regard)</li>
<li>often approached from a applied point of view means that many very different concepts are often mixed together</li>
</ul></li>
<li>why it is interesting and you should pursue it anyway
<ul>
<li>history of the field</li>
<li>examples of applications</li>
<li>theory perspective, rigorous field</li>
</ul></li>
<li>different subfields
<ul>
<li>optimisation: constrained and unconstrained</li>
<li>game theory</li>
<li>dynamic programming</li>
<li>stochastic processes</li>
<li>simulation</li>
</ul></li>
<li>how to learn and practice
<ul>
<li>references</li>
<li>courses</li>
<li>computational assets</li>
</ul></li>
</ul>
</section>
</article>
<footer>
Site proudly generated by
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
</footer>
</body>
</html>

View file

@ -64,6 +64,52 @@
<guid>https://www.lozeve.com/posts/iclr-2020-notes.html</guid>
<dc:creator>Dimitri Lozeve</dc:creator>
</item>
<item>
<title>Operations Research and Optimisation: where to start?</title>
<link>https://www.lozeve.com/posts/operations-research-references.html</link>
<description><![CDATA[<article>
<section class="header">
</section>
<section>
<p><a href="https://en.wikipedia.org/wiki/Operations_research">Operations research</a> (OR) is a vast area comprising a lot of theory, different branches of mathematics, and too many applications to count. In this post, I will try to explain why I find it so fascinating, but also why it can be a little disconcerting to explore at first. Then I will try to ease the newcomers path in this rich area, by suggesting a very rough “map” of the field and a few references to get started.</p>
<p>Keep in mind that although I studied it during my graduate studies, this is not my primary area of expertise (Im a data scientist by trade), and I definitely dont pretend to know everything in OR. This is a field too vast for any single person to understand in its entirety, and I talk mostly from a “amateur mathematician and computer scientist” standpoint.</p>
<h1 id="why-is-it-hard-to-approach">Why is it hard to approach?</h1>
<ul>
<li>why it may be more difficult to approach than other, more recent areas like ML and DL
<ul>
<li>slightly longer history</li>
<li>always very close to applications: somehow more “messy” in its notations, vocabulary, standard references, etc, as other “purer” fields of maths (similar to stats in this regard)</li>
<li>often approached from a applied point of view means that many very different concepts are often mixed together</li>
</ul></li>
<li>why it is interesting and you should pursue it anyway
<ul>
<li>history of the field</li>
<li>examples of applications</li>
<li>theory perspective, rigorous field</li>
</ul></li>
<li>different subfields
<ul>
<li>optimisation: constrained and unconstrained</li>
<li>game theory</li>
<li>dynamic programming</li>
<li>stochastic processes</li>
<li>simulation</li>
</ul></li>
<li>how to learn and practice
<ul>
<li>references</li>
<li>courses</li>
<li>computational assets</li>
</ul></li>
</ul>
</section>
</article>
]]></description>
<pubDate>Wed, 08 Apr 2020 00:00:00 UT</pubDate>
<guid>https://www.lozeve.com/posts/operations-research-references.html</guid>
<dc:creator>Dimitri Lozeve</dc:creator>
</item>
<item>
<title>Reading notes: Hierarchical Optimal Transport for Document Representation</title>
<link>https://www.lozeve.com/posts/hierarchical-optimal-transport-for-document-classification.html</link>

View file

@ -0,0 +1,44 @@
---
title: "Operations Research and Optimisation: where to start?"
date: 2020-04-08
---
[[https://en.wikipedia.org/wiki/Operations_research][Operations research]] (OR) is a vast area comprising a lot of theory,
different branches of mathematics, and too many applications to
count. In this post, I will try to explain why I find it so
fascinating, but also why it can be a little disconcerting to explore
at first. Then I will try to ease the newcomer's path in this rich
area, by suggesting a very rough "map" of the field and a few
references to get started.
Keep in mind that although I studied it during my graduate studies,
this is not my primary area of expertise (I'm a data scientist by
trade), and I definitely don't pretend to know everything in OR. This
is a field too vast for any single person to understand in its
entirety, and I talk mostly from a "amateur mathematician and computer
scientist" standpoint.
* Why is it hard to approach?
- why it may be more difficult to approach than other, more recent
areas like ML and DL
- slightly longer history
- always very close to applications: somehow more "messy" in its
notations, vocabulary, standard references, etc, as other "purer"
fields of maths (similar to stats in this regard)
- often approached from a applied point of view means that many very
different concepts are often mixed together
- why it is interesting and you should pursue it anyway
- history of the field
- examples of applications
- theory perspective, rigorous field
- different subfields
- optimisation: constrained and unconstrained
- game theory
- dynamic programming
- stochastic processes
- simulation
- how to learn and practice
- references
- courses
- computational assets