Skip to content

Instantly share code, notes, and snippets.

View l4rz's full-sized avatar

Mike K. l4rz

View GitHub Profile

Keybase proof

I hereby claim:

  • I am l4rz on github.
  • I am l4rz (https://keybase.io/l4rz) on keybase.
  • I have a public key ASD6dVVI_dssOA6dNog1DJEGoQGxDVGhwqyEi_biv_vWeAo

To claim this, I am signing this object:

[
{
"allowed": [
{
"IPProtocol": "icmp"
}
],
"creationTimestamp": "2020-03-30T14:07:00.728-07:00",
"description": "Allow ICMP from anywhere",
"direction": "INGRESS",
NAME NETWORK DIRECTION PRIORITY ALLOW DENY DISABLED
default-allow-icmp default INGRESS 65534 icmp False
default-allow-internal default INGRESS 65534 tcp:0-65535,udp:0-65535,icmp False
default-allow-rdp default INGRESS 65534 tcp:3389 False
default-allow-ssh default INGRESS 65534 tcp:22 False
l4rz-euw4a-vpc3-allow-icmp l4rz-euw4a-vpc3 INGRESS 1000 icmp False
l4rz-euw4a-vpc3-allow-internal l4rz-euw4a-vpc3 INGRESS 1000 tcp:0-65535,udp:0-65535,icmp False
l4rz-euw4a-vpc3-allow-rdp l4rz-euw4a-vpc3 INGRESS 1000 tcp:3389 False
l4rz-euw4a-vpc3-allow-ssh l4rz-euw4a-vpc3 INGRESS 1000 tcp:22 False
[
{
"autoCreateSubnetworks": false,
"creationTimestamp": "2020-03-31T01:53:14.535-07:00",
"id": "8546085864276408853",
"kind": "compute#network",
"name": "l4rz-euw4a-vpc3",
"peerings": [
{
"autoCreateRoutes": true,
NAME NETWORK PEER_PROJECT PEER_NETWORK AUTO_CREATE_ROUTES STATE STATE_DETAILS
l4rz2router l4rz-euw4a-vpc3 gpt-2-15b-poetry tpu-euw4a True ACTIVE [2020-03-31T01:55:42.417-07:00]: Connected.
[
{
"autoCreateSubnetworks": true,
"creationTimestamp": "2020-03-30T14:06:23.515-07:00",
"description": "Default network for the project",
"id": "6532364033498014112",
"kind": "compute#network",
"name": "default",
"routingConfig": {
"routingMode": "REGIONAL"
NAME SUBNET_MODE BGP_ROUTING_MODE IPV4_RANGE GATEWAY_IPV4
default AUTO REGIONAL
l4rz-euw4a-vpc CUSTOM REGIONAL
l4rz-euw4a-vpc2 CUSTOM REGIONAL
l4rz-euw4a-vpc3 CUSTOM REGIONAL
[
{
"creationTimestamp": "2020-03-30T14:06:46.377-07:00",
"description": "Default local route to the subnetwork 10.156.0.0/20.",
"destRange": "10.156.0.0/20",
"id": "7426702127196529033",
"kind": "compute#route",
"name": "default-route-042574ab739c3f72",
"network": "https://www.googleapis.com/compute/v1/projects/utility-grin-272721/global/networks/default",
"nextHopNetwork": "https://www.googleapis.com/compute/v1/projects/utility-grin-272721/global/networks/default",
NAME NETWORK DEST_RANGE NEXT_HOP PRIORITY
default-route-042574ab739c3f72 default 10.156.0.0/20 default 1000
default-route-0b9f1e6146c66b11 default 10.140.0.0/20 default 1000
default-route-0d5055943aa5804a l4rz-euw4a-vpc2 10.3.128.0/20 l4rz-euw4a-vpc2 1000
default-route-11daac8c62e1b09f default 10.178.0.0/20 default 1000
default-route-1263525c16e385d7 default 0.0.0.0/0 default-internet-gateway 1000
default-route-185877d5235de021 default 10.174.0.0/20 default 1000
default-route-185a79c4e35ea184 default 10.154.0.0/20 default 1000
default-route-236922f973f32b70 default 10.150.0.0/20 default 1000
default-route-28399d4aa129dc68 default 10.168.0.0/20 default 1000
MVP: a digit recognition neural network, trained on MNIST dataset
https://medium.com/swlh/a-hello-world-into-image-recognition-with-mnist-eb9b91520db4
---
Simple neural network implementation in C:
https://towardsdatascience.com/simple-neural-network-implementation-in-c-663f51447547
(complete code: https://gist.github.com/espiritusanti/b7485c68a06ef2c8c76d8c62c8c39d8f)
Simple MLP Backpropagation Artificial Neural Network in C++ (Step by Step):