All Projects → cstorm125 → Sophia

cstorm125 / Sophia

Neural networks from scratch

Projects that are alternatives of or similar to Sophia

Tsa
The Thalesians' Time Series Analysis (TSA) library
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Python Data Science Handbook
A Chinese translation of Jake Vanderplas' "Python Data Science Handbook". 《Python数据科学手册》在线Jupyter notebook中文翻译
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Mlts
Machine Learning Toolkit for SEO
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Loads clustering
Data Science project to cluster loads coming from http://en.openei.org/datasets/files/961/pub/
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Deep ctr
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Advanced Deep Learning With Python
Advanced Deep Learning with Python
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Dlschl
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Lt Gee
Google Earth Engine implementation of the LandTrendr spectral-temporal segmentation algorithm. For documentation see:
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Facemesh.pytorch
This is the PyTorch implementation of paper Real-time Facial Surface Geometry from Monocular Video on Mobile GPUs (https://arxiv.org/pdf/1907.06724.pdf)
Stars: ✭ 101 (-1.94%)
Mutual labels:  jupyter-notebook
Fer
Facial Expression Recognition with a deep neural network as a PyPI package
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Pokelyzer
A webhook listener and database schema for doing geospatial analysis and advanced analytics on Pokemon Go data.
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
End To End Time Series
This repository hosts code for my Time Series videos part of playlist here - https://www.youtube.com/playlist?list=PL3N9eeOlCrP5cK0QRQxeJd6GrQvhAtpBK
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Jumptutorials.jl
Tutorials on using JuMP for mathematical optimization in Julia
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Sst
SST: Single-Stream Temporal Action Proposals (Official Repo)
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Personlab Tf
implementation of PersonLab(https://arxiv.org/abs/1803.08225) using TF-slim
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Scipy2017 Jupyter Widgets Tutorial
Notebooks for the SciPy 2017 tutorial "The Jupyter Interactive Widget Ecosystem"
Stars: ✭ 102 (-0.97%)
Mutual labels:  jupyter-notebook
Ddn
Deep Declarative Networks
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Dlnotebooks
INACTIVE - please go to https://gitlab.com/juliensimon/dlnotebooks
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Sigmoidal ai
Tutoriais de Python, Data Science, Machine Learning e Deep Learning - Sigmoidal
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook
Dl Workshop
Master gradient-based machine learning. Also secretly a JAX course in disguise!
Stars: ✭ 103 (+0%)
Mutual labels:  jupyter-notebook

Project Sophia: Make Neural Networks from Scratch

Plagiarized from Inspired by Andrej Karparthy's cs231n and Colah's Blog.

This notebook recreates neural network algorithms using only the linear algebra library numpy (uses other libraries for performance benchmark and visualization). The sample data is a 2-dimensional data with three classes in a form of spirals.

The content consists of the following aspects of neural networks:

  • Weight initialization
  • Loss functions
    • Cross-entropy loss
    • Hinge loss
    • Regularization loss
  • Layers
    • Linear
    • Sigmoid
    • Tanh
    • ReLu
    • Swish
    • Softmax
    • SVM
    • Dropout
    • Batch Normalization
    • Convolution (TBD)
    • LSTM (TBD)
    • Embeddings (TBD)
  • Training
    • Linear > Softmax
    • Linear > SVM
    • [Linear > Activation]++ > [Linear > Output]
  • Optimization (TBD)
  • Validation (TBD)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].