KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#deepseek-harness
#dsh-plugin
#open-source
#ai
#cli
#dsh
#claude-code
#codex
#developer-tools
#react
sophia
★ 108
Open GitHub ↗
Neural networks from scratch
Download README (.md)
Explore Similar Repositories
abacus-common
:
Release the power in Java programming
mat-progress-buttons
:
Very simple Angular6+ Material Design progress buttons
ppo
:
Proximal Policy Optimization implementation with TensorFlow
RxStoreKit
:
StoreKit library for RxSwift
multitenancy-dynamic-tenant
:
Spring Boot 2 JPA Hibernate with database per tenant with dynamic configuration of tenants, secured by Spring Security
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
sophia
?
Download (.md)
# Project Sophia: Make Neural Networks from Scratch ~~Plagiarized from~~ Inspired by [Andrej Karparthy's cs231n](http://cs231n.github.io/neural-networks-case-study/) and [Colah's Blog](http://colah.github.io/posts/2015-08-Backprop/). 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)