Skip to content

Instantly share code, notes, and snippets.

View afperezm's full-sized avatar

Andres F. Perez afperezm

  • University of Manitoba
  • Winnipeg, Canada
  • X @afperezm
View GitHub Profile
@mortcanty
mortcanty / s1multitempclass.ipynb
Last active February 6, 2025 18:29
S1MultitempClass.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@devisperessutti
devisperessutti / eoworkflow_timelapse.py
Last active July 5, 2024 05:32
Timelapse EOWorkflow
# generic imports
import os
import imageio
import datetime
import numpy as np
# sentinelhub-py and eo-learn imports
from sentinelhub.geometry import BBox
from sentinelhub.constants import CRS, DataSource
from eolearn.core import EOTask, FeatureType, LinearWorkflow
@pranz24
pranz24 / Solving_LunarLander(CMA-ES).py
Last active November 18, 2022 02:45
Solving LunarLander-v2 using CMA-ES in Pybrain
# A small neural network is trained using Covariance Matrix Adaptation Evolution Strategies
# The idea is from this paper: https://arxiv.org/abs/1604.00772
# This gist is using pybrain (http://pybrain.org/)
import logging
import os
import numpy as np
import gym