Skip to content

Commit 8946f80

Browse files
book
1 parent 7afca2f commit 8946f80

22 files changed

+1666
-1850
lines changed

.github/workflows/deploy.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See https://github.com/rust-lang/mdBook/wiki/Automated-Deployment%3A-GitHub-Actions
2+
name: Deploy
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write # To push a branch
13+
pages: write # To push to a GitHub Pages site
14+
id-token: write # To update the deployment status
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
19+
- name: Install latest mdbook
20+
run: |
21+
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
22+
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
23+
mkdir mdbook
24+
curl -sSL $url | tar -xz --directory=./mdbook
25+
echo `pwd`/mdbook >> $GITHUB_PATH
26+
- name: Build Book
27+
run: |
28+
# This assumes your book is in the root of your repository.
29+
# Just add a `cd` here if you need to change to another directory.
30+
mdbook build
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
- name: Upload artifact
34+
uses: actions/upload-pages-artifact@v3
35+
with:
36+
# Upload entire repository
37+
path: 'book'
38+
- name: Deploy to GitHub Pages
39+
id: deployment
40+
uses: actions/deploy-pages@v4

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
book/

Getting started with Neuomporhic Computing.py

-3
This file was deleted.

README.md

+1-1,847
Large diffs are not rendered by default.

book.toml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[book]
2+
authors = ["Jonathan Woollett-Light", "Michael Royal "]
3+
language = "en"
4+
multilingual = false
5+
src = "src"
6+
title = "Neuromorphic Computing Guide"

src/SUMMARY.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Summary
2+
3+
- [Getting Started with Neuromorphic Computing](./chapter_0.md)
4+
- [Neuromorphic Computing Tools, Libraries, and Frameworks](./chapter_1.md)
5+
- [Algorithms](./chapter_2.md)
6+
- [Machine Learning](./chapter_3.md)
7+
- [Deep Learning Development](./chapter_4.md)
8+
- [Reinforcement Learning Development](./chapter_5.md)
9+
- [Computer Vision Development](./chapter_6.md)
10+
- [NLP Development](./chapter_7.md)
11+
- [Bioinformatics](./chapter_8.md)
12+
- [Robotics Development](./chapter_9.md)
13+
- [Electric charge, field, and potential](./chapter_10.md)
14+
- [Electromagnetic waves and interference](./chapter_11.md)
15+
- [CUDA Development](./chapter_12.md)
16+
- [MATLAB Development](./chapter_13.md)
17+
- [Python Development](./chapter_14.md)
18+
- [C/C++ Development](./chapter_15.md)

src/chapter_0.md

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!-- <img style="max-height:300px;" src="https://user-images.githubusercontent.com/45159366/135770914-155e462b-3ad3-4ca6-be97-505e7b0bc201.png"> -->
2+
3+
<!-- <img style="max-height:300px;" src="https://user-images.githubusercontent.com/45159366/135770894-8f07e3db-59f8-44cd-9105-cee2885aef8f.png"> -->
4+
5+
# Getting Started with Neuromorphic Computing
6+
7+
Neuromorphic Computing is the use of very large scale integration (VLSI) systems containing electronic analog circuits to simulate the neuro-biological architectures present in the human brain ad nervous system.
8+
9+
<p align="center"><img style="max-height:300px;" src="https://user-images.githubusercontent.com/45159366/192233734-905ff1fe-3e5e-4c50-ac5b-fd2cc68ae77d.png"></p>
10+
11+
Intel Loihi 2, its second-generation neuromorphic research chip.
12+
13+
<p align="center"><img style="max-height:300px;" src="https://user-images.githubusercontent.com/45159366/192233740-d6b7704e-2aad-4f66-b8ee-4b35d606dc0c.png"></p>
14+
15+
The Akida Neuromorphic System-on-Chip (NSoC) developed by BrainChip.
16+
17+
## Developer Resources
18+
19+
- [Neuromorphic Computing - Next Generation of AI | Intel](https://www.intel.com/content/www/us/en/research/neuromorphic-computing.html)
20+
- [Next-Level Neuromorphic Computing: Intel Lab's Loihi 2 Chip | Intel](https://www.intel.com/content/www/us/en/research/neuromorphic-computing-loihi-2-technology-brief.html)
21+
- [Neuromorphic Computing | NIST](https://www.nist.gov/programs-projects/neuromorphic-computing)
22+
- [Programming and Usability of Neuromorphic Computing | ORNL](https://www.ornl.gov/division/csmd/projects/programming-and-usability-neuromorphic-computing)
23+
- [Neuromorphic Computing | EBRAINS Research Infrastructure](https://ebrains.eu/service/neuromorphic-computing/)
24+
- [Neuromorphic devices & systems | IBM Research Zurich](https://www.zurich.ibm.com/st/neuromorphic/)
25+
- [Light-Emitting Artificial Synapses for Neuromorphic Computing (Research Paper PDF)](https://spj.sciencemag.org/journals/research/2022/9786023/)
26+
27+
### Online Training Courses
28+
29+
- [Top Computational Neuroscience Courses Online | Coursera](https://www.coursera.org/courses?query=computational%20neuroscience)
30+
- [Computational Neuroscience Course Online | Coursera](https://www.coursera.org/learn/computational-neuroscience)
31+
- [Computational Neuroscience: Neuronal Dynamics of Cognition Course Online | edX](https://www.edx.org/course/computational-neuroscience-neuronal-dynamics-of-co)
32+
- [Fundamentals of Neuroscience, Part 1: The Electrical Properties of the Neuron | Harvard Online Learning](https://online-learning.harvard.edu/course/fundamentals-neuroscience-part-1-electrical-properties-neuron?delta=2)
33+
- [Fundamentals of Neuroscience, Part 2: Neurons and Networks | Harvard Online Learning](https://online-learning.harvard.edu/course/fundamentals-neuroscience-part-2-neurons-and-networks?delta=2)
34+
- [Fundamentals of Neuroscience, Part 3: The Brain | Harvard Online Learning](https://online-learning.harvard.edu/course/fundamentals-neuroscience-part-3-brain?delta=2)
35+
- [Introduction to Computational Neuroscience | MIT OpenCourseWare](https://ocw.mit.edu/courses/brain-and-cognitive-sciences/9-29j-introduction-to-computational-neuroscience-spring-2004/)
36+
- [Brain and Cognitive Sciences Online Course | MIT OpenCourseWare](https://ocw.mit.edu/courses/brain-and-cognitive-sciences/)
37+
- [Getting Started with PyTorch](https://pytorch.org/get-started/locally/)
38+
- [Top Pytorch Courses Online | Coursera](https://www.coursera.org/courses?query=pytorch&page=1)
39+
- [Top Pytorch Courses Online | Udemy](https://www.udemy.com/topic/PyTorch/)
40+
- [Learn PyTorch with Online Courses and Classes | edX](https://www.edx.org/learn/pytorch)
41+
- [Intro to Deep Learning with PyTorch | Udacity](https://www.udacity.com/course/deep-learning-pytorch--ud188)
42+
- [PyTorch on Azure - Deep Learning with PyTorch | Microsoft Azure](https://azure.microsoft.com/en-us/develop/pytorch/)
43+
- [Deep Learning with PyTorch | Amazon Web Services (AWS)](https://aws.amazon.com/pytorch/)
44+
- [Getting started with PyTorch on Google Cloud](https://cloud.google.com/ai-platform/training/docs/getting-started-pytorch)
45+
46+
### Books
47+
48+
- [Neuromorphic Computing Principles and Organization by Abderazek Ben Abdallah and Khanh N. Dang](https://www.amazon.com/Neuromorphic-Computing-Principles-Organization-Abderazek-ebook-dp-B0B2VWTBJH/dp/B0B2VWTBJH/ref=mt_other?_encoding=UTF8&me=&qid=1664159825)
49+
- [Neuromorphic Computing and Beyond: Parallel, Approximation, Near Memory, and Quantum by Khaled Salah Mohamed](https://www.amazon.com/Neuromorphic-Computing-Beyond-Parallel-Approximation/dp/3030372235)
50+
- [Neuromorphic Engineering: The Scientist's, Algorithm Designer's, and Computer Architect's Perspectives on Brain-Inspired Computing by Elishai Ezra Tsur](https://www.amazon.com/Neuromorphic-Engineering-Scientists-Perspectives-Brain-Inspired/dp/036767680X/ref=sr_1_3?crid=1Q98YGBP8R3T5&keywords=Neuromorphic+Computing&qid=1664159919&qu=eyJxc2MiOiIzLjk0IiwicXNhIjoiMy42NSIsInFzcCI6IjIuNzUifQ%3D%3D&refinements=p_72%3A1250221011&rnid=1250219011&s=books&sprefix=neuromorphic+computing%2Cstripbooks%2C329&sr=1-3)
51+
- [Memristors for Neuromorphic Circuits and Artificial Intelligence Applications by Jordi Suñé](https://www.amazon.com/Memristors-Neuromorphic-Artificial-Intelligence-Applications/dp/3039285769/ref=sr_1_2?crid=1Q98YGBP8R3T5&keywords=Neuromorphic+Computing&qid=1664159919&qu=eyJxc2MiOiIzLjk0IiwicXNhIjoiMy42NSIsInFzcCI6IjIuNzUifQ%3D%3D&refinements=p_72%3A1250221011&rnid=1250219011&s=books&sprefix=neuromorphic+computing%2Cstripbooks%2C329&sr=1-2)
52+
- [Learning in Energy-Efficient Neuromorphic Computing: Algorithm and Architecture Co-Design by Nan Zheng, Pinaki Mazumder](https://www.google.com/books/edition/Learning_in_Energy_Efficient_Neuromorphi/IvC0DwAAQBAJ?hl=en&gbpv=0)
53+
- [Neuromorphic Devices for Brain-inspired Computing: Artificial Intelligence, Perception, and Robotics by Qing Wan, Yi Shi](https://www.google.com/books/edition/Neuromorphic_Devices_for_Brain_inspired/GLtREAAAQBAJ?hl=en&gbpv=0)
54+
- [Understanding and Bridging the Gap between Neuromorphic Computing and Machine Learning by Huajin Tang, Kaushik Roy, Lei Deng](https://www.google.com/books/edition/Understanding_and_Bridging_the_Gap_betwe/mrIsEAAAQBAJ?hl=en&gbpv=0)
55+
- [Photo-Electroactive Non-Volatile Memories for Data Storage and Neuromorphic Computing by Ye Zhou, Suting Han](https://www.google.com/books/edition/Photo_Electroactive_Non_Volatile_Memorie/03rnDwAAQBAJ?hl=en)
56+
- [Neuromorphic Photonics by Bhavin J. Shastri, Paul R. Prucnal](https://www.google.com/books/edition/Neuromorphic_Photonics/VbvODgAAQBAJ?hl=en&gbpv=0)
57+
58+
### YouTube videos
59+
60+
- [Neuromorphic Computing Explained | Jeffrey Shainline and Lex Fridman](https://www.youtube.com/watch?v=u22-2CTErIQ)
61+
- [Brains Behind the Brains: Mike Davies and Neuromorphic Computing at Intel Labs | Intel](https://www.youtube.com/watch?v=GN3eSMoJcM8)
62+
- [How Neuromorphic Computing Uses the Human Brain as a Model | Intel Labs](https://www.youtube.com/watch?v=Z1GdHNwQtt4)
63+
- [ESWEEK 2021 Education - Introduction to Neuromorphic Computing](https://www.youtube.com/watch?v=gzD3ygkoJKE)
64+
- [Stanford Seminar: Neuromorphic Chips: Addressing the Nanostransistor Challenge](https://www.youtube.com/watch?v=vHlbC74RJGU)
65+
- [Brain-Like (Neuromorphic) Computing - Computerphile](https://www.youtube.com/watch?v=Qow8pIvExH4)
66+
- [Photonic Neuromorphic Computing: The Future of AI? | ExplainingComputers ](https://www.youtube.com/watch?v=hBFLeQlG2og)
67+
- [Machine learning + neuroscience = biologically feasible computing | Benjamin Migliori | TEDxSanDiego](https://www.youtube.com/watch?v=iPdKMs9cEAs)

0 commit comments

Comments
 (0)