Skip to content
View brijml's full-sized avatar
  • Dallas

Block or report brijml

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 Loading

  1. xcaliber-task xcaliber-task Public

    This project was undertaken as a part of evaluation process at Xcaliber Infotech while I was interviewing there

    Python 13 7

  2. CTBN CTBN Public

    Conditional Tree Bayesian Network for multi-label classification

    Python 1

  3. TejasBob/Panorama TejasBob/Panorama Public

    Image Stitching on key-frames extracted from video

    Python 37 10

  4. ModelCI ModelCI Public

    Git theta based continuous integration of ML models

    Python 1

  5. Generative Adversarial Network on MN... Generative Adversarial Network on MNIST data using Pytorch
    1
    import numpy as np
    2
    import torch
    3
    import torch.nn.functional as F
    4
    import matplotlib.pyplot as plt
    5
    from torch.autograd import Variable
  6. Training a neural network, an OpenAI... Training a neural network, an OpenAI Cart-pole agent with Policy Gradients
    1
    import numpy as np
    2
    import gym
    3
    
                  
    4
    def softmax(z):
    5
    	exponent = np.exp(z)