2020-01-01から1年間の記事一覧

論文メモ

Overview and Evaluation of Sound Event Localization and Detection in DCASE 2019 2019年のDCASE challengeの総評。 Intra-Utterance Similarity Preserving Knowledge Distillation for Audio Tagging Audio taggingタスク。サンプル単位でのhidden vect…

aclocal command not found

エラー文 aclocal-1.14: command not found 元々の開発環境と現在の開発環境の違いにより生じる。 autoreconf -f -i を実行して更新する。

devtoolsetについて

1. Install a package with repository for your system: On CentOS, install package centos-release-scl available in CentOS repository: $ sudo yum install centos-release-scl On RHEL, enable RHSCL repository for you system: $ sudo yum-config-ma…

加速主義

加速主義

第三者効果

第三者効果 マスメディアがもたらす影響を他人事として考えること。すなわち、テレビや新聞などによって伝えられる説得的なメッセージによって多くの人は影響を受けると懸念する一方、それは自分以外の他者(第三者)においてのみ起こることで、自分だけはメ…

error: aggregate ‘EVP_CIPHER_CTX ctx’ has incomplete type and cannot be defined

OpenSSL 1.1.0以降、EVP_CIPHER_CTXに関する文法が変更されている。 - 初期化 更新前 (1.0.0) EVP_CIPHER_CTX ctx; EVP_CIPHER_CTX_init(&ctx); 更新後 (1.1.0) EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new(); EVP_CIPHER_CTX_init(ctx); - 後処理 更新前 (1.…

install gcc-5.1.0

install gcc-5.1.0 0) wget tar zxvf gcc-5.1.0.tar.gz cd gcc-5.1.0 ./contrib/download_prerequisites mkdir build cd build ../configure --enable-languages=c,c++ --prefix=/path/to/gcc-5 --disable-bootstrap --disable-multilib make -j make instal…