Skip to content

Instantly share code, notes, and snippets.

View lucienne999's full-sized avatar
🎆
Focusing

CczzZ lucienne999

🎆
Focusing
View GitHub Profile
@lucienne999
lucienne999 / README-Template.md
Created December 24, 2019 10:22 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@lucienne999
lucienne999 / README-Template.md
Created December 24, 2019 10:22 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@lucienne999
lucienne999 / gitflow.md
Created November 18, 2020 07:47 — forked from CoralSilver/gitflow.md
Git rebase workflow

Step 1: Checkout a new working branch from updated master

 git checkout -b <branchname>

Step 2: Make Changes

 git add
 git commit -m "description of changes"

Step 3: Sync with remote

@lucienne999
lucienne999 / shapenet_synset_list
Created November 11, 2022 07:12 — forked from tejaskhot/shapenet_synset_list
List of category names and their id in the ShapeNet dataset
04379243 table
03593526 jar
04225987 skateboard
02958343 car
02876657 bottle
04460130 tower
03001627 chair
02871439 bookshelf
02942699 camera
02691156 airplane
@lucienne999
lucienne999 / profile.py
Created June 5, 2023 11:44 — forked from dojoteef/profile.py
A CUDA memory profiler for pytorch
'''
Memory profiling utilities
'''
import gc
import inspect
import linecache
import os.path
import sys
import time
import threading