Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation update [Introduction + Installation] #46

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 66 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,33 @@
# MEDIUM_NoteBook
Repository containing notebooks of my posts on [MEDIUM](https://medium.com/@cerlymarco).
<h2 align="center">
Author: Marco Cerliani
</h2>

To be notified every time a new post is published, **SUBSCRIBE [HERE](https://medium.com/subscribe/@cerlymarco)**.
<p align="center">
<img width="926" alt="moon_image" src="https://user-images.githubusercontent.com/73865366/218138789-22c2e862-3bd7-411f-baf9-7bf273d9a118.png">
</p>

[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/cerlymarco)
<h2>
Objective
</h2>
<p>
Arrange my <a href="https://medium.com/@cerlymarco" target="_blank"><img src="https://user-images.githubusercontent.com/73865366/218152803-5f9895fa-3d69-40d7-9bf6-8f07f790cd1a.png" width="70" alt="Medium Profile" /></a> posts and accompanying code in a clear and concise manner, enabling easy access for readers who may wish to reuse the code.
</p>

<h2>
About Me
</h2>
<p align="left">
I am a statistician with a deep understanding of artificial intelligence and machine learning. I have devoted my career to the exploration and advancement of these fields, and my passion for statistical modeling and data analysis has driven me to pursue a role as a data scientist. In addition to my professional work, I also actively engage in writing and sharing my insights on Medium.com. My articles, which focus on a variety of topics related to artificial intelligence and machine learning, are available for view on my Github profile. These pieces are organized and ordered by their most recent publication date with Jupyter Notebook code attached, providing a clear and accessible resource for readers.
</p>

<h3 align="left">
<a href="https://www.buymeacoffee.com/cerlymarco" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" width="120" alt="Buy Me A Coffee" /></a>
<a width="100" href="https://stackoverflow.com/users/10375049/marco-cerliani" target="_blank"><img src="https://www.vectorlogo.zone/logos/stackoverflow/stackoverflow-official.svg" width="150" alt="Stack Overflow" /></a>
<a href="https://www.linkedin.com/in/marco-cerliani-b0bba714b/?source=about_page-------------------------------------" target="_blank"><img src="https://logos-download.com/wp-content/uploads/2016/03/LinkedIn_Logo_2019.png" width="110" alt="LinkedIn" /></a>
<img width="110" alt="Screen_Shot_2023-02-10_at_11 56 25_AM-removebg-preview" src="https://user-images.githubusercontent.com/73865366/218150696-ec1637a2-a42e-407c-ac8c-500153a071db.png" alt="Subscribe">
</h3>

<br>

## Posts ordered by most recently publishing date
- PCA for Multivariate Time Series: Forecasting Dynamic High-Dimensional Data [[post](https://medium.com/towards-data-science/pca-for-multivariate-time-series-forecasting-dynamic-high-dimensional-data-ab050a19e8db)]|[[code](https://github.com/cerlymarco/MEDIUM_NoteBook/tree/master/PCA_MultivariateForecasting)]
Expand Down Expand Up @@ -77,3 +101,41 @@ To be notified every time a new post is published, **SUBSCRIBE [HERE](https://me
- Remaining Life Estimation with Keras [[post](https://towardsdatascience.com/remaining-life-estimation-with-keras-2334514f9c61)]|[[code](https://github.com/cerlymarco/MEDIUM_NoteBook/tree/master/Remaining_Life_Estimation)]
- Quality Control with Machine Learning [[post](https://towardsdatascience.com/quality-control-with-machine-learning-d7aab7382c1e)]|[[code](https://github.com/cerlymarco/MEDIUM_NoteBook/tree/master/Quality_Control)]
- Predictive Maintenance: detect Faults from Sensors with CNN [[post](https://towardsdatascience.com/predictive-maintenance-detect-faults-from-sensors-with-cnn-6c6172613371)]|[[code](https://github.com/cerlymarco/MEDIUM_NoteBook/tree/master/Predictive_Maintenance)]

<br>
<h2> Installation </h2>
<p>
Setup and install Anaconda and Jupyter Notebook ~ alternatively Google Colab

Download Anaconda from https://www.anaconda.com/products/distribution#Downloads selecting defaults
<img width="400" alt="Screen Shot 2023-02-12 at 4 55 40 PM" src="https://user-images.githubusercontent.com/73865366/218339597-2e167696-bacf-4dd0-b76b-e40cfe561ea3.png">


<h3>In Terminal</h3>

Install Jupyter Notebook

<img width="680" alt="Screen Shot 2023-02-12 at 4 54 27 PM" src="https://user-images.githubusercontent.com/73865366/218339528-ac37a7eb-ed97-4b97-b40f-00f3285ee952.png">

Install pip package manager

<img width="682" alt="Screen Shot 2023-02-12 at 4 56 59 PM" src="https://user-images.githubusercontent.com/73865366/218339664-aee7c629-1955-4b83-9d9c-c4c2500c717f.png">

Create environment

Ex. env named tf-1.15, installing TensorFlow package version 1.15 in the ipykernel
<img width="675" alt="Screen Shot 2023-02-12 at 4 58 20 PM" src="https://user-images.githubusercontent.com/73865366/218339747-03e74204-90c3-4f35-9841-3a238c5c6a4b.png">

Type

<img width="674" alt="Screen Shot 2023-02-12 at 5 00 18 PM" src="https://user-images.githubusercontent.com/73865366/218339849-9629724f-4c46-4e17-92fc-1a0dd5305862.png">
to begin!


<h4>Tip</h4>
To install additional packages

<strong>conda activate [current env]</strong><br>
<strong>conda install [package]</strong>

</p>