Skip to content
View Denbergvanthijs's full-sized avatar
:fishsticks:
:fishsticks:
Block or Report

Block or report Denbergvanthijs

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

    Implementing YOLOv5 on the RailSem19 dataset

    Jupyter Notebook 19 1

  2. imbDRL imbDRL Public

    Imbalanced Classification with Deep Reinforcement Learning

    Python 27 12

  3. aHaskellPriori aHaskellPriori Public

    Apriori algorithm in Haskell for the course Declarative Programming in the second year

    Haskell

  4. musaic musaic Public

    Forked from al165/musaic

    Interface for composing music with an A.I. musician for the course INFOMSMT at the Utrecht University

    Python

  5. 3D spinning donut in Python. Based o... 3D spinning donut in Python. Based on the pseudocode from: https://www.a1k0n.net/2011/07/20/donut-math.html
    1
    import numpy as np
    2
    
    
    3
    screen_size = 40
    4
    theta_spacing = 0.07
    5
    phi_spacing = 0.02
  6. Conway's Game of Life using a neural... Conway's Game of Life using a neural network with Keras and Tensorflow in Python
    1
    import matplotlib.pyplot as plt
    2
    import numpy as np
    3
    import tensorflow as tf
    4
    from matplotlib.animation import FuncAnimation
    5
    from tensorflow.keras.layers import Conv2D, InputLayer, Layer