Skip to main content

Library for downloading and loading generative AI models.

Project description

geniverse_hub 🪐

Use and contribute to the Geniverse HUB 🪐 with the following instructions.

Setup

First install the geniverse_hub python package with the following command:

pip install geniverse-hub

This will provide you with the required scripts to download and utilize the models available in the hub.

All the models are extracted from github repositories. Hence, one requirement for this library to work is to have Git installed and working in your machine. All the available models are referenced in this config file with its owner, name and ditribution (i.e., the branch to be used within the github repo).

In order to install the required dependencies for a required module, add the name of the module within squared brackets after the install command as follows:

Usage

There are some common functionalities for downloading and loading models in the hub. The following is an example on how to use VQGAN:

from geniverse_hub import hub_utils
taming_utils = hub_utils.load_from_hub(module_name="taming", )
model = taming_utils.load_model()

You can utilize any of the models in the hub's config file by changing the value of module_name for the corresponding model that you intend to load.

The result will be equivelant to a python package where you will have access to functionalities of the specific module that you loaded such as loading a model. In order to find the functionalities for each of the models, access their respective documentation in https://github.com/<owner>/<name>/tree/<dist> where owner, name and dist can be found in the hub's config file.

Contribute

In order to contribute to the Geniverse Hub 🪐 you just need to create a github repository following some simple guidelines and reference it within our config file.

Contribution Guidelines

In order for your model to be accessible from the hub, you must provide with a requirements.txt file where all the python dependencies are stated. The repository should contain a python package with the same name os the repository. This package should contain a modeling_utils.py script where the functionalities for your model are available. The result from geniverse_hub.hub_utils.load_module(<your-module's-name>) will be the set of functions and classes that you implement there.

You can find an example of this coding structure in our taming implementation in https://github.com/thegeniverse/taming/tree/master. Here, we have a python package with the same name as the repo (taming) with all the required code for this module to work. There, we can also find the modeling_utils.py. Inside this file there are all the functionalities that we give access for anyone using our model from the hub. For example, we can find the function load_model() that can be used to load a VQGAN model.

Add Requirements

Your requirement file should be named requirements.txt and should be placed on the root folder of your repositroy.

Create Python Module

Your python module should be created from a folder with the same name as your github repository. If your repository name is taming the name of this folder should be taming too. Assuming that you are using a new version of Python it is not required to add a __init__.py within this folder in order for Python to understand that is a module, but we encourage you to do so to make it more explicit (it is also very convenient to manage what gets imported when your module is invoked).

Add Modeling Utils

Within the Python module just created there should be a file names modeling_utils.py. This file will provide anyone that wants to use your code with easy-to-use functionalities and/or classes to load the model that you provide.

Create a Local PyPi Package

The final step is to add a setup.py in the root folder of your project in order for it to be imported by geniverse_hub 🪐. This file need not to be useful to be uploaded to the Python Package Index and it can be as simple as the following template:

import setuptools

with open("requirements.txt", "r", encoding="utf-8") as req_file:
    requirements_list = req_file.read().strip().split("\n")

setuptools.setup(
    name="<module-name>",
    packages=["<module-name>"],
    install_requires=requirements_list,
)

Where <module-name> of course references the name of your module and github repo (that, as we mentioned before, it shoule be the same).

WARNING!!! Make sure that the name of your module is unique so python do not get confused when it loads it!

The structure of your project should look something like this:

- <module-name>
    + <module-name>
        - `__init__.py` (optional)
        - `modeling_utils.py`
    + `setup.py`

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geniverse_hub-0.0.6.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geniverse_hub-0.0.6-py3-none-any.whl (8.7 kB view details)

Uploaded Python 3

File details

Details for the file geniverse_hub-0.0.6.tar.gz.

File metadata

  • Download URL: geniverse_hub-0.0.6.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/29.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.0.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for geniverse_hub-0.0.6.tar.gz
Algorithm Hash digest
SHA256 9ee61942565ebc68d124717c7e3db96bcc8ff51bc9c13bf318545958f573a5fb
MD5 b9a54231ede10b7dc3342a1e6e94d8a1
BLAKE2b-256 7135c1a629e56c79af7cccd1e7fb1f2b42cfbf661b05e61e3f14391f9139b06c

See more details on using hashes here.

File details

Details for the file geniverse_hub-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: geniverse_hub-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 8.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/29.0 requests/2.26.0 requests-toolbelt/0.9.1 urllib3/1.26.7 tqdm/4.62.3 importlib-metadata/4.10.0 keyring/23.0.1 rfc3986/1.5.0 colorama/0.4.4 CPython/3.7.9

File hashes

Hashes for geniverse_hub-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 dba7e1e4b0e01178c938762f48f98ae7bd91c53eb92e64a59b686a83f7cd5b30
MD5 53396166ab9cb9207c5e2092c2dbcb75
BLAKE2b-256 e88451935481e6e67bbb10168688c57c33c9ef3e1c7dc098480450bcc51f21c2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page