Skip to content
View justanotherminh's full-sized avatar
🙉
🙉
  • Microsoft
  • North Carolina
Block or Report

Block or report justanotherminh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. DCNN-tensorflow DCNN-tensorflow Public

    Exhausted.

    Python 1

  2. Restricted Boltzmann Machine for the... Restricted Boltzmann Machine for the MNIST dataset implemented in pure NumPy
    1
    import numpy as np
    2
    import matplotlib.pyplot as plt
    3
    from tensorflow.examples.tutorials.mnist import input_data
    4
    
                  
    5
    
                  
  3. Simple 2-layer feedforward neural ne... Simple 2-layer feedforward neural networ from scratch with brand new SELU activation
    1
    import numpy as np
    2
    
                  
    3
    
                  
    4
    def sigmoid(v):
    5
        return 1 / (1 + np.exp(-v))