<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Deep Learning |</title><link>https://fouedhamouda.netlify.app/tag/deep-learning/</link><atom:link href="https://fouedhamouda.netlify.app/tag/deep-learning/index.xml" rel="self" type="application/rss+xml"/><description>Deep Learning</description><generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><lastBuildDate>Wed, 27 Apr 2016 00:00:00 +0000</lastBuildDate><image><url>https://fouedhamouda.netlify.app/media/icon_hua2ec155b4296a9c9791d015323e16eb5_11927_512x512_fill_lanczos_center_2.png</url><title>Deep Learning</title><link>https://fouedhamouda.netlify.app/tag/deep-learning/</link></image><item><title>Lectures</title><link>https://fouedhamouda.netlify.app/blog/internal-project-3/</link><pubDate>Wed, 27 Apr 2016 00:00:00 +0000</pubDate><guid>https://fouedhamouda.netlify.app/blog/internal-project-3/</guid><description>
&lt;div id="TOC">
&lt;/div>
&lt;p>In this section, you will find my course lectures at the University of Gabès&lt;/p>
&lt;ul>
&lt;li>&lt;a href="https://foha2001.github.io/financeinternationale-website/">Course #1: International Finance&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://foha2001.github.io/MAEE/">Course #2: Advanced methods to firm’s evaluation&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://foha2001.github.io/finance-d-entreprise/">Course #3: Corporate finance&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://foha2001.github.io/IF/">Course #4: Financial engineering&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://sites.google.com/view/tfaisgg/accueil">Course #5: Advanced Financial Theory&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://sites.google.com/view/tfaisg/accueil">Course #6: Financial Actuarial Techniques&lt;/a>&lt;/li>
&lt;/ul>
&lt;p>All websites are in french language (the official leaning language at the university of Gabès)&lt;/p></description></item><item><title>Risk Management blog</title><link>https://fouedhamouda.netlify.app/blog/internal-project-2/</link><pubDate>Wed, 27 Apr 2016 00:00:00 +0000</pubDate><guid>https://fouedhamouda.netlify.app/blog/internal-project-2/</guid><description>
&lt;div id="TOC">
&lt;ul>
&lt;li>&lt;a href="#material-building-packages-code" id="toc-material-building-packages-code">Material Building packages code&lt;/a>&lt;/li>
&lt;li>&lt;a href="#build-normal-distribution" id="toc-build-normal-distribution">build Normal distribution&lt;/a>&lt;/li>
&lt;li>&lt;a href="#function-to-create-asymetric-distribution" id="toc-function-to-create-asymetric-distribution">function to create asymetric distribution&lt;/a>&lt;/li>
&lt;/ul>
&lt;/div>
&lt;style type="text/css">
p1 {
font-size: 12pt;
font-weight: bold;
}
h1 { /* Header 2 */
font-size: 32px;
color: DarkBlue;
font-weight: bold;
}
h2 { /* Header 1 */
font-size: 24px;
color: green;
font-weight: bold;
}
h3 { /* Header 2 */
font-size: 24px;
color: #9d3ae8;
font-weight: bold;
}
&lt;/style>
&lt;div id="material-building-packages-code" class="section level2">
&lt;h2>Material Building packages code&lt;/h2>
&lt;p>To build package use these commands:&lt;/p>
&lt;pre class="r">&lt;code> library(devtools)&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## Warning: le package &amp;#39;devtools&amp;#39; a été compilé avec la version R 4.2.3&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## Le chargement a nécessité le package : usethis&lt;/code>&lt;/pre>
&lt;pre class="r">&lt;code> library(usethis) &lt;/code>&lt;/pre>
&lt;ul>
&lt;li>usethis::use_r(“nomdufichier”) : to add R file and write function&lt;/li>
&lt;li>devtools::load_all() : to load all related functions to yours&lt;/li>
&lt;li>devtools::install() : to install your package&lt;/li>
&lt;li>devtools::document() : to document your package using roxygen&lt;/li>
&lt;li>usethis::create_package() : to directly create package&lt;/li>
&lt;li>usethis::use_git() : to use package version control vith github&lt;/li>
&lt;li>devtools::load_all() : to load all source functions to be able to test package&lt;/li>
&lt;li>devtools::check() : to check our package&lt;/li>
&lt;li>use_data_raw() : create file to build data&lt;/li>
&lt;li>usethis::use_data(my data, compress=“xz”): to add data to my package&lt;/li>
&lt;li>use_package(“add any package you need”) : add any package to import from to description file&lt;/li>
&lt;/ul>
&lt;/div>
&lt;div id="build-normal-distribution" class="section level2">
&lt;h2>build Normal distribution&lt;/h2>
&lt;pre class="r">&lt;code>x &amp;lt;- seq(-4,4, length=1000)
hx &amp;lt;- dnorm(x,mean=0, sd=1)
plot(x, hx, type=&amp;quot;l&amp;quot;, xlab = &amp;quot;valeur de x&amp;quot;, ylab=&amp;quot;density&amp;quot;, main=&amp;quot;loi normale&amp;quot;)&lt;/code>&lt;/pre>
&lt;p>&lt;img src="https://fouedhamouda.netlify.app/blog/internal-project-2/index_files/figure-html/unnamed-chunk-2-1.png" width="672" />&lt;/p>
&lt;/div>
&lt;div id="function-to-create-asymetric-distribution" class="section level2">
&lt;h2>function to create asymetric distribution&lt;/h2>
&lt;pre class="r">&lt;code>fs = function(x,epsilon,delta) dnorm(sinh(delta*asinh(x)-epsilon))*delta*cosh(delta*asinh(x)-epsilon)/sqrt(1+x^2)
vec = seq(-5,5,0.001)
plot(vec,fs(vec,0,1),type=&amp;quot;l&amp;quot;)
points(vec,fs(vec,-2,1.3),type=&amp;quot;l&amp;quot;,col=&amp;quot;red&amp;quot;)
points(vec,fs(vec,1.3,1),type=&amp;quot;l&amp;quot;,col=&amp;quot;blue&amp;quot;)&lt;/code>&lt;/pre>
&lt;p>&lt;img src="https://fouedhamouda.netlify.app/blog/internal-project-2/index_files/figure-html/unnamed-chunk-3-1.png" width="672" />&lt;/p>
&lt;/div></description></item></channel></rss>