Skip to content

Instantly share code, notes, and snippets.

View RodolfoFerro's full-sized avatar
🐍
I speak Python.

Rodolfo Ferro RodolfoFerro

🐍
I speak Python.
View GitHub Profile
@RodolfoFerro
RodolfoFerro / estandarte_requirements.txt
Last active January 5, 2021 20:00
Requirements file for ED01.
numpy==1.18.5
scipy==1.4.1
matplotlib==3.3.2
pandas==1.1.4
psutil==5.7.2
opencv-python==4.4.0.44
tensorflow==2.3.1
pyTelegramBotAPI==3.7.4
Mako==1.1.3
PyYAML==5.3.1
@RodolfoFerro
RodolfoFerro / address_converter.js
Last active November 22, 2020 03:45
Python/JS script to consume Google Maps API in order to transform a textual address into (lat, long) coordinates.
var coords = [];
async function convert_address(address, API_KEY) {
// Parse address
var city = "+Ciudad+de+México";
var state = "+CDMX";
var parsed_address = address.replace(', ', '+');
parsed_address = parsed_address.replace(' ', '+');
parsed_address = parsed_address.concat(city);
parsed_address = parsed_address.concat(state);
@RodolfoFerro
RodolfoFerro / image-classification-in-tensorflow.ipynb
Created October 30, 2020 04:27
Image Classification in TensorFlow
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / pyqsofit-test.ipynb
Created October 24, 2020 14:42
PyQSOFit test
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / building-your-first-neural-network-on-tensorflow.ipynb
Created October 23, 2020 09:19
Building your First Neural Network on TensorFlow
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / introducci-n-a-las-neuronas-artificiales.ipynb
Last active September 1, 2021 01:38
Introducción a las neuronas artificiales
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / mesh.pde
Created June 8, 2020 23:47
A Processing code to generate a 3D mesh.
int cols, rows;
int scl = 20;
int w = 2000;
int h = 1600;
int noisiness;
float angle;
float flying = 0;
float[][] terrain;
@RodolfoFerro
RodolfoFerro / redes-neuronales-orbit-day-sin-resolver.ipynb
Created May 9, 2020 08:51
Redes Neuronales – Orbit Day (Sin resolver)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / redes-neuronales-orbit-day-resuelto.ipynb
Created May 9, 2020 08:37
Redes Neuronales – Orbit Day (Resuelto)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@RodolfoFerro
RodolfoFerro / introducci-n-b-sica-a-la-neuronas-artificiales.ipynb
Created March 28, 2020 09:54
Introducción (básica) a la neuronas artificiales
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.