Skip to main content

A package of Estimators for Large Language Model Training.

Project description

FM Training Estimator

Estimators for Large Language Model Training.

Estimate resource consumption - memory, tokens, time etc for training and fine-tuning jobs using an hybrid of theory and learned regression models.

Feature Matrix and Roadmap

Technique Support
Full (1 gpu) :heavy_check_mark:
FSDP (multi) :heavy_check_mark:
Lora (1 gpu) :heavy_check_mark:
QLora (1 gpu) :heavy_check_mark:
Speculators Planned
Tensor Parallelism Planned

Time

Full learned approach. Coverage based on availability of training data.

Memory

Hybrid theory + learned. Coverage of learned approach is subject to availability of training data.

Tokens

Fully theory. Simulation based models available.

Technique Explanation Availability
TE0 Simulation based - slow but accurate :heavy_check_mark:
TE1 Statistical Planned
TE2 Approximate - fast, light, reasonable accurate :heavy_check_mark

Usage

You can use the library fm_training_estimator as a Python package by installing it via pip, see installation, build a regression model and using the library. If you'd like to construct the estimator service with a Web UI via FastAPI or build a docker image, clone the repository in your local machine before following the instructions in those sections.

Within your working directory, it is recommended to create a virtual environment to ensure no conflicts in dependencies.

python -m venv .venv
source .venv/bin/activate

Install

pip install fm_training_estimator

Build a regression model for learned prediction method

Now, prepare data in the expected format for lookup and regression. The format to be used to save this data is given here. Save your data file into ./workdir/data.csv.

mkdir workdir
mv <data file> ./workdir/data.csv

Now, build a regression model using this data, using one of the the provided make targets.

Building a model

This will create a model called ./workdir/model.zip which you can then use to estimate the resource consumption.

You can now run the estimator library, see below.

Using the Estimator

There are a few ways to use the Estimator now:

  1. Using the CLI tool, passing in a config in json format.
  2. Using the Web UI.
  3. Using the SDK directly from Python code.

Using the CLI

Demo of using CLI

Make estimates via a Web UI

To do this, first prepare a txt file called model_whitelist.txt in the workdir/ with a list of model names, 1 per line. Note that these are the models on which you want to run the estimator to estimate their resource consumption. You can use the provided example and place it in your workdir. Modify this list as needed.

Now, run the ui:

make run-web-ui

This will start the UI on localhost:3000 port.

(The web ui has other options, not covered in this simple setup. If you want to skip the model whitelisting or change the port, directly run the UI as shown in the README in the ./fm_training_estimator/ui folder.)

Use the library to get estimates

For a full API reference, visit our readthedocs.

Example code:

# Standard
import os

# First Party
from fm_training_estimator.config.arguments import (
    DataArguments,
    EstimateInput,
    EstimatorMetadata,
    FMArguments,
    HFTrainingArguments,
    InfraArguments,
    JobConfig,
)
from fm_training_estimator.sdk import (
    estimate_cost,
    estimate_memory,
    estimate_time,
    estimate_tokens,
)

workdir_path = os.path.join(os.path.abspath(os.curdir), "workdir")

model_path = os.path.join(workdir_path, "model.json")
lookup_data_path = os.path.join(workdir_path, "data.csv")

estimator_metadata = EstimatorMetadata(base_data_path=lookup_data_path)

fm = FMArguments(
    base_model_path="ibm-granite/granite-7b-base",
    torch_dtype="bfloat16",
    block_size=1024,
)
hf_training = HFTrainingArguments(
    per_device_train_batch_size=1, gradient_checkpointing=False
)
data = DataArguments(dataset="imdb", te_approach=0)
infra = InfraArguments(numGpusPerPod=1)
job_conf = JobConfig(hf_training, fm, data, infra)
est_input = EstimateInput(estimator_metadata=estimator_metadata, job_configs=[job_conf])

print("Estimating Memory:....")

print("With only theory: ", estimate_memory(est_input))
print("With reg model: ", estimate_memory(est_input, model_path))

hf_training.fsdp = "full_shard"

print("Using fsdp full shard")
print("With only theory: ", estimate_memory(est_input))
print("With reg model: ", estimate_memory(est_input, model_path))


print("Estimating Time:....")
print("With only theory: ", estimate_time(est_input))
print("With reg model: ", estimate_time(est_input, model_path))

print("Estimating Tokens:....")
print("With only theory: ", estimate_tokens(est_input))
print("With reg model: ", estimate_tokens(est_input, model_path))

Build a Docker Container Image

To build the estimator container image:

  1. Make sure both model.json and data.csv files are present in the workdir folder.

  2. Use this command to build and push the image:

make cbuild
make cpush # If you want to push to the container registry
  1. Use this command to run the image:
docker run --rm -it -v "/path/to/input.json:/app/input.json" icr.io/ftplatform/fm_training_estimator:latest

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

fm_training_estimator-0.1.3-py3-none-any.whl (80.1 kB view details)

Uploaded Python 3

File details

Details for the file fm_training_estimator-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for fm_training_estimator-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cc4e0cc75542240bed2ac0ce71f34f8e36910383f21afca45a101037314010ac
MD5 edd36cbc136c682e971a10e0cb0126a0
BLAKE2b-256 01cf2759a22b0c42253c4de65836c3fd396711b57c150705a1a064987953d334

See more details on using hashes here.

Provenance

The following attestation bundles were made for fm_training_estimator-0.1.3-py3-none-any.whl:

Publisher: build-and-push.yml on foundation-model-stack/fm-training-estimator

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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