Skip to content

Instantly share code, notes, and snippets.

@Chachay
Chachay / benchmark.ipynb
Created February 26, 2022 16:41
Ray Cast benchmark
View benchmark.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Chachay
Chachay / fetch_messages.py
Created December 9, 2020 09:54
Fetch GMail List
View fetch_messages.py
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
import pandas as pd
import time
import tqdm
@Chachay
Chachay / train_sac.py
Last active February 18, 2021 16:53
How to use PFRL and MLFLOW together
View train_sac.py
import argparse
from distutils.version import LooseVersion
import functools
import glob
import os
import gym
import numpy as np
import torch
from torch import nn