Skip to content
View thatgeeman's full-sized avatar
👾
Focusing
👾
Focusing
Block or Report

Block or report thatgeeman

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. pybx pybx Public

    A simple python module to generate anchor (aka default/prior) boxes for object detection tasks.

    Jupyter Notebook 4

  2. nbs nbs Public

    A collection of deep learning portfolio projects hosted as static jupyter notebooks with personal annotations.

    Jupyter Notebook

  3. retinopathy_classification_resnet18 retinopathy_classification_resnet18 Public

    Image classification for early detection of diabetic retinopathy in patients. This project uses a custom ResNet18 model built from scratch using PyTorch.

    Python 2

  4. vit-pytorch vit-pytorch Public

    Implementation of ViT (vision transformer) paper using PyTorch

    Jupyter Notebook 2

  5. kaggle_melanoma kaggle_melanoma Public

    Melanoma classification using PyTorch and Lightning developed in nbdev

    Jupyter Notebook 1

  6. Modified Huber Loss for Classificati... Modified Huber Loss for Classification with `pos_weight` in PyTorch
    1
    class BCHuberLoss(nn.Module):
    2
        def __init__(self, pos_weight: Tensor = None, reduction: str = "mean") -> None:
    3
            super(BCHuberLoss, self).__init__()
    4
            assert isinstance(
    5
                pos_weight, torch.Tensor