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

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  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))
  4. Deep-maximum-entropy-Markov-model Deep-maximum-entropy-Markov-model Public

    A PyTorch implementation of the DMEMM model for NER tagging

    Python