This repository has been archived by the owner on Jul 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-final read over: major progress all around
- Loading branch information
Showing
38 changed files
with
1,301 additions
and
3,243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
TODO: | ||
[x] combine references.bib | ||
[x] See Dorsa notes | ||
[ ] See Mykel notes | ||
[x] Subsections for tooling: CrossEntropyVariants.jl and FailureRepresentation.jl | ||
[x] Combine Acknowledgments | ||
[x] "dissertation" wording in the signatures page | ||
[x] Remove "graduate studies" committee? | ||
|
||
|
||
Mykel notes: | ||
[x] Concatenate research papers from MS (if they're related work / extensions) | ||
[x] Add introduction | ||
[ ] Flow together body chapters | ||
[ ] Remove redundancies between them | ||
[x] Change conclusions/future work into discussion | ||
- Two big things: | ||
[x] 1) intro chapter | ||
[x] shortest intro chapter possible (concise) | ||
[x] "freshman undergrad could understand contributions" | ||
[x] 2) final chapter | ||
[x] one section "Summary" high level, no jargon, no non-sense | ||
[x] second section "Contributions", summarize how you've supported your claims (back references, specialized terminology) | ||
[x] third: future work | ||
[x] https://www2.eecs.berkeley.edu/Pubs/Theses/ | ||
[x] Fix \texttt to use old monofont | ||
[x] Move JuliaMono font files. | ||
[x] Page header to be small caps | ||
[x] POMDPStressTesting.jl Acknowledgments moved to main Acknowledgments (TRPO/PPO) | ||
[x] Check for duplicate references | ||
[x] Comb through references (you know Mykel will) | ||
[x] Appendix reformatting (figures/fix overflow) | ||
[ ] Clean everything up | ||
[ ] Publically release __after__ approved by Stanford. | ||
[x] Algorithm size \small: | ||
https://tex.stackexchange.com/questions/435649/algorithm-caption-size-reduction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
\begin{lstlisting}[language=JuliaLocal] | ||
function ce_surrogate(S, 𝐌; m, m_elite, k_max) | ||
for k in 1:k_max | ||
mₑ, m_elite = evaluation_schedule(k, k_max) # number of evaluations from a schedule | ||
𝐗 = rand(𝐌, mₑ) # draw mₑ samples from 𝐌 | ||
𝐘 = map(S, eachcol(𝐗)) # evaluate samples 𝐗 using true objective S | ||
𝐞 = 𝐗[:, sortperm(𝐘)[1:m_elite]] # select elite samples output from true objective | ||
𝐄 = model_elite_set!(𝐗, 𝐘, 𝐌, 𝐞, m, m_elite) # find model-elites using a surrogate | ||
𝐌 = fit(𝐌, 𝐄) # re-fit distribution 𝐌 using model-elite samples | ||
end | ||
return 𝐌 | ||
end | ||
\end{lstlisting} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\begin{lstlisting}[language=JuliaLocal] | ||
𝐌′ = cross_entropy_method(S, 𝐌) # standard CEM | ||
𝐌′ = ce_surrogate(S, 𝐌) # surrogate-based CEM | ||
𝐌′ = ce_mixture(S, 𝐌) # surrogate-based CEM using mixture models | ||
\end{lstlisting} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
\begin{lstlisting}[language=JuliaLocal] | ||
S = paraboloid # objective function | ||
𝐌 = MvNormal([0, 0], [200 0; 0 200]) # proposal distribution | ||
|
||
(𝐌, bestₓ, bestᵥ) = ce_surrogate(S, 𝐌; basis=:squared) | ||
\end{lstlisting} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
\begin{lstlisting}[language=JuliaLocal] | ||
using CrossEntropyVariants | ||
using Distributions | ||
|
||
S = sierra # objective function | ||
𝛍 = [0, 0] # initial mean | ||
𝚺 = [200 0; 0 200] # initial covariance | ||
𝐌 = MvNormal(𝛍, 𝚺) # proposal distribution | ||
|
||
(𝐌, bestₓ, bestᵥ) = ce_surrogate(S, 𝐌) | ||
\end{lstlisting} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
\begin{lstlisting}[language=JuliaLocal] | ||
# GrayBox simulator and environment | ||
abstract type GrayBox.Simulation end | ||
function GrayBox.environment(sim::Simulation)::GrayBox.Environment end | ||
function GrayBox.transition!(sim::Simulation)::Real end | ||
|
||
# BlackBox.interface(input::InputType)::OutputType | ||
function BlackBox.initialize!(sim::Simulation)::Nothing end | ||
function BlackBox.evaluate!(sim::Simulation)::Tuple{Real, Real, Bool} end | ||
function BlackBox.distance(sim::Simulation)::Real end | ||
function BlackBox.isevent(sim::Simulation)::Bool end | ||
function BlackBox.isterminal(sim::Simulation)::Bool end | ||
\end{lstlisting} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.