Skip to content
View hc2116's full-sized avatar

Organizations

@detlearsom
Block or Report

Block or report hc2116

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. detlearsom/DetGen detlearsom/DetGen Public

    Deterministic and monitored traffic generation for inspecting and and training traffic models

    CSS 8 2

  2. MMPPsampler MMPPsampler Public

    Efficient implementation of the Gibbs sampler by Fearnheard and Sherlock (2006) for the Markov modulated Poisson process that uses 'C++' via the 'Rcpp' interface. Fearnheard and Sherlock (2006) pro…

    C++ 2 3

  3. Kaggle_Digit_Recognizer Kaggle_Digit_Recognizer Public

    ConvNet and PCA/SVM approaches to the kaggle digit recognizer challenge

    Python 1

  4. ConvNet_implementation.py ConvNet_implementation.py
    1
    Created on Fri Aug 30 11:11:27 2019
    2
    @author: henry
    3
    """
    4
    import torch
    5
    import torch.nn as nn
  5. LSTM_deep.py LSTM_deep.py
    1
    # RNN definition
    2
    class LSTM_deep(nn.Module):
    3
        
    4
        def __init__(self, n_categories, seq_input_size,seq_size_input_size, batch_size, hidden_size):
    5
            super(LSTM_deep, self).__init__()