Skip to content

Instantly share code, notes, and snippets.

View kevcruzX's full-sized avatar
🐍
Machine Learning / Deep Learning

kevincruz kevcruzX

🐍
Machine Learning / Deep Learning
View GitHub Profile
@kevcruzX
kevcruzX / example.cu
Created January 17, 2018 16:43 — forked from dpiponi/example.cu
Minimal CUDA example (with helpful comments).
#include <stdio.h>
//
// Nearly minimal CUDA example.
// Compile with:
//
// nvcc -o example example.cu
//
#define N 1000
@kevcruzX
kevcruzX / 00_cqf_ml_elective.md
Created February 18, 2018 05:35 — forked from yhilpisch/00_cqf_ml_elective.md
Machine Learning for Finance | Dr. Yves J. Hilpisch | CQF Elective | London, 23. May 2017

Machine Learning for Finance

A CQF elective with Dr. Yves J. Hilpisch, The Python Quants GmbH

General resources:

Executive Program in Algorithmic Trading (QuantInsti)

Python Sessions by Dr. Yves J. Hilpisch | The Python Quants GmbH

Online, 27. & 28. January 2018

@kevcruzX
kevcruzX / simple_mjpeg_streamer_http_server
Created May 5, 2019 21:22 — forked from n3wtron/simple_mjpeg_streamer_http_server
Simple Python Motion Jpeg (mjpeg server) from webcam. Using: OpenCV,BaseHTTPServer
#!/usr/bin/python
'''
Author: Igor Maculan - n3wtron@gmail.com
A Simple mjpg stream http server
'''
import cv2
import Image
import threading
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
from SocketServer import ThreadingMixIn