Skip to content
View jamartinh's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report jamartinh

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. Orange3-Spark Orange3-Spark Public

    A set of widgets for Python's Orange Machine Learning to work with Apache Spark ML

    Python 15 5

  2. graph-coloring graph-coloring Public

    A graph-coloring library in Python

    Python 1

  3. fastrl fastrl Public

    A simple yet fast Reinforcement Learning Library with function approximation

    Python 1 1

  4. d4rllite d4rllite Public

    A d4rl lite version with minimal dependecies and allowing to download d4rl datasets with a simple interface

    Python 1

  5. Parallel Monte Carlo Dropout Parallel Monte Carlo Dropout
    1
    def mc_dropout_inference(model, input, num_samples):
    2
        # Repeat interleave the input
    3
        repeated_input = input.repeat_interleave(num_samples, dim=0)
    4
    
                  
    5
        # Enable dropout during inference