TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Best stack for ML blog with lots of code snippets, formulae and graphs?

3 点作者 Winterflow3r超过 3 年前
Hey folks! I want to refurbish my old dusty blog into something new and fancy but without (too many) late nights fighting with yet another static site generator. I want to write more about my experiences working with ML so ideally this would be a tech stack that can easily accommodate maths formulae (nice if it can be a syntax close to LaTeX but I'm not super picky) and interactive graphs (something like a Jupyter notebook widget). Do you have a setup that works well and that you'd like to share? Thanks in advance!

1 comment

Sirajchokshi超过 3 年前
I&#x27;d recommend using a Jekyll blog template you like and adding what you need on top of it.<p>Here are some ways I can think of to accomplish what you want:<p><pre><code> mpld3 </code></pre> export mpl plots to interactive HTML<p><pre><code> jupyter nbconvert --to html notebook.ipynb </code></pre> to convert notebooks into html<p><i>Resources:</i><p><a href="https:&#x2F;&#x2F;mpld3.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mpld3.github.io&#x2F;</a><p><a href="http:&#x2F;&#x2F;www.kasimte.com&#x2F;adding-and-including-jupyter-notebooks-as-jekyll-blog-posts" rel="nofollow">http:&#x2F;&#x2F;www.kasimte.com&#x2F;adding-and-including-jupyter-notebook...</a>