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
git clone https://github.com/angular/quickstart | |
cd quickstart | |
npm install | |
npm start |
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
npm install -g typescript |
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
Do you wish to build TensorFlow with the XLA just-in-time compiler (experimental)? [y/N] |
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
ssh-keygen -t rsa -b 4096 -f jwtRS256.key | |
# Don't add passphrase | |
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub |
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
git clone https://github.com/SnowMasaya/deep-learning-excerise.git | |
cd {ダウンロードしたフォルダ} |
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
void Merge(int *data_array, int left, int mid, int right){ | |
int n1 = mid - left; | |
int n2 = right - mid; | |
int *L = new int[n1]; | |
int *R = new int[n2]; | |
for(int i = 0; i < n1; i++){ | |
L[i] = data_array[left + i]; | |
} | |
for(int i = 0; i < n2; i++){ | |
R[i] = data_array[mid + i]; |
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
GET / App.Index | |
GET /get_list Api_Jwt_Mysql.List | |
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
query = "curl -XGET {your elasticsearch endpoint}:9200/_all/_search?pretty -d\'" |
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
# API Download | |
git clone https://github.com/pdollar/coco | |
# API install | |
cd coco/PythonAPI | |
python setup.py install |
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
if dec_flag: | |
if dst["weight_jy"] and child.name == "weight_xi" and self.word2vecFlag: | |
for a, b in zip(child.namedparams(), dst["weight_jy"].namedparams()): | |
b[1].data = a[1].data | |
print('Copy weight_jy') |