Skip to content

Instantly share code, notes, and snippets.

View VinACE's full-sized avatar
💭
I may be slow to respond.

VinACE

💭
I may be slow to respond.
View GitHub Profile
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -ltr'
alias p='pwd'
alias j='jupyter notebook'
alias py='sh ~/pycharm-community-2017.2.4/bin/pycharm.sh'
alias s='sudo'
alias u='unset PYTHONPATH'
alias w='which'
@VinACE
VinACE / bash_profile and git alias
Created May 9, 2019 05:09
bash_profile and git alias
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -ltr'
alias p='pwd'
alias j='jupyter notebook'
alias py='sh ~/pycharm-community-2017.2.4/bin/pycharm.sh'
alias s='sudo'
alias u='unset PYTHONPATH'
alias w='which'
@VinACE
VinACE / udemy-dl download
Created April 8, 2019 17:53
udemy-dl download with cookies options
https://github.com/r0oth3x49/udemy-dl/issues/341
Cookie: access_token=youraccesstokenvalue client_id=yourclientid
@VinACE
VinACE / nltk-intro.py
Created April 8, 2019 09:15 — forked from alexbowe/nltk-intro.py
Demonstration of extracting key phrases with NLTK in Python
import nltk
text = """The Buddha, the Godhead, resides quite as comfortably in the circuits of a digital
computer or the gears of a cycle transmission as he does at the top of a mountain
or in the petals of a flower. To think otherwise is to demean the Buddha...which is
to demean oneself."""
# Used when tokenizing words
sentence_re = r'''(?x) # set flag to allow verbose regexps
([A-Z])(\.[A-Z])+\.? # abbreviations, e.g. U.S.A.
@VinACE
VinACE / resnet_feature_extract.ipynb
Created April 2, 2019 13:17
resnet_feature_extract.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@VinACE
VinACE / adverseral_summ_train.ipynb
Created April 2, 2019 06:47
Adverseral_summ_train.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@VinACE
VinACE / voxelflow
Created March 29, 2019 13:03
VoxelFlow
https://liuziwei7.github.io/projects/VoxelFlow
@VinACE
VinACE / video feature extraction
Created March 28, 2019 08:54
video feature extraction
https://github.com/gujiuxiang/Video_Captioning.pytorch/blob/master/compute_video_feats.py -- h5 file format..
https://github.com/KaiyangZhou/pytorch-vsumm-reinforce/blob/master/README.md
https://github.com/VinACE/Adversarial_Video_Summary/blob/master/feature_extraction.py
pytorch_sample-- lenet feature extraction.py
https://github.com/kuangliu/pytorch-cifar/blob/master/models/googlenet.py
@VinACE
VinACE / youtube_download
Created March 19, 2019 12:42
youtube_download
https://www.marksanborn.net/howto/using-wget-to-download-youtube-videos/