Presentation to a meetup - call for introductory materials

I am working on a presentation for the Hong Kong Machine Learning meetup. Audience is very diverse in skills and experience; this is not a technical seminar but we assume the skills to understand the first chapters of the Deep Learning book for example.

Plan is to follow this outline:

  • 15 min introduction to Julia under the assumption that they are familiar with Python: short history, syntax (I feel that’s more important than semantics at that level), LLVM backend, maybe code shootout Julia / Python / Matlab. Syntax is important in my mind: if I can leave the audience with the impression that they can read/write Julia code after 15 min, that can be a great motivation to start their learning curve.

  • 15 min application to data science with stuff I did on COVID19. Code example, compartment modeling for diseases showing the quick turn-around from diagrams/formulas to code and plots.

  • 15 min application to machine learning with an introduction to Flux.ml as a way to emphasize the high-level readability and auto-diff (and macro system without uttering the word macro), probably using bits of the Flux model zoo. And emphasize how general the framework is, and the easy use of GPUs.

If anyone has material for 1 and 3, I will be grateful! If no materials, comments from your experience will be useful.

3 Likes

I previously give a Julia talk at my University, but it was longer, about 1 hours, you can see at GitHub - dmolina/julia_presentacion: Introductory Talk about Julia language / Pequeña presentación del Lenguaje Julia. It is done a plugin over notebook, RISE, that allowed you to see the notebook as slides, allowing me to run examples in real time (but with your time, it is difficult). Also, in previous threads in discourse there are also materials better than mine.

I recommend to compare some implementations of functions in Python, Matlab with Julia. I nice trick I do was to compare implementations in fibonacci and its time with Python and Julia. (I am bad, I know :slight_smile: )

Lately, I am working on Flux, but I have few experience. I recommend also to see Metalhead, as a example of classifying animals in images (because it has pretrained models, like VGG19).

1 Like

I am not sure it is realistic to cover all this in 15 minutes. Given the time constraints, I would skip the history, LLVM, and the shootout, and just say that it was written to be fast and convenient, and it is. Then focus on the language.

Again, I am not sure this is a realistic goal (for any serious language) — even if your audience is so naive that you succeed in this, it will be a false impression.

Instead, I would recommend tying in the language example with dissecting a few of the actual functions you use in your part 2. Eg make slides where you have a function of 10-20 lines, and explain what each line does.

3 Likes

I agree with everything Tamas said - 15 minutes isn’t nearly enough time to do all the things you want, so you have to kill your darlings.

When I teach, I always try to remember that I don’t really have to actually “teach” my students anything. Learning is much more effective if you can inspire the students to seek knowledge themselves. This holds all the more the less time you have available. So think: how can I inspire my audience and point them in the right direction to learn more?

With that in mind, when I do Julia intros I always like to begin by summarizing the old mission statement from 2012, especially the part from “We want a language that’s…” to “Did we mention that…”. I point out that this was incredibly ambitious, bordering on completely crazy, and full of apparent contradictions. And yet Julia has already managed to realize it all. That still blows my mind.

3 Likes

All good advice. Thanks a lot for the pointers and how quickly you send that. I’ll give it a first crack and road-test it beforehand to polish it.

That’s another point that I didn’t mention: the incredibly friendly and useful community. Also, in a sense, this is a true consequence of the language since reuse of someone else’s code is so easy and encourage everyone to collaborate instead of duplicating.

1 Like

The presentation took place earlier today with a lot of positive interest.
It is avalaible as a repo for anybody to improve on. GitHub - Emmanuel-R8/Presentation_HKML_2020_04: Presentation of the Julia programming language at the April 2020 Hong Kong Machine Learning Meetup

Thanks again for your early advice.

5 Likes

www.juliabox.com has good tutorials.

Juliabox is defunct now. I don’t know where the tutorials have been moved to.

1 Like

This is a very nice and polished presentation, both visually and in terms of content. Thanks for making it available.

1 Like

Only minor negative, I was asked why I was not using JuliaStudio instead of RStudio. :slight_smile:

Must have done something right…

https://www.linkedin.com/posts/hong-kong-machine-learning_bye-bye-python-hello-julia-activity-6663079161676075009-rWik

2 Likes