Feedbacks and fix multi-verso build.

This commit is contained in:
Emad Barsoum 2016-11-15 15:43:38 -08:00
Родитель 2fc89e67cc
Коммит 8095ceaa28
2 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -957,6 +957,9 @@ EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Multiverso", "Source\Multiverso\src\Multiverso.vcxproj", "{16F14058-B116-49D9-8BA0-209F3AFFE849}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MultiversoTests", "Source\Multiverso\Test\unittests\MultiversoTests.vcxproj", "{EC7157E9-A51F-4702-A5FD-8DAF88C7029F}"
ProjectSection(ProjectDependencies) = postProject
{16F14058-B116-49D9-8BA0-209F3AFFE849} = {16F14058-B116-49D9-8BA0-209F3AFFE849}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CPPEvalExtendedClientTest", "Tests\EndToEndTests\EvalClientTests\CPPEvalExtendedClientTest\CPPEvalExtendedClientTest.vcxproj", "{5D29C76D-648A-456F-920D-48230F2FB3C8}"
ProjectSection(ProjectDependencies) = postProject

Просмотреть файл

@ -484,7 +484,7 @@ Example:
GlobalMaxPooling(), GlobalAveragePooling()
------------------------------
Factory functions to create a global-max- or global-average-pooling layer.
Factory functions to create a global-max-pooling or global-average-pooling layer.
::
@ -501,7 +501,7 @@ Description
Use this factory function to create a global pooling operation. Use
``GlobalMaxPooling()`` to compute the maximum over all spatial data,
and ``GlobalAveragePooling()`` to take their average.
or ``GlobalAveragePooling()`` to take their average.
The global pooling operation infer the pooling window shape from the input
tensor and create a pooling function with pooling window size that
@ -528,8 +528,8 @@ Factory functions to create a dropout layer.
Parameters
~~~~~~~~~~
- ``prob``: a fraction between [0, 1) that specify the probability by which
the dropout operation will randomly select elements of the input. 0 mean
- ``prob``: a fraction between [0, 1) that specifies the probability by which
the dropout operation will randomly set elements of the input to zero. 0 mean
select everything and close to 1 mean drop every element.
Return Value