<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Posts on Cbyad</title>
    <link>https://cbyad.github.io/posts/</link>
    <description>Recent content in Posts on Cbyad</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <lastBuildDate>Sun, 27 Sep 2020 00:00:00 +0000</lastBuildDate>
    
	<atom:link href="https://cbyad.github.io/posts/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Machine Learning Notes</title>
      <link>https://cbyad.github.io/posts/ml_notes_post/</link>
      <pubDate>Sun, 27 Sep 2020 00:00:00 +0000</pubDate>
      
      <guid>https://cbyad.github.io/posts/ml_notes_post/</guid>
      <description>Supervised Learning Linear regression with one variable Target : From a dataset (red points), we want to find a general method to automatically get an hypothesis function ${h_\theta(x)=\theta_0+\theta_1x}$ (blue line) that fit as well our points to predict new incomming data. Solution : Find a cost function $J(\theta)$ of parameter $(\theta_0,\theta_1)$ with $\theta$ that minimise $J$
$$ J(\theta_0,\theta_1) = \dfrac{1}{2m} \sum_{i=1}^m (h_\theta(x^{(i)})-y^{(i)})^2 $$
where $m$ the number of training sets</description>
    </item>
    
    <item>
      <title>Functional Programming with TypeScript — Part 1</title>
      <link>https://cbyad.github.io/posts/fp_ts_1_post/</link>
      <pubDate>Tue, 09 Jun 2020 00:00:00 +0000</pubDate>
      
      <guid>https://cbyad.github.io/posts/fp_ts_1_post/</guid>
      <description>This article targets anyone unfamiliar with functional programming (FP) but want to learn about it from scratch. Starting FP with dedicated languages like Haskell, OCaml, Erlang or Scala can take a lot of time for a beginner. FP treats many concepts and it’s impossible to cover them all in a single blog post. But with the basics and some concepts we can considerably improve our code (elegance, conciseness, safety, robustness, maintainability and more).</description>
    </item>
    
    <item>
      <title>A small monad library for dart/flutter project</title>
      <link>https://cbyad.github.io/posts/dart_monad_post/</link>
      <pubDate>Thu, 11 Jul 2019 00:00:00 +0000</pubDate>
      
      <guid>https://cbyad.github.io/posts/dart_monad_post/</guid>
      <description>I will introduce with simple words what monad is? and how can we use it through my library either_option in flutter project? It targets mainly readers who are unfamiliar with this concept, or who want to see how we can do it in an imperative object oriented language. We will focus on two monads: Either and Option &amp;hellip;
[Read more]</description>
    </item>
    
  </channel>
</rss>