Skip to content

Instantly share code, notes, and snippets.

View josemazo's full-sized avatar

Josema Camacho josemazo

View GitHub Profile
@josemazo
josemazo / README.md
Last active February 21, 2023 02:09
LaTeX within MkDocs

LaTeX within MkDocs

Needed Python packages:

$ pip install mkdocs python-markdown-math

mkdocs.yml file, with extra needed sections extra_javascript and markdown_extensions:

@josemazo
josemazo / vrp_solver.py
Last active March 19, 2018 19:09
Random (seeded) CVRP solver
import random
import sys
from ortools.constraint_solver import pywrapcp
from ortools.constraint_solver import routing_enums_pb2
verbose = True
time_limit_ms = 60000
seed = 19
random.seed(seed)
@josemazo
josemazo / Basic classifiers.ipynb
Created March 4, 2016 14:52
A notebook showing basic classifiers for the Seville Machine Learning Seminar
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.