
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
fmeval
Advanced tools
fmeval is a library to evaluate Large Language Models (LLMs) in order to help select the best LLM
for your use case. The library evaluates LLMs for the following tasks:
The library contains
ModelRunner interface. ModelRunner encapsulates the logic for invoking different types of LLMs, exposing a predict method to simplify interactions with LLMs within the eval algorithm code. We have built-in support for Amazon SageMaker Endpoints and JumpStart models. The user can extend the interface for their own model classes by implementing the predict method.fmeval is developed under python3.10. To install the package, simply run:
pip install fmeval
You can see examples of running evaluations on your LLMs with built-in or custom datasets in the examples folder.
The main steps for using fmeval are:
ModelRunner which can perform invocation on your LLM. fmeval provides built-in support for Amazon SageMaker Endpoints and JumpStart LLMs. You can also extend the ModelRunner interface for any LLMs hosted anywhere.For example,
from fmeval.eval_algorithms.toxicity import Toxicity, ToxicityConfig
eval_algo = Toxicity(ToxicityConfig())
eval_output = eval_algo.evaluate(model=model_runner)
Note: You can update the default eval config parameters for your specific use case.
We have our built-in datasets configured, which are consumed for computing the scores in eval algorithms. You can choose to use a custom dataset in the following manner.
config = DataConfig(
dataset_name="custom_dataset",
dataset_uri="./custom_dataset.jsonl",
dataset_mime_type="application/jsonlines",
model_input_location="question",
target_output_location="answer",
)
eval_algo = Toxicity(ToxicityConfig())
eval_output = eval_algo.evaluate(model=model_runner, dataset_config=config)
Please refer to the developer guide and examples for more details around the usage of eval algorithms.
fmeval has telemetry enabled for tracking the usage of AWS-provided/hosted LLMs.
This data is tracked using the number of SageMaker or JumpStart ModelRunner objects that get created.
Telemetry can be disabled by setting the DISABLE_FMEVAL_TELEMETRY environment variable to true.
Users running fmeval on a Windows machine may encounter the error OSError: [Errno 0] AssignProcessToJobObject() failed when fmeval internally calls ray.init(). This OS error is a known Ray issue, and is detailed here. Multiple users have reported that installing Python from the official Python website rather than the Microsoft store fixes this issue. You can view more details on limitations of running Ray on Windows on Ray's webpage.
If you run into the error error: can't find Rust compiler while installing fmeval on a Mac, please try running the steps below.
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup install 1.72.1
rustup default 1.72.1-aarch64-apple-darwin
rustup toolchain remove stable-aarch64-apple-darwin
rm -rf $HOME/.rustup/toolchains/stable-aarch64-apple-darwin
mv $HOME/.rustup/toolchains/1.72.1-aarch64-apple-darwin $HOME/.rustup/toolchains/stable-aarch64-apple-darwin
fmeval loads multiple copies of the model into memory to maximize parallelization, where the exact number depends on the number of cores on the machine. To reduce the number of models that get loaded in parallel, you can
set the environment variable PARALLELIZATION_FACTOR to a value that suits your machine.devtoolOnce you have created a virtual environment with python3.10, run the following command to set up the development environment:
./devtool install_deps_dev
./devtool install_deps
./devtool all
Note: If you are on a Mac, the install_poetry_version devtool command may fail when running the poetry installation script. If there is a failure, you should get error logs sent to a file with a name like poetry-installer-error-cvulo5s0.log. Open the logs, and if the error message looks like the following:
dyld[10908]: Library not loaded: @loader_path/../../../../Python.framework/Versions/3.10/Python
Referenced from: <8A5DEEDB-CE8E-325F-88B0-B0397BD5A5DE> /Users/daniezh/Library/Application Support/pypoetry/venv/bin/python3
Reason: tried: '/Users/daniezh/Library/Application Support/pypoetry/venv/bin/../../../../Python.framework/Versions/3.10/Python' (no such file), '/Library/Frameworks/Python.framework/Versions/3.10/Python' (no such file), '/System/Library/Frameworks/Python.framework/Versions/3.10/Python' (no such file, not in dyld cache)
Traceback:
File "<string>", line 923, in main
File "<string>", line 562, in run
then you will need to tweak the poetry installation script and re-run it.
Steps:
curl -sSL https://install.python-poetry.org > poetry_script.pysymlinks argument in builder = venv.EnvBuilder(clear=True, with_pip=True, symlinks=False) to True. See mionker's comment here for an explanation.python poetry_script.py --version 1.8.2 (where 1.8.2 is the version listed in devtool; this may change after the time of this writing).poetry --versionAdditionally, if you already have an existing version of Poetry installed and want to install a new version, before you re-run the above command, you will need to uninstall Poetry:
curl -sSL https://install.python-poetry.org | python3 - --uninstall
Before submitting a PR, rerun ./devtool all for testing and linting. It should run without errors.
We use poetry to manage python dependencies in this project. If you want to add a new
dependency, please update the pyproject.toml file, and run the poetry update command to update the
poetry.lock file (which is checked in).
Other than this step to add dependencies, use devtool commands for installing dependencies, linting and testing. Execute the command ./devtool without any arguments to see a list of available options.
The evaluation algorithms and metrics provided by fmeval are implemented using Transform and TransformPipeline objects. You can leverage these existing tools to similarly implement your own metrics and algorithms in a modular manner.
Here, we provide a high-level overview of what these classes represent and how they are used. Specific implementation details can be found in their respective docstrings (see src/fmeval/transforms/transform.py and src/fmeval/transforms/transform_pipeline.py).
At a high level, an evaluation algorithm takes an initial tabular dataset consisting of a number of "records" (i.e. rows) and repeatedly transforms this dataset until the dataset either contains all the evaluation metrics, or at least all the intermediate data needed to compute said metrics. The transformations that get applied to the dataset inherently operate at a per-record level, and simply get applied to every record in the dataset to transform the dataset in full.
Transform classWe represent the concept of a record-level transformation using the Transform class. Transform is a callable class where its __call__ method takes a single argument, record, which represents the record to be transformed. A record is represented by a Python dictionary. To implement your own record-level transformation logic, create a concrete subclass of Transform and implement its __call__ method.
Example:
Let's implement a Transform for a simple, toy metric.
class NumSpaces(Transform):
"""
Augments the input record (which contains some text data)
with the number of spaces found in the text.
"""
def __call__(self, record: Dict[str, Any]) -> Dict[str, Any]:
input_text = record["input_text"]
record["num_spaces"] = input_text.count(" ")
return record
One issue with this simple example is that the keys used for the input text data and the output data are both hard-coded. This generally isn't desirable, so let's improve on our running example.
class NumSpaces(Transform):
"""
Augments the input record (which contains some text data)
with the number of spaces found in the text.
"""
def __init__(self, text_key, output_key):
super().__init__(text_key, output_key) # always need to pass all init args to superclass init
self.text_key = text_key # the dict key corresponding to the input text data
self.output_key = output_key # the dict key corresponding to the output data (i.e. number of spaces)
def __call__(self, record: Dict[str, Any]) -> Dict[str, Any]:
input_text = record[self.text_key]
record[self.output_key] = input_text.count(" ")
return record
Since __call__ only takes a single argument, record, we pass the information regarding which keys to use for input and output data to __init__ and save them as instance attributes. Note that all subclasses of Transform need to call super().__init__ with all of their __init__ arguments, due to low-level implementation details regarding how we apply the Transforms to the dataset.
TransformPipeline classWhile Transform encapsulates the logic for the record-level transformation, we still don't have a mechanism for applying the transform to a dataset. This is where TransformPipeline comes in. A TransformPipeline represents a sequence, or "pipeline", of Transform objects that you wish to apply to a dataset. After initializing a TransformPipeline with a list of Transforms, simply call its execute method on an input dataset.
Example: Here, we implement a pipeline for a very simple evaluation. The steps are:
ModelRunner to get the model outputs# Use the built-in utility Transform for generating prompts
gen_prompt = GeneratePrompt(
input_keys="model_input",
output_keys="prompt",
prompt_template="Answer the following question: $model_input",
)
# Use the built-in utility Transform for getting model outputs
model = ... # some ModelRunner
get_model_outputs = GetModelOutputs(
input_to_output_keys={"prompt": ["model_output"]},
model_runner=model,
)
# Our new metric!
compute_num_spaces = NumSpaces(
text_key="model_output",
output_key="num_spaces",
)
my_pipeline = TransformPipeline([gen_prompt, get_model_outputs, compute_num_spaces])
dataset = # load some dataset
dataset = my_pipeline.execute(dataset)
To implement new metrics, create a new Transform that encapsulates the logic for computing said metric. Since the logic for all evaluation algorithms can be represented as a sequence of different Transforms, implementing a new evaluation algorithm essentially amounts to defining a TransformPipeline. Please see the built-in evaluation algorithms for examples.
See CONTRIBUTING for more information.
This project is licensed under the Apache-2.0 License.
FAQs
Amazon Foundation Model Evaluations
We found that fmeval demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.