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 / introducci-n-a-las-redes-neuronales-convolucionales-con-tensorflow-y-keras.ipynb
Created January 14, 2022 18:50
Introducción a las redes neuronales convolucionales con TensorFlow y Keras
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
Created January 7, 2022 20:08
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 / luigi_first_steps.md
Created August 16, 2021 05:46 — forked from inactivist/luigi_first_steps.md
First steps with the Luigi workflow manager

First steps with the Luigi workflow manager

As an introduction into Luigi, I am following this tutorial with some modifications, e.g. installation using conda.

The problems and solutions described in the examples below have led to the development of sciluigi,

from flask import Flask
from flask import Response
from flask import jsonify
from flask import request
from dna import has_mutation
app = Flask(__name__)
@RodolfoFerro
RodolfoFerro / redes-neuronales-profundas.ipynb
Last active January 14, 2022 18:11
Introducción a las redes neuronales convolucionales con TensorFlow y Keras
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
Created May 26, 2021 01:44
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 / click_connect_button.js
Last active November 27, 2023 06:28
Stop Colab from disconnecting, 2021.
function ClickConnect() {
console.log('Working')
document
.querySelector('#top-toolbar > colab-connect-button')
.shadowRoot.querySelector('#connect')
.click()
}
intervalTiming = setInterval(ClickConnect, 60000)
@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.