Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.68 KB

README.md

File metadata and controls

51 lines (36 loc) · 1.68 KB

Gender-Checker 👀

Gender Checker app built using Kotlin, MVVM, Genderize.io API

Enter a name and the app will guess the gender 🤩

✨ Highligts:

🍩 About Genderize.io

Genderize.io is a simple API to predict the gender of a person given their name

The API is free for up to 1000 names/day. No sign up or API key needed.

The request will render a response like the following:

{
  "name": "peter",
  "gender": "male",
  "probability": 0.99,
  "count": 165452
}

The probability indicates the certainty of the assigned gender. Basically the ratio of male to females. The count represents the number of data rows examined in order to calculate the response.

For more information, visit Genderize.io

Screenshot

License

    Copyright 2022 Jai Keerthick

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.