From b8c61f637c3819ca58d96a4eaa0bd5be72d4a0b3 Mon Sep 17 00:00:00 2001 From: Ryan Avery Date: Tue, 11 Feb 2025 14:10:54 -0800 Subject: [PATCH] correct table so it renders --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f8e9ec..a9053c8 100644 --- a/README.md +++ b/README.md @@ -710,7 +710,7 @@ See the [Best Practices - Framework Specific Artifact Types](./best-practices.md #### Compile Method | Compile Method | Description | -|-:-:------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | aot | [Ahead-of-Time Compilation](https://en.wikipedia.org/wiki/Ahead-of-time_compilation). Converts a higher level code description of a model and a model's learned weights to a lower level representation prior to executing the model. This compiled model may be more portable by having fewer runtime dependencies and optimized for specific hardware. | | jit | [Just-in-Time Compilation](https://en.wikipedia.org/wiki/Just-in-time_compilation). Converts a higher level code description of a model and a model's learned weights to a lower level representation while executing the model. JIT provides more flexibility in the optimization approaches that can be applied to a model compared to AOT, but sacrifices portability and performance. |