NREL-elm


NameNREL-elm JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/NREL/elm
SummaryEnergy Language Model
upload_time2023-11-03 21:08:55
maintainer
docs_urlNone
authorGrant Buster
requires_python>=3.8
licenseBSD 3-Clause
keywords elm
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ***************************
Energy Language Model (ELM)
***************************

.. image:: https://github.com/NREL/elm/workflows/Documentation/badge.svg
    :target: https://nrel.github.io/sup3r/

.. image:: https://github.com/NREL/elm/workflows/pytests/badge.svg
    :target: https://github.com/NREL/elm/actions?query=workflow%3A%22pytests%22

.. image:: https://github.com/NREL/elm/workflows/Lint%20Code%20Base/badge.svg
    :target: https://github.com/NREL/elm/actions?query=workflow%3A%22Lint+Code+Base%22

.. image:: https://img.shields.io/pypi/pyversions/NREL-elm.svg
    :target: https://pypi.org/project/NREL-elm/

.. image:: https://badge.fury.io/py/NREL-elm.svg
    :target: https://badge.fury.io/py/NREL-elm

The Energy Language Model (ELM) software provides interfaces to apply Large Language Models (LLMs) like ChatGPT and GPT-4 to energy research. For example, you might be interested in:

- `Converting PDFs into a text database <https://nrel.github.io/elm/_autosummary/elm.pdf.PDFtoTXT.html#elm.pdf.PDFtoTXT>`_
- `Chunking text documents and embedding into a vector database <https://nrel.github.io/elm/_autosummary/elm.embed.ChunkAndEmbed.html#elm.embed.ChunkAndEmbed>`_
- `Performing recursive document summarization <https://nrel.github.io/elm/_autosummary/elm.summary.Summary.html#elm.summary.Summary>`_
- `Building an automated data extraction workflow using decision trees <https://nrel.github.io/elm/_autosummary/elm.tree.DecisionTree.html#elm.tree.DecisionTree>`_
- `Building a chatbot to interface with your own text corpus <https://nrel.github.io/elm/_autosummary/elm.wizard.EnergyWizard.html#elm.wizard.EnergyWizard>`_

Installing ELM
==============

.. inclusion-install

Option #1 (basic usage):

#. ``pip install NREL-elm``

Option #2 (developer install):

#. from home dir, ``git clone git@github.com:NREL/elm.git``
#. Create ``elm`` environment and install package
    a) Create a conda env: ``conda create -n elm``
    b) Run the command: ``conda activate elm``
    c) ``cd`` into the repo cloned in 1.
    d) Prior to running ``pip`` below, make sure the branch is correct (install
       from main!)
    e) Install ``elm`` and its dependencies by running:
       ``pip install .`` (or ``pip install -e .`` if running a dev branch
       or working on the source code)

.. inclusion-acknowledgements

Acknowledgments
===============

This work was authored by the National Renewable Energy Laboratory, operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. Funding provided by the DOE Wind Energy Technologies Office (WETO), the DOE Solar Energy Technologies Office (SETO), and internal research funds at the National Renewable Energy Laboratory. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/NREL/elm",
    "name": "NREL-elm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "elm",
    "author": "Grant Buster",
    "author_email": "grant.buster@nrel.gov",
    "download_url": "https://files.pythonhosted.org/packages/b4/80/9384cd2f0a0be120f224b6ba1f92d4d81f9a36cb391dade00abfddf4c7a9/NREL-elm-0.0.2.tar.gz",
    "platform": null,
    "description": "***************************\nEnergy Language Model (ELM)\n***************************\n\n.. image:: https://github.com/NREL/elm/workflows/Documentation/badge.svg\n    :target: https://nrel.github.io/sup3r/\n\n.. image:: https://github.com/NREL/elm/workflows/pytests/badge.svg\n    :target: https://github.com/NREL/elm/actions?query=workflow%3A%22pytests%22\n\n.. image:: https://github.com/NREL/elm/workflows/Lint%20Code%20Base/badge.svg\n    :target: https://github.com/NREL/elm/actions?query=workflow%3A%22Lint+Code+Base%22\n\n.. image:: https://img.shields.io/pypi/pyversions/NREL-elm.svg\n    :target: https://pypi.org/project/NREL-elm/\n\n.. image:: https://badge.fury.io/py/NREL-elm.svg\n    :target: https://badge.fury.io/py/NREL-elm\n\nThe Energy Language Model (ELM) software provides interfaces to apply Large Language Models (LLMs) like ChatGPT and GPT-4 to energy research. For example, you might be interested in:\n\n- `Converting PDFs into a text database <https://nrel.github.io/elm/_autosummary/elm.pdf.PDFtoTXT.html#elm.pdf.PDFtoTXT>`_\n- `Chunking text documents and embedding into a vector database <https://nrel.github.io/elm/_autosummary/elm.embed.ChunkAndEmbed.html#elm.embed.ChunkAndEmbed>`_\n- `Performing recursive document summarization <https://nrel.github.io/elm/_autosummary/elm.summary.Summary.html#elm.summary.Summary>`_\n- `Building an automated data extraction workflow using decision trees <https://nrel.github.io/elm/_autosummary/elm.tree.DecisionTree.html#elm.tree.DecisionTree>`_\n- `Building a chatbot to interface with your own text corpus <https://nrel.github.io/elm/_autosummary/elm.wizard.EnergyWizard.html#elm.wizard.EnergyWizard>`_\n\nInstalling ELM\n==============\n\n.. inclusion-install\n\nOption #1 (basic usage):\n\n#. ``pip install NREL-elm``\n\nOption #2 (developer install):\n\n#. from home dir, ``git clone git@github.com:NREL/elm.git``\n#. Create ``elm`` environment and install package\n    a) Create a conda env: ``conda create -n elm``\n    b) Run the command: ``conda activate elm``\n    c) ``cd`` into the repo cloned in 1.\n    d) Prior to running ``pip`` below, make sure the branch is correct (install\n       from main!)\n    e) Install ``elm`` and its dependencies by running:\n       ``pip install .`` (or ``pip install -e .`` if running a dev branch\n       or working on the source code)\n\n.. inclusion-acknowledgements\n\nAcknowledgments\n===============\n\nThis work was authored\u00a0by the National Renewable Energy Laboratory, operated by Alliance for Sustainable Energy, LLC, for the U.S. Department of Energy (DOE) under Contract No. DE-AC36-08GO28308. Funding provided by\u00a0the DOE Wind Energy Technologies Office (WETO), the DOE Solar Energy Technologies Office (SETO), and internal research funds at the National Renewable Energy Laboratory. The views expressed in the article do not necessarily represent the views of the DOE or the U.S. Government. The U.S. Government retains and the publisher, by accepting the article for publication, acknowledges that the U.S. Government retains a nonexclusive, paid-up, irrevocable, worldwide license to publish or reproduce the published form of this work, or allow others to do so, for U.S. Government purposes.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause",
    "summary": "Energy Language Model",
    "version": "0.0.2",
    "project_urls": {
        "Homepage": "https://github.com/NREL/elm"
    },
    "split_keywords": [
        "elm"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b17271596519baad98472a4d7df11710c67e52d8ee185ae405d91bb4620e9b60",
                "md5": "b88deef7ad78eb3a0297aeea46d504a8",
                "sha256": "a5ef9af9785f4f1b1f02e15cba6c415dbbbdd22c8935096e61457e7d679dbd0e"
            },
            "downloads": -1,
            "filename": "NREL_elm-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b88deef7ad78eb3a0297aeea46d504a8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 27643,
            "upload_time": "2023-11-03T21:08:54",
            "upload_time_iso_8601": "2023-11-03T21:08:54.092317Z",
            "url": "https://files.pythonhosted.org/packages/b1/72/71596519baad98472a4d7df11710c67e52d8ee185ae405d91bb4620e9b60/NREL_elm-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4809384cd2f0a0be120f224b6ba1f92d4d81f9a36cb391dade00abfddf4c7a9",
                "md5": "7bc3c9334cfc9497a96cde728b24397c",
                "sha256": "3fdb7afbd2b5189c58a54ade074c7361eb6d952d37c4f3f49ca90bf0c8834adc"
            },
            "downloads": -1,
            "filename": "NREL-elm-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "7bc3c9334cfc9497a96cde728b24397c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 22722,
            "upload_time": "2023-11-03T21:08:55",
            "upload_time_iso_8601": "2023-11-03T21:08:55.541207Z",
            "url": "https://files.pythonhosted.org/packages/b4/80/9384cd2f0a0be120f224b6ba1f92d4d81f9a36cb391dade00abfddf4c7a9/NREL-elm-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-03 21:08:55",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "NREL",
    "github_project": "elm",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "nrel-elm"
}
        
Elapsed time: 0.14067s