kca


Namekca JSON
Version 0.0.7.dev0 PyPI version JSON
download
home_pagehttps://github.com/terminalai/kca
SummaryKeras Core Addons: Useful extra functionality for Keras Core.
upload_time2023-09-09 09:17:04
maintainer
docs_urlNone
authorPrannaya Gupta
requires_python>=3.8
licenseMIT
keywords keras keras-core addons machine learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Keras Core Addons

[![PyPI Latest Release](https://img.shields.io/pypi/v/kca.svg)](https://pypi.org/project/kca/)

[//]: # ([![PyPI Downloads](https://static.pepy.tech/badge/kca)](https://pepy.tech/project/kca))

Keras Core Addons is a repository of contributions that conform to well-established API patterns, but implement new 
functionality not available in Keras Core. Keras Core natively supports a large number of operators, layers, metrics, 
losses, and optimizers. However, in a fast moving field like ML, there are many interesting new developments that cannot 
be integrated into core Keras Core (because their broad applicability is not yet clear, or it is mostly used by a 
smaller subset of the community).

Unlike the package this is inspired by (Tensorflow Addons), Keras Core Addons maintains a near similar structure to 
Keras Core, with the `activations`, `layers` and `losses` structure being continued. This is for potential adoption into
Keras Core being as seamless as possible.

Setup and Installation
-------------

### Installing from PyPI

Yes, we have published `kca` on PyPI! To install `kca` and all its dependencies, the easiest method would be to use 
`pip` to query PyPI. This should, by default, be present in your Python installation. To, install run the following 
command in a terminal or Command Prompt / Powershell:

```bash
$ pip install kca
```

Depending on the OS, you might need to use `pip3` instead. If the command is not found, you can choose to use the
following command too:

```bash
$ python -m pip install kca
```

Here too, `python` or `pip` might be replaced with `py` or `python3` and `pip3` depending on the OS and installation 
configuration. If you have any issues with this, it is always helpful to consult 
[Stack Overflow](https://stackoverflow.com/).

### Installing from Source

To install from source, you need to get the following:

#### Git

Git is needed to install this repository. This is not completely necessary as you can also install the zip file for this 
repository and store it on a local drive manually. To install Git, follow 
[this guide](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git).

After you have successfully installed Git, you can run the following command in a terminal / Command Prompt etc:

```bash
$ git clone https://github.com/terminalai/kca.git
```

This stores a copy in the folder `kca`. You can then navigate into it using `cd kca`.

#### Poetry

This project can be used easily via a tool know as Poetry. This allows you to easily reflect edits made in the original 
source code! To install `poetry`, you can also install it using `pip` by typing in the command as follows:

```bash
$ pip install poetry
```

Again, if you have any issues with `pip`, check out [here](#installing-from-pypi).

After this, you can use the following command to install this library:

```bash
$ poetry install
```
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/terminalai/kca",
    "name": "kca",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "keras,keras-core,addons,machine,learning",
    "author": "Prannaya Gupta",
    "author_email": "prannayagupta@programmer.net",
    "download_url": "https://files.pythonhosted.org/packages/db/07/47a11d47354537e25f17305979f836e52e614a1ae930a94c67a37f053de0/kca-0.0.7.dev0.tar.gz",
    "platform": null,
    "description": "# Keras Core Addons\n\n[![PyPI Latest Release](https://img.shields.io/pypi/v/kca.svg)](https://pypi.org/project/kca/)\n\n[//]: # ([![PyPI Downloads](https://static.pepy.tech/badge/kca)](https://pepy.tech/project/kca))\n\nKeras Core Addons is a repository of contributions that conform to well-established API patterns, but implement new \nfunctionality not available in Keras Core. Keras Core natively supports a large number of operators, layers, metrics, \nlosses, and optimizers. However, in a fast moving field like ML, there are many interesting new developments that cannot \nbe integrated into core Keras Core (because their broad applicability is not yet clear, or it is mostly used by a \nsmaller subset of the community).\n\nUnlike the package this is inspired by (Tensorflow Addons), Keras Core Addons maintains a near similar structure to \nKeras Core, with the `activations`, `layers` and `losses` structure being continued. This is for potential adoption into\nKeras Core being as seamless as possible.\n\nSetup and Installation\n-------------\n\n### Installing from PyPI\n\nYes, we have published `kca` on PyPI! To install `kca` and all its dependencies, the easiest method would be to use \n`pip` to query PyPI. This should, by default, be present in your Python installation. To, install run the following \ncommand in a terminal or Command Prompt / Powershell:\n\n```bash\n$ pip install kca\n```\n\nDepending on the OS, you might need to use `pip3` instead. If the command is not found, you can choose to use the\nfollowing command too:\n\n```bash\n$ python -m pip install kca\n```\n\nHere too, `python` or `pip` might be replaced with `py` or `python3` and `pip3` depending on the OS and installation \nconfiguration. If you have any issues with this, it is always helpful to consult \n[Stack Overflow](https://stackoverflow.com/).\n\n### Installing from Source\n\nTo install from source, you need to get the following:\n\n#### Git\n\nGit is needed to install this repository. This is not completely necessary as you can also install the zip file for this \nrepository and store it on a local drive manually. To install Git, follow \n[this guide](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git).\n\nAfter you have successfully installed Git, you can run the following command in a terminal / Command Prompt etc:\n\n```bash\n$ git clone https://github.com/terminalai/kca.git\n```\n\nThis stores a copy in the folder `kca`. You can then navigate into it using `cd kca`.\n\n#### Poetry\n\nThis project can be used easily via a tool know as Poetry. This allows you to easily reflect edits made in the original \nsource code! To install `poetry`, you can also install it using `pip` by typing in the command as follows:\n\n```bash\n$ pip install poetry\n```\n\nAgain, if you have any issues with `pip`, check out [here](#installing-from-pypi).\n\nAfter this, you can use the following command to install this library:\n\n```bash\n$ poetry install\n```",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Keras Core Addons: Useful extra functionality for Keras Core.",
    "version": "0.0.7.dev0",
    "project_urls": {
        "Bug Tracker": "https://github.com/terminalai/kca/issues",
        "Documentation": "https://github.com/terminalai/kca",
        "Homepage": "https://github.com/terminalai/kca",
        "Repository": "https://github.com/terminalai/kca"
    },
    "split_keywords": [
        "keras",
        "keras-core",
        "addons",
        "machine",
        "learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02d542cba71dc8f320b4ea87fad78abd8297e60554565891928931c67c499591",
                "md5": "52aea7b0e5a6ce9393ef04d2bf2dfdef",
                "sha256": "d5042f0de1a8de23eb506c43a6a94f6f6db6dbadbc9655be2fe0eeeca17f4d75"
            },
            "downloads": -1,
            "filename": "kca-0.0.7.dev0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "52aea7b0e5a6ce9393ef04d2bf2dfdef",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 39561,
            "upload_time": "2023-09-09T09:17:02",
            "upload_time_iso_8601": "2023-09-09T09:17:02.287462Z",
            "url": "https://files.pythonhosted.org/packages/02/d5/42cba71dc8f320b4ea87fad78abd8297e60554565891928931c67c499591/kca-0.0.7.dev0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db0747a11d47354537e25f17305979f836e52e614a1ae930a94c67a37f053de0",
                "md5": "794d1c7452eec7415b7ac29a1ace862e",
                "sha256": "396508c557a37da8dc740f3d57e2863725c7bc92a3b62ff78eacea7275e3613d"
            },
            "downloads": -1,
            "filename": "kca-0.0.7.dev0.tar.gz",
            "has_sig": false,
            "md5_digest": "794d1c7452eec7415b7ac29a1ace862e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 24611,
            "upload_time": "2023-09-09T09:17:04",
            "upload_time_iso_8601": "2023-09-09T09:17:04.130768Z",
            "url": "https://files.pythonhosted.org/packages/db/07/47a11d47354537e25f17305979f836e52e614a1ae930a94c67a37f053de0/kca-0.0.7.dev0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-09 09:17:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "terminalai",
    "github_project": "kca",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "kca"
}
        
Elapsed time: 0.27190s