You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/examples/recipe_deepdive.rst
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,16 +54,6 @@ What Recipes are not?
54
54
- **Wrappers around external frameworks.** A recipe is **not** meant to be a wrapper around external frameworks. These are fully written in native-PyTorch using TorchTune building blocks. Dependencies are primarily in the form of additional utilities or interoperability with the surrounding ecosystem (eg: EluetherAI's evaluation harness).
55
55
56
56
57
-
Configs
58
-
-------
59
-
60
-
If you're new to TorchTune or to LLMs generally, configs would be the first concept to understand and get familiar with.
61
-
If you're an advanced user writing your own recipes, adding config files will improve your experimentation velocity and
62
-
ability to collaborate on experiments.
63
-
64
-
- TODO - point to config tutorial after this is landed
65
-
66
-
67
57
Recipe Script
68
58
-------------
69
59
@@ -192,3 +182,9 @@ Cleanup recipe state
192
182
193
183
self.metric_loggers.close()
194
184
...
185
+
186
+
Running Recipes with Configs
187
+
----------------------------
188
+
189
+
To run a recipe with a set of user-defined parameters, you will need to write a config file.
190
+
You can learn all about configs in our :ref:`config tutorial<config_tutorial_label>`.
0 commit comments