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
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
# .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
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 |
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
from bokeh.plotting import figure, show | |
from bokeh.io import output_notebook, push_notebook | |
%matplotlib inline | |
output_notebook() | |
from math import pi | |
import numpy as np | |
from time import sleep | |
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 sublime, sublime_plugin, time | |
class InsertDatetimeCommand(sublime_plugin.TextCommand): | |
def run(self, edit): | |
sel = self.view.sel(); | |
for s in sel: | |
# o = time.ctime().split() | |
# o = ' '.join(o[1:3] + ['(' + o[0] + ')']) | |
# self.view.replace(edit, s, o) | |
self.view.replace(edit, s, o) |
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
let mapleader="," | |
nnoremap : ; | |
nnoremap ; : | |
" Normal Clipboard | |
set clipboard=unnamed | |
" FILE SEARCHING | |
set path+=** | |
set wildmenu | |
" TAG JUMPING | |
command! MakeTags !ctags -R . |
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
;; -*- mode: emacs-lisp -*- | |
;; This file is loaded by Spacemacs at startup. | |
;; It must be stored in your home directory. | |
;; Ippikayak other buckets | |
(defun dotspacemacs/layers () | |
"Configuration Layers declaration. | |
You should not put any user code in this function besides modifying the variable | |
values." | |
(setq-default |