layout: post author: csiu date: 2017-03-02 title: "Day06: Jupyter Notebook, meet Jekyll blog post" categories: update tags:
DAY 06 - Mar 2, 2017
Today I went to the Data Science meetup for "Using NLP & Machine Learning to understand and predict performance". Fascinating stuff. Somewhat similar to my thesis work and the talk inspired a few ideas for future projects.
In [1]:
speaker = 'Thomas Levi'
topics_mentioned_at_meetup = [
"latent dirichlet allocation",
"collapsed gibbs sampling",
"bayesian inference",
"topic modelling",
"porter stemmer",
"flesch reading ease",
"word2vec"
]
Anyways, I just got home and now (as I'm typing this) have 35 minutes to do something and post it for Day06.
Going back to a comment I recently recieved about including and embedding code to my jekyll blog posts. I thought I would tackle this problem now. The issue is that I use Jupyter Notebooks to explore and analyze data but I haven't really looked at its integration with the Jekyll blog post.
In [2]:
for t in topics_mentioned_at_meetup:
print("- '{}' was mentioned".format(t))
In [ ]: