[Solved] Working with Jupyter notebook on Remote server – on Mac and Windows: Connection refused?

Jupyter notebook is a great tool to explore data and test codes. However, the problem with Jupyter notebook on remote server is that it is slow. Extremely slow - at least I thought so. I run using the same command as I used for running on my local machine: jupyter-notebook And wait for minutes until … Continue reading [Solved] Working with Jupyter notebook on Remote server – on Mac and Windows: Connection refused?

Setting up environment to work on Fortran code in Windows

I have been writing Fortran code for more than 3 years, and most of the time I write my code on our laboratory's cluster, which is a Linux computer. I am happy with that, and my recent short web dev journey has taught me that it can be more efficient to work with editors like … Continue reading Setting up environment to work on Fortran code in Windows

Study Notes: Sequential Model Week 3

Week 3, Sequence Models by deeplearning.ai Assignments: Neural Machine Translation with AttentionTrigger word detection What it is about: Sequence to sequence architecture, particularly machine translation Readings: Sutskever et al. 2014: Sequence to Sequence Learning with Neural NetworksCho et al., 2014: Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine Translation Mao et al., 2014: Deep … Continue reading Study Notes: Sequential Model Week 3

Study Notes: Sequential Model Week 2

Week 2, Sequence Models by deeplearning.ai Assignments: Operations on word vectorsEmojify What it is about: Why word embeddings is used in NLP, and how to apply it. Readings: van der Maaten and Hinton, 2008. Visualizing data using t-SNEMikolov et al., 2013: Linguistic Regularities in Continuous Space Word RepresentationsBengio et al., 2003: A Neural Probabilistic Language … Continue reading Study Notes: Sequential Model Week 2

Study Notes: Sequential Model Week 1

Week 1, Sequence Models by deeplearning.ai Assignments: Building a RNN step by step using numpyDinosaur Island - Character-Level Language Modeling Jazz improvisation with LSTM What it is about: What a RNN is, the usage and different variations of RNN Readings: Cho et al., 2014: On the Properties of Neural Machine Translation: Encoder–Decoder Approaches (About GRU)Chung … Continue reading Study Notes: Sequential Model Week 1

[Solved] “PROJ_LIB” error when installing Basemap on Windows using Anaconda

As an Anaconda user, I love how convenient it is to install packages. So when I tried install Basemap using conda as usual: conda install -c anaconda basemap And import it in Jupyter Notebook: from mpl_toolkits.basemap import Basemap I was shocked that I got an error message: --------------------------------------------------------------------------- KeyError Traceback (most recent call last) <ipython-input-2-702dba317ad4> … Continue reading [Solved] “PROJ_LIB” error when installing Basemap on Windows using Anaconda