Make a Neural Network Using Excel
This is strictly technical. Details will be added soon.
Excel Formulas Used
Sigmoid Function
=RAND()
=1/(1+EXP(-(X)))
Derivative of Sigmoid Function
=(1/(1+EXP(-(X)))(1- 1/(1+EXP(-(X)))))
Screenshots
Download
more ...About
Hasi has background in
- Python, JavaScript, PyQuil, Quantum Computing.
- Algebraic Topology, Calculus, Set Theory.
- Quantum Mechanics.
- Freelance programmer since 2017.
- Contributer at IBM Quantum Computing
more ...
Beam Theory Calculus with Python
With Python Sympy
Installing Dependencies
pip install sympy
pip3 install sympy
The Problem
Solve for Shear Force, Bending Moment and Deflection/Elastic Curve.
Result
Solution
# Author: Hasi
# QuantumNovice.github.io
from sympy import *
from sympy.physics.continuum_mechanics.beam import Beam
import matplotlib.pyplot as plt
from matplotlib import style
style …
Configuring Git
Setting Up SSH Keys
ssh-keygen
ssh-add <private-key>
Creating Repo
Move to the repository annd execute the following commands
git init
git add .
git remote add origin git@github.com:username/new_repo
git push -u origin master
git remote add origin https://github.com/username/new_repository