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 numpy as np | |
| import tensorflow as tf | |
| from keras import backend as K | |
| def recall(y_true, y_pred): | |
| true_positives = K.sum(K.round(K.clip(y_true * y_pred, 0, 1))) | |
| possible_positives = K.sum(K.round(K.clip(y_true, 0, 1))) | |
| recall_keras = true_positives / (possible_positives + K.epsilon()) | |
| return recall_keras |
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
| 0.0.0.0 host.youtube.com | |
| 0.0.0.0 mx.youtube.com | |
| 0.0.0.0 admin.youtube.com | |
| 0.0.0.0 devel.youtube.com | |
| 0.0.0.0 stats.youtube.com | |
| 0.0.0.0 http.youtube.com | |
| 0.0.0.0 mx0.youtube.com | |
| 0.0.0.0 administration.youtube.com | |
| 0.0.0.0 development.youtube.com | |
| 0.0.0.0 svn.youtube.com |
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
| <?php | |
| function show($str){ | |
| echo $str . "<br/>\n"; | |
| flush(); | |
| ob_flush(); | |
| } | |
| $archiveDir = "temp"; |