Skip to content

Commit 29fcf1b

Browse files
Create index.html
Signed-off-by: Ruslan Senatorov <55090151+ruslansenatorov@users.noreply.github.com>
1 parent 8a36ae3 commit 29fcf1b

1 file changed

Lines changed: 59 additions & 0 deletions

File tree

docs/index.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>L-BFGS Solver Course</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
8+
<!-- MathJax for LaTeX -->
9+
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
10+
11+
<link rel="stylesheet" href="style.css">
12+
</head>
13+
14+
<body>
15+
16+
<header>
17+
<h1>L-BFGS Solver Course</h1>
18+
<p>Research-oriented course on quasi-Newton optimization</p>
19+
</header>
20+
21+
<section>
22+
<h2>About</h2>
23+
24+
<p>
25+
This project provides a mathematical derivation and production-style
26+
implementation of the L-BFGS and L-BFGS-B optimization algorithms.
27+
</p>
28+
29+
<p>
30+
$$ B_{k+1}s_k = y_k $$
31+
</p>
32+
33+
</section>
34+
35+
<section>
36+
<h2>Contents</h2>
37+
38+
<ul>
39+
<li>Theory</li>
40+
<li>Two-loop recursion</li>
41+
<li>Wolfe line search</li>
42+
<li>Large-scale experiments</li>
43+
</ul>
44+
</section>
45+
46+
<section>
47+
<h2>Quick Links</h2>
48+
49+
<ul>
50+
<li><a href="https://github.com/SENATOROVAI/lbfgs-solver-course">GitHub Repository</a></li>
51+
</ul>
52+
</section>
53+
54+
<footer>
55+
<p>MIT License — 2026</p>
56+
</footer>
57+
58+
</body>
59+
</html>

0 commit comments

Comments
 (0)