This message, related to the development of the theme, only displays on the
localhost homepage to notify you of any important theme changes.
Version 1.1.0 - May 18, 2020
With this version, the theme has fully implemented static search using
lunr.js. That being said, a few modifications were necessary to implement this
feature.
To utilize this, or future version of Hugo Future Imperfect Slim, please make
the following changes:
Add the following to your config.toml before [params]:
Remove the underscore from all about and contact page file names:
_index.md --> index.md
Add layout = "about" or layout = "contact" to all of the files you just
just adjusted the file names for.
While I realize this is inconvenient, I hope that it is worth it to you in the
long run. Thanks for using the theme, and feel free to submit issues as needed.
Using Udacimak to download almost all the content of your Nanodegree Program
In a conflict between the heart and the brain, follow your heart. ~Vivekananda
3 minute read
The step-by-step tutorial is based on Udacimak - A Udacity Nanodegree Downloader. It allows you to download all the video and text-related content from the courses that you are enrolled in. It is a CLI-based method. I will use ubuntu-18.04 LTS for demonstration.
Explanation on how the YOLOv3 models output can be decoded from a programming POV
If most of us are ashamed of shabby clothes and shoddy furniture, let us be more ashamed of shabby ideas and shoddy philosophies. ~Einstein
16 minute read
Foreword: The article aims at simplifying the process of getting the understandable results from the RAW output of the YOLOv3 models (v3 and v3-tiny). I will be demonstrating the code snippets from the official demo example provided by OpenVINO toolkit that work for both theses versions but I explain only the v3-tiny which can be generalised for the entire v3 family. Also, I strongly suggest you to get a theoritical understanding of the same from the amazing article by Ethan Yanjia Li. I have…