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 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 torch | |
import torch.nn as nn | |
import torch.nn.functional as F | |
class GraphConvolution(nn.Module): | |
def __init__(self, in_features, out_features): | |
super(GraphConvolution, self).__init__() | |
self.weight = nn.Parameter(torch.FloatTensor(in_features, out_features)) | |
self.bias = nn.Parameter(torch.FloatTensor(out_features)) |
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 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
## git PR local sync & checkout e.g. | |
git fetch origin pull/397/head:cuml | |
git checkout cuml | |
##local julia notebook | |
julia -e 'using IJulia; IJulia.notebook()' | |
##connect colab to local runtime | |
##https://research.google.com/colaboratory/local-runtimes.html |
This file contains 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
" Neovim-only, use in true color terminal | |
" Vundle config | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" Vundle vundles | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'ap/vim-css-color' | |
Plugin 'hail2u/vim-css3-syntax' |
This file contains 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
#./.ssh/config | |
Host ferry | |
User redmo | |
Hostname ferry.bwh.harvard.edu | |
DynamicForward 8080 | |
IdentityFile ~/.ssh/id_rsa | |
Host hku | |
user dcmorgan | |
Hostname hpc02.sbms.hku.hk |
This file contains 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
# activate via source ./bash_profile | |
alias hkuvpn='sudo openconnect -u dcmorgan -b vpn2fa.hku.hk' | |
alias nanfs='sshfs -p 22 [email protected]:/udd/redmo/ ~/mountchan -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myNantucket' | |
alias ferryfs='sshfs -p 22 [email protected]:/udd/redmo/ ~/mountchan -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myFerry' | |
alias tmp0fs='sshfs -p 22 [email protected]:/pc/redmo/ ~/mountchan -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myTmp0' | |
alias tmp1fs='sshfs -p 22 [email protected]:/d/tmp/redmo/ ~/mountchan -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myTmp1' | |
alias unfs='diskutil unmount force /Users/redmo/mountchan' | |
alias fpcfs='sshfs -p 22 [email protected]:/udd/redmo/ ~/pc/redmo/ -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myVolName' | |
alias unfpc='diskutil un |