Doc into dev See merge request learnware/learnware-market!4tags/v0.3.2
| @@ -0,0 +1,4 @@ | |||||
| About us | |||||
| ================ | |||||
| `Visit LAMDA's official website <http://www.lamda.nju.edu.cn/MainPage.ashx>`_ | |||||
| @@ -0,0 +1,30 @@ | |||||
| All Contributors | |||||
| ================ | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Contributor | Homepage | | |||||
| +================+======================================================================+ | |||||
| | Zhi-Hao Tan | `Zhi-Hao Tan's Homepage <http://www.lamda.nju.edu.cn/tanzh/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Lan-Zhe Guo | `Lan-Zhe Guo's Homepage <http://www.lamda.nju.edu.cn/guolz/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Peng Tan | `Peng Tan's Homepage <http://www.lamda.nju.edu.cn/tanp/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Xiao-Dong Bi | `Xiao-Dong Bi's Homepage <http://www.lamda.nju.edu.cn/bixd/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Zi-Xuan Chen | `Zi-Xuan Chen's Homepage <http://www.lamda.nju.edu.cn/chenzx/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Qin-Cheng Zheng| `Qin-Cheng Zheng's Homepage <http://www.lamda.nju.edu.cn/zhengqc/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Zhi Zhou | `Zhi Zhou's Homepage <http://www.lamda.nju.edu.cn/zhouz/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Yi-Xuan Jin | `Yi-Xuan Jin's Homepage <http://www.lamda.nju.edu.cn/jinyx/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Jian-Dong Liu | `Jian-Dong Liu's Homepage <http://www.lamda.nju.edu.cn/liujd/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Yi Xie | `Yi Xie's Homepage <http://www.lamda.nju.edu.cn/xiey/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Hai-Tian Liu | `Hai-Tian Liu's Homepage <http://www.lamda.nju.edu.cn/liuht/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| | Hao-Yi Lei | `Hao-Yi Lei's Homepage <http://www.lamda.nju.edu.cn/leihy/>`_ | | |||||
| +----------------+----------------------------------------------------------------------+ | |||||
| @@ -40,8 +40,8 @@ The time-consuming specification generation is shown in the table below: | |||||
| ==================== ==================== ================================= | ==================== ==================== ================================= | ||||
| Dataset Data Dimensions Specification Generation Time (s) | Dataset Data Dimensions Specification Generation Time (s) | ||||
| ==================== ==================== ================================= | ==================== ==================== ================================= | ||||
| PFS | |||||
| M5 9~15 | |||||
| PFS 8714274*31 < 1.5 | |||||
| M5 46027957*82 9~15 | |||||
| CIFAR10 9000*3*32*32 7~10 | CIFAR10 9000*3*32*32 7~10 | ||||
| ==================== ==================== ================================= | ==================== ==================== ================================= | ||||
| @@ -50,7 +50,7 @@ The accuracy of search and reuse is shown in the table below: | |||||
| ==================== ==================== ================================= ================================= | ==================== ==================== ================================= ================================= | ||||
| Dataset Top-1 Performance Job Selector Reuse Average Ensemble Reuse | Dataset Top-1 Performance Job Selector Reuse Average Ensemble Reuse | ||||
| ==================== ==================== ================================= ================================= | ==================== ==================== ================================= ================================= | ||||
| PFS | |||||
| PFS 1.955 +/- 2.866 2.175 +/- 2.847 1.950 +/- 2.888 | |||||
| M5 2.066 +/- 0.424 2.116 +/- 0.472 2.512 +/- 0.573 | M5 2.066 +/- 0.424 2.116 +/- 0.472 2.512 +/- 0.573 | ||||
| CIFAR10 0.619 +/- 0.138 0.585 +/- 0.056 0.715 +/- 0.075 | CIFAR10 0.619 +/- 0.138 0.585 +/- 0.056 0.715 +/- 0.075 | ||||
| ==================== ==================== ================================= ================================= | ==================== ==================== ================================= ================================= | ||||
| @@ -308,7 +308,7 @@ class AveragingReuser(BaseReuser): | |||||
| else: | else: | ||||
| mean_pred_y += pred_y | mean_pred_y += pred_y | ||||
| elif self.mode == "vote": | elif self.mode == "vote": | ||||
| softmax_pred = softmax(pred_y, axis=1) | |||||
| softmax_pred = softmax(pred_y, axis=0) | |||||
| if mean_pred_y is None: | if mean_pred_y is None: | ||||
| mean_pred_y = softmax_pred | mean_pred_y = softmax_pred | ||||
| else: | else: | ||||