{"id":37704238,"url":"https://github.com/appeler/naamkaran","last_synced_at":"2026-01-16T13:06:14.402Z","repository":{"id":191460654,"uuid":"500029029","full_name":"appeler/naamkaran","owner":"appeler","description":"generative model for names","archived":false,"fork":false,"pushed_at":"2025-12-12T01:31:31.000Z","size":1557,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-13T07:55:13.850Z","etag":null,"topics":["generative-modeling","names","pytorch"],"latest_commit_sha":null,"homepage":"https://appeler.github.io/naamkaran/","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/appeler.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"Citation.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-05T07:26:00.000Z","updated_at":"2025-12-12T01:31:35.000Z","dependencies_parsed_at":"2023-08-30T02:41:42.442Z","dependency_job_id":"e9d163ed-2fa9-4fc1-a575-2f4534d0ffde","html_url":"https://github.com/appeler/naamkaran","commit_stats":null,"previous_names":["appeler/naamkaran"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/appeler/naamkaran","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appeler%2Fnaamkaran","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appeler%2Fnaamkaran/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appeler%2Fnaamkaran/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appeler%2Fnaamkaran/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/appeler","download_url":"https://codeload.github.com/appeler/naamkaran/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/appeler%2Fnaamkaran/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["generative-modeling","names","pytorch"],"created_at":"2026-01-16T13:06:10.993Z","updated_at":"2026-01-16T13:06:14.396Z","avatar_url":"https://github.com/appeler.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"naamkaran: generative model for names\n-------------------------------------\n\n.. image:: https://github.com/appeler/naamkaran/actions/workflows/ci.yml/badge.svg\n    :target: https://github.com/appeler/naamkaran/actions/workflows/ci.yml\n.. image:: https://img.shields.io/pypi/v/naamkaran.svg\n    :target: https://pypi.python.org/pypi/naamkaran\n.. image:: https://static.pepy.tech/badge/naamkaran\n    :target: https://pepy.tech/project/naamkaran\n.. image:: https://img.shields.io/badge/docs-github.io-blue\n    :target: https://appeler.github.io/naamkaran/\n\nNaamkaran is a generative model for names. It is based on a character-level RNN trained on names from the Florida Voter Registration Data.\n\nGradio App.\n------------\n`Naamkaran on HF \u003chttps://huggingface.co/spaces/sixtyfold/generate_names\u003e`__\n\nInstallation\n------------\n\nNaamkaran can be installed from PyPI using pip:\n\n.. code-block:: bash\n\n    pip install naamkaran\n\nFor development with all tools:\n\n.. code-block:: bash\n\n    pip install -e \".[dev,test]\"\n\nFor web applications (Gradio/Flask):\n\n.. code-block:: bash\n\n    pip install \"naamkaran[web]\"\n\nGeneral API\n-----------\n\nThe general API for naamkaran is as follows:\n\n::\n\n    # naamkaran is the package name\n    from naamkaran.generate import generate_names\n\n    # generate_names is the function that generates names\n\n    positional arguments:\n      start_letter  The letter to start the name with (default: \"a\")\n\n    optional arguments:\n        end_letter  The letter to end the name with (default: None)\n        how_many    The number of names to generate (default: 1)\n        max_length  The maximum length of the name (default: 5)\n        gender      The gender of the name (default: \"M\")\n        temperature The temperature of the model (default: 0.5)\n\n    # generate 10 names starting with 'A'\n    generate_names('A', how_many=10)\n    ['Allis', 'Alber', 'Aderi', 'Albri', 'Alawa',\n    'Arver', 'Agnee', 'Anous', 'Areyd', 'Adria']\n\n\n    # generate 10 names starting with 'B' and ending with 'n'\n    generate_names('B', end_letter='n', how_many=10)\n    ['Brian', 'Beran', 'Burin', 'Bahan', 'Balin',\n    'Bounn', 'Baran', 'Balan', 'Belin', 'Brion']\n\n    # generate 5 names starting with 'B' and ending with 'n' with a maximum length of 4\n    generate_names('B', end_letter='n', how_many=5, max_length=4)\n    ['Bern', 'Bren', 'Bran', 'Bonn', 'Brun']\n\n    # generate 10 names starting with 'D' and ending with 'd' with a maximum length of 6\n    # and a temperature of 0.5\n    generate_names('D', end_letter='d', how_many=5, max_length=6, temperature=0.5)\n    ['Derayd', 'Davind', 'Deland', 'Denild', 'David']\n\n    # generate 10 female names starting with 'A' and ending with 'e' with a maximum length of 5\n    # and a temperature of 0.5\n    generate_names('A', end_letter='e', how_many=10, max_length=5, gender=\"F\", temperature=0.5)\n    ['Annhe', 'Annie', 'Altre', 'Anne', 'Ashle',\n    'Arine', 'Anice', 'Andre', 'Anale', 'Allie']\n\n\nData\n----\n\nThe model is trained on names from the Florida Voter Registration Data from early 2022.\nThe data are available on the `Harvard Dataverse \u003chttp://dx.doi.org/10.7910/DVN/UBIG3F\u003e`__\n\n\nAuthors\n-------\n\nRajashekar Chintalapati and Gaurav Sood\n\nContributing\n------------\n\nContributions are welcome. Please open an issue if you find a bug or have a feature request.\n\nLicense\n-------\n\nThe package is released under the `MIT License \u003chttps://opensource.org/licenses/MIT\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappeler%2Fnaamkaran","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fappeler%2Fnaamkaran","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fappeler%2Fnaamkaran/lists"}