├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── courses │ ├── ads-final-review.md │ ├── high-dim-prob │ │ ├── index.md │ │ └── lec1.md │ ├── imgs │ │ ├── ads │ │ │ ├── ads_review_RBTree_complexity.png │ │ │ ├── ads_review_binary_tree.png │ │ │ ├── ads_review_master_theorem.png │ │ │ ├── ads_review_master_theorem_log.png │ │ │ └── heaps.png │ │ ├── prob │ │ │ └── high-dim │ │ │ │ └── overview.drawio.png │ │ └── toc │ │ │ ├── 2.1.drawio.png │ │ │ ├── 2.2.drawio.png │ │ │ ├── 2.3.drawio.png │ │ │ ├── 2.4.png │ │ │ ├── 3.1.jpg │ │ │ ├── 3.2.jpg │ │ │ ├── 3.3.jpg │ │ │ ├── 3.4.jpg │ │ │ ├── 3.5.png │ │ │ ├── 3.6.jpg │ │ │ ├── 3.7.png │ │ │ ├── 3.8.jpg │ │ │ ├── 3.9.png │ │ │ ├── 4.4.png │ │ │ ├── 4.5.png │ │ │ ├── 4.6.png │ │ │ ├── 4.7.png │ │ │ ├── 4.8.png │ │ │ ├── 4.9.png │ │ │ └── 5.1.png │ ├── index.md │ ├── info-theory.md │ ├── numerical │ │ ├── algebra │ │ │ ├── 1.md │ │ │ ├── 2.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ ├── 5.md │ │ │ ├── 6.md │ │ │ ├── 7.md │ │ │ └── index.md │ │ ├── analysis │ │ │ ├── 1.md │ │ │ ├── 2.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ ├── 5.md │ │ │ ├── 6.md │ │ │ ├── 7.md │ │ │ ├── 8.md │ │ │ ├── 9.md │ │ │ └── index.md │ │ └── index.md │ ├── physics │ │ ├── 2-current.md │ │ ├── 2-electromagnetics.md │ │ ├── 2-electrostatics.md │ │ ├── 2-optics.md │ │ ├── 2-quantum.md │ │ └── index.md │ ├── probability │ │ ├── basics.md │ │ ├── feature_basics.md │ │ ├── feature_pro.md │ │ ├── index.md │ │ ├── normal_distr.md │ │ ├── prob_lim.md │ │ └── rand_var_vec.md │ └── toc │ │ ├── after_story.md │ │ ├── context_free.md │ │ ├── finite_automata.md │ │ ├── index.md │ │ ├── languages.md │ │ ├── turing_machine.md │ │ └── undecidability.md ├── css │ ├── counter.css │ ├── custom.css │ ├── font.css │ ├── fonts │ │ ├── KaTeX_AMS-Regular.ttf │ │ ├── KaTeX_AMS-Regular.woff │ │ ├── KaTeX_AMS-Regular.woff2 │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ ├── KaTeX_Fraktur-Bold.woff │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ ├── KaTeX_Fraktur-Regular.woff │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ ├── KaTeX_Main-Bold.ttf │ │ ├── KaTeX_Main-Bold.woff │ │ ├── KaTeX_Main-Bold.woff2 │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ ├── KaTeX_Main-BoldItalic.woff │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ ├── KaTeX_Main-Italic.ttf │ │ ├── KaTeX_Main-Italic.woff │ │ ├── KaTeX_Main-Italic.woff2 │ │ ├── KaTeX_Main-Regular.ttf │ │ ├── KaTeX_Main-Regular.woff │ │ ├── KaTeX_Main-Regular.woff2 │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ ├── KaTeX_Math-BoldItalic.woff │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ ├── KaTeX_Math-Italic.ttf │ │ ├── KaTeX_Math-Italic.woff │ │ ├── KaTeX_Math-Italic.woff2 │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ ├── KaTeX_SansSerif-Bold.woff │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ ├── KaTeX_SansSerif-Italic.woff │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ ├── KaTeX_SansSerif-Regular.woff │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ ├── KaTeX_Script-Regular.ttf │ │ ├── KaTeX_Script-Regular.woff │ │ ├── KaTeX_Script-Regular.woff2 │ │ ├── KaTeX_Size1-Regular.ttf │ │ ├── KaTeX_Size1-Regular.woff │ │ ├── KaTeX_Size1-Regular.woff2 │ │ ├── KaTeX_Size2-Regular.ttf │ │ ├── KaTeX_Size2-Regular.woff │ │ ├── KaTeX_Size2-Regular.woff2 │ │ ├── KaTeX_Size3-Regular.ttf │ │ ├── KaTeX_Size3-Regular.woff │ │ ├── KaTeX_Size3-Regular.woff2 │ │ ├── KaTeX_Size4-Regular.ttf │ │ ├── KaTeX_Size4-Regular.woff │ │ ├── KaTeX_Size4-Regular.woff2 │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ ├── KaTeX_Typewriter-Regular.woff │ │ └── KaTeX_Typewriter-Regular.woff2 │ ├── katex.min.css │ └── svg_extra.css ├── index.md ├── js │ ├── heti.js │ ├── katex.js │ └── katex.min.js ├── math │ ├── DEs │ │ ├── Intro2SDE │ │ │ ├── Brownian_noise.md │ │ │ ├── SDE.md │ │ │ ├── applications.md │ │ │ ├── index.md │ │ │ ├── intro_prob.md │ │ │ └── stochastic_integrals.md │ │ ├── ODE │ │ │ ├── general1.md │ │ │ ├── index.md │ │ │ └── system.md │ │ ├── PDE │ │ │ ├── 4linearPDEs.md │ │ │ ├── index.md │ │ │ └── introduction.md │ │ └── index.md │ ├── analysis │ │ ├── continuities.md │ │ ├── funcRvar │ │ │ ├── LebesgueMeasure.md │ │ │ ├── index.md │ │ │ └── sets.md │ │ └── index.md │ ├── geometry │ │ ├── index.md │ │ └── quaternion │ │ │ ├── basics.md │ │ │ ├── index.md │ │ │ ├── interpolation.md │ │ │ └── quaternion.md │ ├── imgs │ │ ├── Intro2SDE │ │ │ ├── 3.3_lemma2_phi.png │ │ │ ├── conditional_expectation_proj.png │ │ │ ├── first-eight-Haar-functions-and-their-integrals.png │ │ │ ├── graph-of-a-haar-function.jpg │ │ │ ├── hw1.gif │ │ │ ├── sample_paths.png │ │ │ ├── stock_trajectory.png │ │ │ └── trajectory.png │ │ ├── ODE │ │ │ └── picard.png │ │ └── quaternion │ │ │ ├── basics-axis-angle-rotation.svg │ │ │ ├── basics-orthogonal-decomposition.svg │ │ │ ├── basics-perp-rotation.svg │ │ │ ├── interpolation-Nlerp-problem.svg │ │ │ ├── interpolation-Slerp-double-cover.svg │ │ │ ├── interpolation-Slerp-triangle.svg │ │ │ ├── interpolation-Slerp.svg │ │ │ ├── interpolation-find-vt.svg │ │ │ ├── interpolation-lerp.svg │ │ │ ├── interpolation-quat-to-vec-rot-1.svg │ │ │ ├── interpolation-quat-to-vec-rot-2.svg │ │ │ ├── quaternion-double-cover-a.svg │ │ │ ├── quaternion-double-cover-b.svg │ │ │ └── quaternion-double-cover-c.svg │ ├── index.md │ └── probability │ │ └── index.md └── readings │ ├── NNbasics │ ├── einsum.md │ ├── index.md │ ├── lstm_gru.md │ └── normalization.md │ ├── diffusion │ ├── DDIM.md │ ├── DDPM.md │ ├── DE-formula.md │ ├── EDM.md │ ├── SGM.md │ ├── guidance.md │ ├── index.md │ ├── mean-flow.md │ ├── rectified-flow.md │ └── v-prediction.md │ ├── imgs │ ├── NNbasics │ │ ├── LSTM3-C-line.png │ │ ├── LSTM3-SimpleRNN.png │ │ ├── LSTM3-chain.png │ │ ├── LSTM3-focus-C.png │ │ ├── LSTM3-focus-f.png │ │ ├── LSTM3-focus-i.png │ │ ├── LSTM3-focus-o.png │ │ ├── LSTM3-gate.png │ │ ├── LSTM3-var-GRU.png │ │ ├── LSTM3-var-peepholes.png │ │ ├── LSTM3-var-tied.png │ │ ├── RNN-unrolled.png │ │ ├── bn_vs_ln.png │ │ └── normalizations.png │ └── diffusion │ │ ├── ddpm-modeling.svg │ │ ├── ddpm-pseudo-code-dark.png │ │ ├── ddpm-pseudo-code-light.png │ │ ├── edm-main-table-dark.png │ │ ├── edm-main-table-light.png │ │ ├── history-guidance-dark.png │ │ ├── history-guidance-light.png │ │ ├── mean-flow-consistency-model-dark.png │ │ ├── mean-flow-consistency-model-light.png │ │ ├── mean-flow-mean-with-t-dark.png │ │ ├── mean-flow-mean-with-t-light.png │ │ ├── mean-flow-overview-dark.png │ │ ├── mean-flow-overview-light.png │ │ ├── v-prediction-visualization-dark.png │ │ ├── v-prediction-visualization-light.png │ │ └── v-prediction-visualization.png │ ├── index.md │ └── miscs │ ├── abbrs.md │ └── metrics.md ├── hooks ├── tikzautomata.py └── utils │ ├── markdown_utils.py │ └── tikz_renderer.py ├── mkdocs.yml └── overrides └── partials └── comments.html /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/README.md -------------------------------------------------------------------------------- /docs/courses/ads-final-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/ads-final-review.md -------------------------------------------------------------------------------- /docs/courses/high-dim-prob/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/high-dim-prob/index.md -------------------------------------------------------------------------------- /docs/courses/high-dim-prob/lec1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/high-dim-prob/lec1.md -------------------------------------------------------------------------------- /docs/courses/imgs/ads/ads_review_RBTree_complexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/ads/ads_review_RBTree_complexity.png -------------------------------------------------------------------------------- /docs/courses/imgs/ads/ads_review_binary_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/ads/ads_review_binary_tree.png -------------------------------------------------------------------------------- /docs/courses/imgs/ads/ads_review_master_theorem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/ads/ads_review_master_theorem.png -------------------------------------------------------------------------------- /docs/courses/imgs/ads/ads_review_master_theorem_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/ads/ads_review_master_theorem_log.png -------------------------------------------------------------------------------- /docs/courses/imgs/ads/heaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/ads/heaps.png -------------------------------------------------------------------------------- /docs/courses/imgs/prob/high-dim/overview.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/prob/high-dim/overview.drawio.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/2.1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/2.1.drawio.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/2.2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/2.2.drawio.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/2.3.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/2.3.drawio.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/2.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/2.4.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.1.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.2.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.3.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.4.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.5.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.6.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.7.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.8.jpg -------------------------------------------------------------------------------- /docs/courses/imgs/toc/3.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/3.9.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.4.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.5.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.6.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.7.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.8.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/4.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/4.9.png -------------------------------------------------------------------------------- /docs/courses/imgs/toc/5.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/imgs/toc/5.1.png -------------------------------------------------------------------------------- /docs/courses/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/index.md -------------------------------------------------------------------------------- /docs/courses/info-theory.md: -------------------------------------------------------------------------------- 1 | # Information Theory 2 | 3 | !!! warning "该页面还在施工中" -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/1.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/2.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/3.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/4.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/5.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/6.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/7.md -------------------------------------------------------------------------------- /docs/courses/numerical/algebra/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/algebra/index.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/1.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/2.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/3.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/4.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/5.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/6.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/7.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/8.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/9.md -------------------------------------------------------------------------------- /docs/courses/numerical/analysis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/analysis/index.md -------------------------------------------------------------------------------- /docs/courses/numerical/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/numerical/index.md -------------------------------------------------------------------------------- /docs/courses/physics/2-current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/2-current.md -------------------------------------------------------------------------------- /docs/courses/physics/2-electromagnetics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/2-electromagnetics.md -------------------------------------------------------------------------------- /docs/courses/physics/2-electrostatics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/2-electrostatics.md -------------------------------------------------------------------------------- /docs/courses/physics/2-optics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/2-optics.md -------------------------------------------------------------------------------- /docs/courses/physics/2-quantum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/2-quantum.md -------------------------------------------------------------------------------- /docs/courses/physics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/physics/index.md -------------------------------------------------------------------------------- /docs/courses/probability/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/basics.md -------------------------------------------------------------------------------- /docs/courses/probability/feature_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/feature_basics.md -------------------------------------------------------------------------------- /docs/courses/probability/feature_pro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/feature_pro.md -------------------------------------------------------------------------------- /docs/courses/probability/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/index.md -------------------------------------------------------------------------------- /docs/courses/probability/normal_distr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/normal_distr.md -------------------------------------------------------------------------------- /docs/courses/probability/prob_lim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/prob_lim.md -------------------------------------------------------------------------------- /docs/courses/probability/rand_var_vec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/probability/rand_var_vec.md -------------------------------------------------------------------------------- /docs/courses/toc/after_story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/after_story.md -------------------------------------------------------------------------------- /docs/courses/toc/context_free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/context_free.md -------------------------------------------------------------------------------- /docs/courses/toc/finite_automata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/finite_automata.md -------------------------------------------------------------------------------- /docs/courses/toc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/index.md -------------------------------------------------------------------------------- /docs/courses/toc/languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/languages.md -------------------------------------------------------------------------------- /docs/courses/toc/turing_machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/turing_machine.md -------------------------------------------------------------------------------- /docs/courses/toc/undecidability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/courses/toc/undecidability.md -------------------------------------------------------------------------------- /docs/css/counter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/counter.css -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/font.css -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-BoldItalic.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /docs/css/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /docs/css/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/katex.min.css -------------------------------------------------------------------------------- /docs/css/svg_extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/css/svg_extra.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/js/heti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/js/heti.js -------------------------------------------------------------------------------- /docs/js/katex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/js/katex.js -------------------------------------------------------------------------------- /docs/js/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/js/katex.min.js -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/Brownian_noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/Brownian_noise.md -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/SDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/SDE.md -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/applications.md -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/index.md -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/intro_prob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/intro_prob.md -------------------------------------------------------------------------------- /docs/math/DEs/Intro2SDE/stochastic_integrals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/Intro2SDE/stochastic_integrals.md -------------------------------------------------------------------------------- /docs/math/DEs/ODE/general1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/ODE/general1.md -------------------------------------------------------------------------------- /docs/math/DEs/ODE/index.md: -------------------------------------------------------------------------------- 1 | # Ordinary Differential Equations 2 | 3 | !!! warning "本页面还在施工中" 4 | 5 | - [ODE 一般理论:存在性定理](general1.md) 6 | - [常微分方程组](system.md) -------------------------------------------------------------------------------- /docs/math/DEs/ODE/system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/ODE/system.md -------------------------------------------------------------------------------- /docs/math/DEs/PDE/4linearPDEs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/PDE/4linearPDEs.md -------------------------------------------------------------------------------- /docs/math/DEs/PDE/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/PDE/index.md -------------------------------------------------------------------------------- /docs/math/DEs/PDE/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/PDE/introduction.md -------------------------------------------------------------------------------- /docs/math/DEs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/DEs/index.md -------------------------------------------------------------------------------- /docs/math/analysis/continuities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/analysis/continuities.md -------------------------------------------------------------------------------- /docs/math/analysis/funcRvar/LebesgueMeasure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/analysis/funcRvar/LebesgueMeasure.md -------------------------------------------------------------------------------- /docs/math/analysis/funcRvar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/analysis/funcRvar/index.md -------------------------------------------------------------------------------- /docs/math/analysis/funcRvar/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/analysis/funcRvar/sets.md -------------------------------------------------------------------------------- /docs/math/analysis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/analysis/index.md -------------------------------------------------------------------------------- /docs/math/geometry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/geometry/index.md -------------------------------------------------------------------------------- /docs/math/geometry/quaternion/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/geometry/quaternion/basics.md -------------------------------------------------------------------------------- /docs/math/geometry/quaternion/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/geometry/quaternion/index.md -------------------------------------------------------------------------------- /docs/math/geometry/quaternion/interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/geometry/quaternion/interpolation.md -------------------------------------------------------------------------------- /docs/math/geometry/quaternion/quaternion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/geometry/quaternion/quaternion.md -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/3.3_lemma2_phi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/3.3_lemma2_phi.png -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/conditional_expectation_proj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/conditional_expectation_proj.png -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/first-eight-Haar-functions-and-their-integrals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/first-eight-Haar-functions-and-their-integrals.png -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/graph-of-a-haar-function.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/graph-of-a-haar-function.jpg -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/hw1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/hw1.gif -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/sample_paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/sample_paths.png -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/stock_trajectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/stock_trajectory.png -------------------------------------------------------------------------------- /docs/math/imgs/Intro2SDE/trajectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/Intro2SDE/trajectory.png -------------------------------------------------------------------------------- /docs/math/imgs/ODE/picard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/ODE/picard.png -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/basics-axis-angle-rotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/basics-axis-angle-rotation.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/basics-orthogonal-decomposition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/basics-orthogonal-decomposition.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/basics-perp-rotation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/basics-perp-rotation.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-Nlerp-problem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-Nlerp-problem.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-Slerp-double-cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-Slerp-double-cover.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-Slerp-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-Slerp-triangle.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-Slerp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-Slerp.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-find-vt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-find-vt.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-lerp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-lerp.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-quat-to-vec-rot-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-quat-to-vec-rot-1.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/interpolation-quat-to-vec-rot-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/interpolation-quat-to-vec-rot-2.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/quaternion-double-cover-a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/quaternion-double-cover-a.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/quaternion-double-cover-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/quaternion-double-cover-b.svg -------------------------------------------------------------------------------- /docs/math/imgs/quaternion/quaternion-double-cover-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/imgs/quaternion/quaternion-double-cover-c.svg -------------------------------------------------------------------------------- /docs/math/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/index.md -------------------------------------------------------------------------------- /docs/math/probability/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/math/probability/index.md -------------------------------------------------------------------------------- /docs/readings/NNbasics/einsum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/NNbasics/einsum.md -------------------------------------------------------------------------------- /docs/readings/NNbasics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/NNbasics/index.md -------------------------------------------------------------------------------- /docs/readings/NNbasics/lstm_gru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/NNbasics/lstm_gru.md -------------------------------------------------------------------------------- /docs/readings/NNbasics/normalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/NNbasics/normalization.md -------------------------------------------------------------------------------- /docs/readings/diffusion/DDIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/DDIM.md -------------------------------------------------------------------------------- /docs/readings/diffusion/DDPM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/DDPM.md -------------------------------------------------------------------------------- /docs/readings/diffusion/DE-formula.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/DE-formula.md -------------------------------------------------------------------------------- /docs/readings/diffusion/EDM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/EDM.md -------------------------------------------------------------------------------- /docs/readings/diffusion/SGM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/SGM.md -------------------------------------------------------------------------------- /docs/readings/diffusion/guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/guidance.md -------------------------------------------------------------------------------- /docs/readings/diffusion/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/index.md -------------------------------------------------------------------------------- /docs/readings/diffusion/mean-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/mean-flow.md -------------------------------------------------------------------------------- /docs/readings/diffusion/rectified-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/rectified-flow.md -------------------------------------------------------------------------------- /docs/readings/diffusion/v-prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/diffusion/v-prediction.md -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-C-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-C-line.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-SimpleRNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-SimpleRNN.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-chain.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-focus-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-focus-C.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-focus-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-focus-f.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-focus-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-focus-i.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-focus-o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-focus-o.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-gate.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-var-GRU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-var-GRU.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-var-peepholes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-var-peepholes.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/LSTM3-var-tied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/LSTM3-var-tied.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/RNN-unrolled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/RNN-unrolled.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/bn_vs_ln.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/bn_vs_ln.png -------------------------------------------------------------------------------- /docs/readings/imgs/NNbasics/normalizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/NNbasics/normalizations.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/ddpm-modeling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/ddpm-modeling.svg -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/ddpm-pseudo-code-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/ddpm-pseudo-code-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/ddpm-pseudo-code-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/ddpm-pseudo-code-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/edm-main-table-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/edm-main-table-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/edm-main-table-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/edm-main-table-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/history-guidance-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/history-guidance-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/history-guidance-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/history-guidance-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-consistency-model-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-consistency-model-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-consistency-model-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-consistency-model-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-mean-with-t-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-mean-with-t-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-mean-with-t-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-mean-with-t-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-overview-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-overview-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/mean-flow-overview-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/mean-flow-overview-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/v-prediction-visualization-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/v-prediction-visualization-dark.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/v-prediction-visualization-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/v-prediction-visualization-light.png -------------------------------------------------------------------------------- /docs/readings/imgs/diffusion/v-prediction-visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/imgs/diffusion/v-prediction-visualization.png -------------------------------------------------------------------------------- /docs/readings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/index.md -------------------------------------------------------------------------------- /docs/readings/miscs/abbrs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/miscs/abbrs.md -------------------------------------------------------------------------------- /docs/readings/miscs/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/docs/readings/miscs/metrics.md -------------------------------------------------------------------------------- /hooks/tikzautomata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/hooks/tikzautomata.py -------------------------------------------------------------------------------- /hooks/utils/markdown_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/hooks/utils/markdown_utils.py -------------------------------------------------------------------------------- /hooks/utils/tikz_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/hooks/utils/tikz_renderer.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhouTimeMachine/note/HEAD/overrides/partials/comments.html --------------------------------------------------------------------------------