Skip to content

Instantly share code, notes, and snippets.

View Curt-Park's full-sized avatar
👋

Jinwoo Park (Curt) Curt-Park

👋
View GitHub Profile
@Curt-Park
Curt-Park / docker-compose.yaml
Created October 13, 2024 23:29
tinyproxy web service docker compose example
---
volumes:
traefik: {}
services:
traefik:
image: traefik:v3.1.2
container_name: traefik
command:
- --log.level=INFO
@Curt-Park
Curt-Park / gpu_sharing_job_template.yaml
Last active August 14, 2024 04:55
GPU Sharing Containers in a single pod
apiVersion: batch/v1
kind: Job
metadata:
name: gpu-sharing-{UNIQUE_ID}-job
spec:
template:
spec:
restartPolicy: Never
containers:
- name: cuda-container-0
@Curt-Park
Curt-Park / mnist_classification_with_two_layer_network.ipynb
Created March 6, 2024 16:49
mnist_classification_with_two_layer_network.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Curt-Park
Curt-Park / knn_with_gpu.ipynb
Created February 21, 2024 14:52
knn_with_gpu.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#include <iostream>
#include <vector>
#include <array>
#include <opencv2/highgui.hpp>
#include <opencv2/opencv.hpp>
#include <onnxruntime/onnxruntime_cxx_api.h>
int main(int argc, const char* argv[]) {
std::cout << "Optimized? " << cv::useOptimized() << std::endl;
@Curt-Park
Curt-Park / bt_simple_backtests.ipynb
Last active November 6, 2022 13:03
bt_simple_backtests.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Curt-Park
Curt-Park / efficient_frontier.ipynb
Last active September 5, 2021 15:25
efficient_frontier.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Curt-Park
Curt-Park / scrap_finance_data.py
Last active January 22, 2024 21:43
Scrap finance data from Naver Finance
# -*- coding: utf-8 -*-
"""Scrap data from Naver Finance.
Author:
- Name: Jinwoo Park
- Email: [email protected]
Prerequisites:
pip install beautifulsoup4
pip install html5lib
@Curt-Park
Curt-Park / financial-data-analysis.ipynb
Last active September 1, 2021 01:42
financial-data-analysis.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Curt-Park
Curt-Park / cs224w-colab-1.ipynb
Last active April 5, 2023 08:22
CS224W - Colab 1.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.