Windows Defender で「ウイルスと脅威の防止」欄に赤い×マークが表示されており、「脅威のサービスが停止しました。今すぐ再起動してください。」と記載が出る
「今すぐ再起動」ボタンを押しても「不明なエラー。問題が起こりました。もう一度やり直してください。」と表示されるのみで、起動することができない
この記事で説明されているのと同様の状態になっていた
| #!/bin/bash | |
| # Parallel rsync script originally designed for rsyncing | |
| # large ata transfers from RAID to RAID for the Aagaard Lab. | |
| # Author: Michael Jochum | |
| # Location: Baylor College of Medicine, Houston, TX, USA | |
| # Contact : michael.jochum@bcm.edu | |
| # Date : 2 November 2020 | |
| ################################## | |
| #Step 0: fill this shit out |
| def dot_product(x, kernel): | |
| """ | |
| Wrapper for dot product operation, in order to be compatible with both | |
| Theano and Tensorflow | |
| Args: | |
| x (): input | |
| kernel (): weights | |
| Returns: | |
| """ | |
| if K.backend() == 'tensorflow': |
| from keras import backend as K, initializers, regularizers, constraints | |
| from keras.engine.topology import Layer | |
| def dot_product(x, kernel): | |
| """ | |
| Wrapper for dot product operation, in order to be compatible with both | |
| Theano and Tensorflow | |
| Args: |
| #!/bin/bash | |
| base_dir=`pwd` | |
| wget https://mecab.googlecode.com/files/mecab-0.996.tar.gz | |
| tar zxfv mecab-0.996.tar.gz | |
| cd mecab-0.996 | |
| ./configure --enable-utf8-only | |
| make | |
| make check |