psiz


Namepsiz JSON
Version 0.10.0 PyPI version JSON
download
home_pagehttps://github.com/psiz-org/psiz
SummaryToolbox for inferring psychological embeddings.
upload_time2023-10-17 22:31:16
maintainer
docs_urlNone
authorBrett D. Roads
requires_python<3.11,>=3.9
licenseApache Licence 2.0
keywords psychology cognitive science
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ![PsiZ logo](docs/img/full_logo_300.png)

[![PyPI version](https://badge.fury.io/py/psiz.svg)](https://badge.fury.io/py/psiz)
[![Python](https://img.shields.io/pypi/pyversions/psiz.svg?style=plastic)](https://badge.fury.io/py/psiz)
[![Documentation Status](https://readthedocs.org/projects/psiz/badge/?version=latest)](https://psiz.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/psiz-org/psiz/branch/main/graph/badge.svg?token=UIK748KI5I)](https://codecov.io/gh/psiz-org/psiz)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

---
**WARNING:** This package is pre-release and the API is not stable. All APIs are subject to change and all releases are alpha.

---

## Purpose

PsiZ provides computational tools for modeling how people perceive the world. The primary use case of PsiZ is to infer psychological representations from human behavior (e.g., similarity judgments). The package integrates cognitive theory with modern computational methods.

## Resources
* Official Psiz Documentation: [psiz.readthedocs.io/en/latest](https://psiz.readthedocs.io/en/latest/)
* [PsiZ Examples](examples/)

## What's in a name?

The name PsiZ (pronounced like the word *size*, /sʌɪz/) is meant to serve as shorthand for the term *psychological embedding*. The greek letter Psi is often used to denote the field of psychology and the matrix variable **Z** is often used in machine learning to denote a latent feature space.

## Installation

There are two different ways to install: PyPI or git. Installing via git has the advantage of including examples and tests in the cloned repository.

### Using PyPI
```
$ pip install psiz
```
You can optionally install the python packages necessary for running package tests (e.g., `pytest`):
```
$ pip install "psiz[test]"
```

### Using git
```
# Clone the PsiZ repository from GitHub to your local machine.
$ git clone https://github.com/psiz-org/psiz.git
# Use `pip` to install the cloned repository.
$ pip install /local/path/to/psiz
```

**Notes:**
* PsiZ depends on TensorFlow. Please see the [TF compatibility matrix](https://www.tensorflow.org/install/source#gpu) for supported Python and CUDA versions for each version of TensorFlow.
* PsiZ versions <=0.5.0 must be installed using git clone and editable mode (e.g., `pip install -e /local/path/to/psiz`).
* You can install specific releases:
    * using PyPI: `pip install 'psiz==0.5.1'`
    * using git: `git clone https://github.com/psiz-org/psiz.git --branch v0.5.1`

## Attribution
If you use PsiZ in your work please cite at least one of the following:
```
@InProceedings{Roads_Love_2021:CVPR,
    title     = {Enriching ImageNet with Human Similarity Judgments and Psychological Embeddings},
    author    = {Brett D. Roads and Bradley C. Love},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
    year      = {2021},
    month     = {6},
    pages     = {3547--3557}
    doi       = {10.1109/CVPR46437.2021.00355},
}
```
```
@Article{Roads_Mozer_2019:BRM,
    title   = {Obtaining psychological embeddings through joint kernel and metric learning},
    author  = {Brett D. Roads and Michael C. Mozer},
    journal = {Behavior Research Methods},
    year    = {2019},
    volume  = {51},
    pages   = {2180–-2193},
    doi     = {10.3758/s13428-019-01285-3}
}
```

## Contribution Guidelines
If you would like to contribute please see the [contributing guidelines](CONTRIBUTING.md).

This project uses a [Code of Conduct](CODE.md) adapted from the [Contributor Covenant](https://www.contributor-covenant.org/)
version 2.0, available at <https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.

## Licence
This project is licensed under the Apache Licence 2.0 - see LICENSE file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/psiz-org/psiz",
    "name": "psiz",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<3.11,>=3.9",
    "maintainer_email": "",
    "keywords": "psychology,cognitive science",
    "author": "Brett D. Roads",
    "author_email": "brett.roads@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e8/f7/52587ba3fc3df286e490fecf1926c9456562ab1e72812b0800af2039185e/psiz-0.10.0.tar.gz",
    "platform": null,
    "description": "![PsiZ logo](docs/img/full_logo_300.png)\n\n[![PyPI version](https://badge.fury.io/py/psiz.svg)](https://badge.fury.io/py/psiz)\n[![Python](https://img.shields.io/pypi/pyversions/psiz.svg?style=plastic)](https://badge.fury.io/py/psiz)\n[![Documentation Status](https://readthedocs.org/projects/psiz/badge/?version=latest)](https://psiz.readthedocs.io/en/latest/?badge=latest)\n[![codecov](https://codecov.io/gh/psiz-org/psiz/branch/main/graph/badge.svg?token=UIK748KI5I)](https://codecov.io/gh/psiz-org/psiz)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n---\n**WARNING:** This package is pre-release and the API is not stable. All APIs are subject to change and all releases are alpha.\n\n---\n\n## Purpose\n\nPsiZ provides computational tools for modeling how people perceive the world. The primary use case of PsiZ is to infer psychological representations from human behavior (e.g., similarity judgments). The package integrates cognitive theory with modern computational methods.\n\n## Resources\n* Official Psiz Documentation: [psiz.readthedocs.io/en/latest](https://psiz.readthedocs.io/en/latest/)\n* [PsiZ Examples](examples/)\n\n## What's in a name?\n\nThe name PsiZ (pronounced like the word *size*, /s\u028c\u026az/) is meant to serve as shorthand for the term *psychological embedding*. The greek letter Psi is often used to denote the field of psychology and the matrix variable **Z** is often used in machine learning to denote a latent feature space.\n\n## Installation\n\nThere are two different ways to install: PyPI or git. Installing via git has the advantage of including examples and tests in the cloned repository.\n\n### Using PyPI\n```\n$ pip install psiz\n```\nYou can optionally install the python packages necessary for running package tests (e.g., `pytest`):\n```\n$ pip install \"psiz[test]\"\n```\n\n### Using git\n```\n# Clone the PsiZ repository from GitHub to your local machine.\n$ git clone https://github.com/psiz-org/psiz.git\n# Use `pip` to install the cloned repository.\n$ pip install /local/path/to/psiz\n```\n\n**Notes:**\n* PsiZ depends on TensorFlow. Please see the [TF compatibility matrix](https://www.tensorflow.org/install/source#gpu) for supported Python and CUDA versions for each version of TensorFlow.\n* PsiZ versions <=0.5.0 must be installed using git clone and editable mode (e.g., `pip install -e /local/path/to/psiz`).\n* You can install specific releases:\n    * using PyPI: `pip install 'psiz==0.5.1'`\n    * using git: `git clone https://github.com/psiz-org/psiz.git --branch v0.5.1`\n\n## Attribution\nIf you use PsiZ in your work please cite at least one of the following:\n```\n@InProceedings{Roads_Love_2021:CVPR,\n    title     = {Enriching ImageNet with Human Similarity Judgments and Psychological Embeddings},\n    author    = {Brett D. Roads and Bradley C. Love},\n    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},\n    year      = {2021},\n    month     = {6},\n    pages     = {3547--3557}\n    doi       = {10.1109/CVPR46437.2021.00355},\n}\n```\n```\n@Article{Roads_Mozer_2019:BRM,\n    title   = {Obtaining psychological embeddings through joint kernel and metric learning},\n    author  = {Brett D. Roads and Michael C. Mozer},\n    journal = {Behavior Research Methods},\n    year    = {2019},\n    volume  = {51},\n    pages   = {2180\u2013-2193},\n    doi     = {10.3758/s13428-019-01285-3}\n}\n```\n\n## Contribution Guidelines\nIf you would like to contribute please see the [contributing guidelines](CONTRIBUTING.md).\n\nThis project uses a [Code of Conduct](CODE.md) adapted from the [Contributor Covenant](https://www.contributor-covenant.org/)\nversion 2.0, available at <https://www.contributor-covenant.org/version/2/0/code_of_conduct.html>.\n\n## Licence\nThis project is licensed under the Apache Licence 2.0 - see LICENSE file for details.\n",
    "bugtrack_url": null,
    "license": "Apache Licence 2.0",
    "summary": "Toolbox for inferring psychological embeddings.",
    "version": "0.10.0",
    "project_urls": {
        "Documentation": "https://psiz.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/psiz-org/psiz",
        "Source": "https://github.com/psiz-org/psiz",
        "Tracker": "https://github.com/psiz-org/psiz/issues"
    },
    "split_keywords": [
        "psychology",
        "cognitive science"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad59d16b7ff4f21995483727a74e40cd0d7299fd7415211467f8eb5f2bdd6fe0",
                "md5": "bbe077acd1116a63c1ccfd6a91f61211",
                "sha256": "d80c691857da34e61ad8b12dc900b2bef1b42628d21f68620b1cce8f6f9f623d"
            },
            "downloads": -1,
            "filename": "psiz-0.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bbe077acd1116a63c1ccfd6a91f61211",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.11,>=3.9",
            "size": 183155,
            "upload_time": "2023-10-17T22:31:14",
            "upload_time_iso_8601": "2023-10-17T22:31:14.433407Z",
            "url": "https://files.pythonhosted.org/packages/ad/59/d16b7ff4f21995483727a74e40cd0d7299fd7415211467f8eb5f2bdd6fe0/psiz-0.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8f752587ba3fc3df286e490fecf1926c9456562ab1e72812b0800af2039185e",
                "md5": "6608117f951763ea956179f3a58ebade",
                "sha256": "5f61a0150d2af3559671add60d659f2a304dd5f6398d5ab27daa02f78e8e07b5"
            },
            "downloads": -1,
            "filename": "psiz-0.10.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6608117f951763ea956179f3a58ebade",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.11,>=3.9",
            "size": 37042415,
            "upload_time": "2023-10-17T22:31:16",
            "upload_time_iso_8601": "2023-10-17T22:31:16.752297Z",
            "url": "https://files.pythonhosted.org/packages/e8/f7/52587ba3fc3df286e490fecf1926c9456562ab1e72812b0800af2039185e/psiz-0.10.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-17 22:31:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "psiz-org",
    "github_project": "psiz",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "psiz"
}
        
Elapsed time: 0.12641s