Godwin Houdji - about me#

Hey there đŸ‘‹đŸŸ

I’m a computer science engineer and currently a full-time quantitative researcher.

I’m exploring how data, language, and machine learning can drive real-world impact from building NLP tools to designing experiments that measure change.

Here, I’m sharing my learning along the way.

Recent posts#

See the blog archives for a more complete list.

  • 2022-05-26 - Architecture du transformer et implĂ©mentation avec Pytorch (Partie I)

    Qu’est ce qu’un transformer ?: Un modĂšle de transformer est un rĂ©seau neuronal qui apprend le contexte et donc le sens en suivant les relations dans les donnĂ©es sĂ©quentielles comme les mots de cette phrase. Dans la version originale de leur papier Attention Is All You Need, les auteurs dĂ©finissent le transformer comme une nouvelle architecture de rĂ©seau simple basĂ©e uniquement sur les mĂ©canismes d’attention, exemptĂ©e entiĂšrement de rĂ©currence ou de convolution.

  • 2022-03-22 - Bert Classification For Research Papers

    Our goal is to build a model that uses the abstract and title of a paper to predict whether it will be rejected or not.

  • 2021-12-11 - La normalisation par lots

    Dans cet article, je vais vous parler d’une technique efficace pour amĂ©liorer vos modĂšles de deep learning et les rendre plus puissants: la normalisation par lots ou en anglais batch normalization. Nous allons suivre la chronologie suivant les grands points qui sont:

  • 2021-08-17 - Brief introduction to Convolutional Neural Networks

    If you are reading this post, it means you know about convolutional neural networks (CNN) or you have heard about it before. But why should you read what I am offering you here? Indeed, there is a lot of documentation, tutorials, articles, and videos on this subject — often with complex mathematical notions that are difficult to understand. I read a lot on CNNs to understand part of it. It is a small and vast domain at the same time; once you understand the basics, leveling up becomes relatively straightforward.

  • 2021-05-14 - Principal Component Analysis

    The Principal Component Analysis (PCA) is a dimension reduction technique widely used. Given a dataset with \(n\) features, the aim is to have \(k\) feature with \(k\le n\) so as the features retain most of the variation present in all of the original variables.

  • 2021-05-06 - Empirical Mode Decomposition

    Introduced by Hilbert–Huang, Empirical Mode Decomposition (EMD) is a data-driven method that used as a propelling tool for analyzing and decomposing non-stationary and non-linear data. EMD generates a finite and often small number of the frequency and amplitude modulated signals, intrinsic mode functions (IMF).

  • 2021-04-23 - What to know about Logistic Regression ?

    When it comes to make machine learning (ML) classification task, there is Logistic Regression which make compromise between performance and results. Through this article, we’ll deep into the different steps to make a ML algorithm, how Logistic Regression work and of course an explanation of Gradient descent.