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
set -g default-terminal "screen-256color" | |
set -g mouse on | |
set-option -g renumber-windows on | |
bind-key R source-file ~/.tmux.conf \; display-message "tmux.conf reloaded." | |
bind-key b send-keys "bash" C-m "cd /data1/" C-m "conda activate mdm" C-m | |
bind-key w send-keys "bash" C-m "cd /data1/" C-m "conda activate mdm" C-m "watch nvidia-smi" C-m | |
bind-key y send-keys "bash" C-m "cd /data1/yeshwanth" C-m "conda activate mdm" C-m | |
bind-key c new-window "bash" | |
# List of plugins |
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# Uncomment the following line if you don't like systemctl's auto-paging feature: | |
# export SYSTEMD_PAGER= |
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
What is perceptron | |
Fullyconnect ante enti? | |
Shallow vs Deep Learning (Why Deep) | |
Issues with Deep Learning | |
Uses of Unsupervised methods | |
What are auto encoders | |
Loss functions for Regression, Classification | |
What are dropouts and their suggested range | |
Three key advantages of CNNs over NNs | |
Which paratemer influences the depth of feature map |
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 tensorflow as tf | |
config = tf.ConfigProto() | |
config.gpu_options.allow_growth=True | |
sess = tf.Session(config=config) | |
import tensorflow as tf | |
config = tf.compat.v1.ConfigProto() | |
config.gpu_options.allow_growth=True | |
sess = tf.compat.v1.Session(config=config) |
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
trace(utils:::unpackPkgZip, edit=TRUE) |
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
.container { width:97.5% !important; } | |
~/.jupyter/custom/custom.css | |
https://stackoverflow.com/questions/21971449/how-do-i-increase-the-cell-width-of-the-jupyter-ipython-notebook-in-my-browser |
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
set number |
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
map h :help | |
let mapleader = ',' | |
let blacklists = ["https://vim-adventures.com/*","http://localhost/*","https://youtube.com/*","http://www.kongregate.com/*"] | |
map <Leader>e :tabopen chrome://extensions<CR> | |
map <Leader>E :tabopen https://chrome.google.com/webstore/category/extensions?hl=en<CR> | |
map <Leader>H :tabopen chrome://history<CR> | |
map <Leader>gg :tabopen https://gist.github.com/sizhky/6ce05580f394742fcd45c4bf1f5c18d6<CR> | |
map <Leader>s :tabopen chrome://settings<CR> | |
" let searchalias g = "google" | |
map <Leader>m :tabopen https://mail.google.com/mail/#index<CR> |