Skip to content
View aauker's full-sized avatar
🛰️
🛰️
  • New York, New York

Block or report aauker

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. msk-mind/luna msk-mind/luna Public

    Scripts for data processing

    Jupyter Notebook 40 10

  2. Use monte-carlo subsampling to compu... Use monte-carlo subsampling to compute a summary population statistic for frequency distribution
    1
    """
    2
    This package includes a method to compute the observed test-statistic and assocated pvalue
    3
    """
    4
    
                  
    5
    import json
  3. Custom-built pytorch model to do mas... Custom-built pytorch model to do massive, end-to-end MIL for whole-slide imaging data
    1
    import torch
    2
    from torch import nn
    3
    from torch.nn import init
    4
    from torch.nn import functional as F
    5
    from torch.autograd import Function
  4. robo-trader robo-trader Public

    Collection of services, exploratory analysis to support algorithmic stock trading

    Jupyter Notebook

  5. Generates a nice AUC plot given a li... Generates a nice AUC plot given a list of labels and scores, with an average and standard deviation shown, optionally merging scores
    1
    from sklearn.metrics import roc_curve, auc
    2
    import matplotlib.pyplot as plt
    3
    
                  
    4
    def generate_auc_plot(labels, scores, title='Receiver operating characteristic', merge=True, figsize=(6,6), max_folds=10):
    5
        """ Makes the nice fold-wise, average, and merged AUROC plots