Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR cognitiveservices/data-plane/Face] [Cogs Face] Remove Face API reference of Gender::genderless to avoid confusion. #4347

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions azure-cognitiveservices-vision-face/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,6 @@ This package has been tested with Python 2.7, 3.4, 3.5, 3.6 and 3.7.
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.


Compatibility
=============

**IMPORTANT**: If you have an earlier version of the azure package
(version < 1.0), you should uninstall it before installing this package.

You can check the version using pip:

.. code:: shell

pip freeze

If you see azure==0.11.0 (or any version below 1.0), uninstall it first:

.. code:: shell

pip uninstall azure


Usage
=====

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FaceAttributes(Model):
:param age: Age in years
:type age: float
:param gender: Possible gender of the face. Possible values include:
'male', 'female', 'genderless'
'male', 'female'
:type gender: str or ~azure.cognitiveservices.vision.face.models.Gender
:param smile: Smile intensity, a number between [0,1]
:type smile: float
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FaceAttributes(Model):
:param age: Age in years
:type age: float
:param gender: Possible gender of the face. Possible values include:
'male', 'female', 'genderless'
'male', 'female'
:type gender: str or ~azure.cognitiveservices.vision.face.models.Gender
:param smile: Smile intensity, a number between [0,1]
:type smile: float
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class Gender(str, Enum):

male = "male"
female = "female"
genderless = "genderless"


class GlassesType(str, Enum):
Expand Down