-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (55 loc) · 5.35 KB
/
index.html
File metadata and controls
80 lines (55 loc) · 5.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html lang="en-US"><head>
<meta charset="UTF-8">
<!-- Begin Jekyll SEO tag v2.6.1 -->
<title>Machine Learning Explorations | Machine-Learning-Notebooks</title>
<meta name="google-site-verification" content="N23cn7NnqiBGS4jl6A8jcrBLMQ_8kJyoWl3OI42Ksrk" />
<meta name="generator" content="Jekyll v3.9.0">
<meta property="og:title" content="Machine Learning Explorations">
<meta property="og:locale" content="en_US">
<meta name="description" content="A Collection of Notebooks to help ml enthusiasts explore fundamentals and understand concepts . This will also be a guide to do your experiments on hyper parameters , network building or other programming heuristics .">
<meta property="og:description" content="A Collection of Notebooks to help ml enthusiasts explore fundamentals and understand concepts . This will also be a guide to do your experiments on hyper parameters , network building or other programming heuristics .">
<link rel="canonical" href="https://deathstar1.github.io/Machine-Learning-Notebooks/">
<meta property="og:url" content="https://deathstar1.github.io/Machine-Learning-Notebooks/">
<meta property="og:site_name" content="Machine-Learning-Notebooks">
<script type="application/ld+json">
{"@type":"WebSite","url":"https://deathstar1.github.io/Machine-Learning-Notebooks/","description":"A Collection of Notebooks to help ml enthusiasts explore fundamentals and understand concepts . This will also be a guide to do your experiments on hyper parameters , network building or other programming heuristics .","name":"Machine-Learning-Notebooks","headline":"Machine Learning Explorations","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<link rel="stylesheet" href="/Machine-Learning-Notebooks/assets/css/style.css?v=ea5cf7444028546f8430975b5ca7ea9b96c80b11">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Machine-Learning-Notebooks</h1>
<h2 class="project-tagline">A Collection of Notebooks to help ml enthusiasts explore fundamentals and understand concepts . This will also be a guide to do your experiments on hyper parameters , network building or other programming heuristics .</h2>
<a href="https://github.com/deathstar1/Machine-Learning-Notebooks" class="btn">View on GitHub</a>
</section>
<section class="main-content">
<h1 id="machine-learning-explorations">Machine Learning Explorations</h1>
<p>Repo to explore fundamentals and understand if possible to improve by experimenting with novel and mathematical ideas.
This is also helpful resource , if you are learning Machine learning.</p>
<h3 id="want-to-run-these-notebooks-on-your-own-machine">Want to run these notebooks on your own machine?</h3>
<p>Start by installing <a href="https://www.anaconda.com/distribution/">Anaconda</a> (or <a href="https://docs.conda.io/en/latest/miniconda.html">Miniconda</a>), <a href="https://git-scm.com/downloads">git</a>, and if you have a TensorFlow-compatible GPU, install the <a href="https://www.nvidia.com/Download/index.aspx">GPU driver</a>.</p>
<p>Next, clone this project by opening a terminal and typing the following commands (do not type the first <code class="language-plaintext highlighter-rouge">$</code> signs on each line, they just indicate that these are terminal commands):</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ git clone https://github.com/deathstar1/Exploration.git
$ cd exploration
</code></pre></div></div>
<p>If you want to use a GPU, then edit <code class="language-plaintext highlighter-rouge">environment.yml</code> (or <code class="language-plaintext highlighter-rouge">environment-windows.yml</code> on Windows) and replace <code class="language-plaintext highlighter-rouge">tensorflow=2.0.0</code> with <code class="language-plaintext highlighter-rouge">tensorflow-gpu=2.0.0</code>. Also replace <code class="language-plaintext highlighter-rouge">tensorflow-serving-api==2.0.0</code> with <code class="language-plaintext highlighter-rouge">tensorflow-serving-api-gpu==2.0.0</code>.</p>
<p>Next, run the following commands:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ conda env create -f environment.yml # or environment-windows.yml on Windows
$ conda activate tf2
$ python -m ipykernel install --user --name=python3
</code></pre></div></div>
<p>Finally, start Jupyter:</p>
<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>$ jupyter notebook
</code></pre></div></div>
<h1 id="future-works">Future works</h1>
<p>Will be annotating all the important piece of code with explanations so that it will be helpful for other programmers .</p>
<h1 id="at-last">At last</h1>
<p>If you think it’s good, give a Star ⭐️ Encourage me~</p>
<footer class="site-footer">
<span class="site-footer-owner"><a href="https://github.com/deathstar1/Machine-Learning-Notebooks">Machine-Learning-Notebooks</a> is maintained by <a href="https://github.com/deathstar1">deathstar1</a>.</span>
<span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span>
</footer>
</section>
</body></html>