Skip to content

Instantly share code, notes, and snippets.

View meet-minimalist's full-sized avatar
😎
Deep Learning Practitioner

Meet Patel meet-minimalist

😎
Deep Learning Practitioner
  • India
View GitHub Profile
@meet-minimalist
meet-minimalist / quick_start.py
Created December 11, 2021 14:53
Download upload files to google drive using PyDrive
from tqdm import tqdm
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
drive = GoogleDrive(gauth)
# View all folders and file in your Google Drive
# fileList = drive.ListFile({'q': "'root' in parents"}).GetList()
@meet-minimalist
meet-minimalist / setup_training.sh
Last active February 8, 2022 02:23
Setup training COCO
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh
bash Miniforge3-Linux-x86_64.sh -b
~/miniforge3/bin/conda init
bash
conda create -n yolox python=3.8
conda activate yolox