Skip to content
View gabrielribcesario's full-sized avatar
  • Rio de Janeiro State University
  • Rio de Janeiro, RJ
  • 02:05 (UTC -03:00)
  • LinkedIn in/gribeirocs
  • Instagram gribeirocs

Block or report gabrielribcesario

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

    Simulation of a multiwire proportional chamber.

    C++

  2. ConjugateGradient ConjugateGradient Public

    A C++ implementation of the conjugate gradient method.

    C++

  3. U-Net-Cell-Segmentation U-Net-Cell-Segmentation Public

    An implementation of the U-Net for HeLa cells segmentation.

    Jupyter Notebook

  4. WGAN-GP WGAN-GP Public

    A generative adversarial network used for creating images of digits.

    Jupyter Notebook

  5. Percentile calculator Percentile calculator
    1
    #include <stdlib.h>
    2
    #include <stdbool.h>
    3
    #include <string.h>
    4
    #include <math.h>
    5
    
                  
  6. Wiener Filter (FIR) Wiener Filter (FIR)
    1
    import numpy as np
    2
    import scipy
    3
    
                  
    4
    class Wiener_FIR:
    5
        def __init__(self, order=1, solver=np.linalg.solve, correlation_method='auto'):