This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/r0oth3x49/udemy-dl/issues/341 | |
| Cookie: access_token=youraccesstokenvalue client_id=yourclientid |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://liuziwei7.github.io/projects/VoxelFlow |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pytorch_sample-- lenet feature extraction.py | |
| https://github.com/kuangliu/pytorch-cifar/blob/master/models/googlenet.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.marksanborn.net/howto/using-wget-to-download-youtube-videos/ |