neural-networks

Basic neural network tutorial notebooks

https://github.com/machine-learning-tutorial/neural-networks

Science Score: 67.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 4 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.5%) to scientific vocabulary

Keywords

neural-network pytorch tutorial
Last synced: 4 months ago · JSON representation ·

Repository

Basic neural network tutorial notebooks

Basic Info
  • Host: GitHub
  • Owner: machine-learning-tutorial
  • License: gpl-3.0
  • Language: Jupyter Notebook
  • Default Branch: main
  • Homepage:
  • Size: 17.1 MB
Statistics
  • Stars: 2
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 2
Topics
neural-network pytorch tutorial
Created almost 2 years ago · Last pushed over 1 year ago
Metadata Files
Readme License Citation

README.md

Tutorial on basic neural network concepts

DOI License: GPL v3

Material for this tutorial

Download the repository

Get the repository with Git

You will need to have Git previously installed in your computer. To check if you have it installed, open your terminal and type:

bash git --version

Git installation in MacOS

bash brew update brew install git

Git installation in Linux

In Ubuntu/Debian

bash sudo apt install git

In CentOS

bash sudo yum install git

Once you have Git installed open your terminal, go to your desired directory, and type:

bash git clone https://github.com/machine-learning-tutorial/neural-networks cd neural-networks

Get the repository with direct download

Open your terminal, go to your desired directory, and type:

bash wget https://github.com/machine-learning-tutorial/neural_networks/archive/refs/heads/main.zip unzip main.zip cd neural-networks

Getting started

You need to install the dependencies before running the notebooks.

Using conda

If you don't have conda installed already and want to use conda for environment management, you can install the miniconda as described here.

  • Create a conda env with conda create -n nn-tutorial python=3.10
  • Activate the environment with conda activate nn-tutorial
  • Install the required packages via pip install -r requirements.txt.
  • Run the following commands:

bash python -m jupyter contrib nbextension install --user python -m jupyter nbextension enable varInspector/main

  • After the tutorial you can remove your environment with conda remove -n nn-tutorial --all

Using venv only

If you do not have conda installed:

Alternatively, you can create the virtual env with venv in the standard library

bash python -m venv nn-tutorial

and activate the env with $ source /bin/activate (bash) or C:> /Scripts/activate.bat (Windows)

Then, install the packages with pip within the activated environment

bash python -m pip install -r requirements.txt python -m jupyter contrib nbextension install --user python -m jupyter nbextension enable varInspector/main

Afterwards, you should be able to run the provided notebooks.

Running the tutorial

After installing the package

You can start the jupyter notebook in the terminal, and it will start a browser automatically

bash python -m jupyter notebook

Alternatively, you can use supported Editor to run the jupyter notebooks, e.g. with VS Code.

Jupyter Notebooks

Use cmd+Enter to execute one cell block

Part 1 Neural Network Basics

The first part of the tutorial is in 1-neural_networks.ipynb.

Part 2 MNIST Training

The second part of the tutorial is in 2-mnist_training.ipynb

Citing the tutorial

This tutorial is registered Zenodo. Please use this DOI when citing this code:

bibtex @software{santamaria_garcia_2024_10792273, author = {Santamaria Garcia, Andrea and Xu, Chenran}, title = {Tutorial on basic neural network concepts}, month = 03, year = 2024, publisher = {Zenodo}, version = {v1.0.1}, doi = {10.5281/zenodo.10792273}, url = {https://doi.org/10.5281/zenodo.10792273} }

Disclaimer

The content of this repository was developed by the AI4Accelerators team at the Institute of Beam Physics and Technology (IBPT), Karlsruhe Institute of Technology.

Owner

  • Name: machine learning tutorial
  • Login: machine-learning-tutorial
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
  - family-names: Santamaria Garcia
    given-names: Andrea
    affiliation: Karlsruhe Institute of Technology
    orcid: "https://orcid.org/0000-0002-7498-7640"
  - family-names: Xu
    given-names: Chenran
    affiliation: Karlsruhe Institute of Technology
    orcid: "https://orcid.org/0000-0002-5034-2207"
title: "Tutorial on basic neural network concepts"
date-released: 2024-03-25
type: software
version: 1.0.1
doi: 10.5281/zenodo.10792273
license: GPL-3.0
url: "https://github.com/machine-learning-tutorial/neural-networks"

GitHub Events

Total
  • Watch event: 2
Last Year
  • Watch event: 2

Dependencies

.github/workflows/publish_website.yaml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • s0/git-publish-subdir-action develop composite
requirements.txt pypi
  • h5py *
  • jupyterlab *
  • matplotlib *
  • numpy *
  • scikit-learn *
  • scikit-optimize *
  • torch *
  • torchvision *