Build a Job Module
How to build your own compute job for Lilypad
A Lilypad module is a Git repository that allows you to perform various tasks using predefined templates and inputs. This guide will walk you through creating a Lilypad module, including defining a JSON template, handling inputs, and following best practices.
For a more in-depth look at building modules, refer to this end-to-end guide.
If you're new to Docker, consider exploring this step-by-step tutorial on creating, building, and running a Docker image for a simple Hello World style application.
Module Structure
Start by creating a Git repository for your Lilypad module. The module's versions will be represented as Git tags. Below is the basic structure of a Lilypad Module.
Prepare Your Model
Download model files
Handle all dependencies (
requirements.txt
)Implement input/output through environment variables
Write outputs to
/outputs
directory
1. Download the model locally
To use a model offline, you first need to download it and store it in a local directory. This guarantees that your code can load the model without requiring an internet connection. Here's a simple process to achieve this:
Install required libraries
Use a script to download the model (eg:
python download_model.py
)Verify that the model files are in your directory
The method to download and save a model and tokenizer may vary based on the model's architecture and the framework you are using. Always refer to the documentation of the specific model to ensure compatibility and proper usage.
2. Create Run Script (run_model.py for example) that will be used in conjunction with Docker
3. Create a Dockerfile that functions with your run script
4. Build and Publish Image
To make sure your Docker image is compatible with Lilypad, you need to define the architecture explicitly during the build process. This is particularly important if you are building the image on a system like macOS, which uses a different architecture (darwin/arm64
) than Lilypad's infrastructure (linux/amd64
).
The examples below are for building, tagging and pushing an image to DockerHub, but you can use any platform you prefer for hosting the image.
For Linux: docker buildx build -t <USERNAME>/<MODULE_NAME>:<MODULE_TAG> --push .
For MacOS:
5. Create a lilypad_module.json.tmpl Template
Environment Variables
Format in template:
Usage in CLI:
Formatting your module run command
During development, you will need to use the Git hash to test your module. This allows you to verify that your module functions correctly and produces the expected results.
Below is a working lilypad module run cmd for reference. (you can use this to run a lilypad job within the lilypad CLI):
Test Module before running on Lilypad
In order to ensure the module has been configured correctly and can run on the Lilypad network, use the following command syntax to run your Module on the Lilypad DemoNet. This is a dev environment with a development private key that can be used for running jobs on DemoNet.
When running the Module on DemoNet, if the job run appears to be stuck after a few minutes (sometimes it takes time for the Module to download to the RP node), cancel the job and try again. Open a ticket in Discord with any issues that persist.
If many jobs have been run on the machine previosuly, clear Lilypad
from the /tmp
folder locally and try running the job again.
Run Module on Lilypad
Examples
Here are some example Lilypad modules for reference:
Cowsay: Lilypad "Hello World" example
Llama2: Text to text
SDXL-turbo pipeline: Text to image generation
Deprecated examples:
lora-training: An example module for LoRa training tasks.
lora-inference: An example module for LoRa inference tasks.
duckdb: An example module related to DuckDB.
These examples can help you understand how to structure your Lilypad modules and follow best practices.
Conclusion
In this guide, we've covered the essential steps to create a Lilypad module, including defining a JSON template, handling inputs, and testing your module. By following these best practices, you can build reliable and reusable modules for Lilypad.
For more information and additional examples, refer to the official Lilypad documentation and the Cowsay example module.
Last updated
Was this helpful?