Skip to content

greenhandZ/hello_world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

hello_world

Just another repository

standard neural network with python

def parameters_initializer(lst):
    """
    lst--Number of neurons in each layer(including input layer which is defined layer l=0)
    """
    L = len(lst)
    for l in range(1,L):    #
        parameters['W' + str(l)] = ...
        parameters['b' + str(l)] = ...

    return parameters

About

Just another repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published