Skip to content

Instantly share code, notes, and snippets.

View weijianzhang's full-sized avatar

Weijian Zhang weijianzhang

View GitHub Profile
@weijianzhang
weijianzhang / graphSearcher.jl
Last active February 3, 2022 19:29
Depth-first searcher: a simple graph type and an implementation of depth first search (DFS) in Julia
import Base: ==, show
#####################
# root
#####################
abstract AbstractGraph
#####################
# node
#####################
@weijianzhang
weijianzhang / gist:32b4eccf6c9d24342262264c2277a1f6
Created September 15, 2019 20:48 — forked from bigsnarfdude/gist:61516f62f2da8ccd20ab491c7506d461
[deep_learning_study] book table of contents
Table of Contents
http://neuralnetworksanddeeplearning.com/about.html
http://neuralnetworksanddeeplearning.com/index.html
http://neuralnetworksanddeeplearning.com/exercises_and_problems.html
http://neuralnetworksanddeeplearning.com/chap1.html
http://neuralnetworksanddeeplearning.com/chap2.html
http://neuralnetworksanddeeplearning.com/chap3.html
http://neuralnetworksanddeeplearning.com/chap4.html
http://neuralnetworksanddeeplearning.com/chap5.html