From 70f1486cae4a2222db94917ba0247675a63bf63c Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Mon, 28 Mar 2022 12:15:48 +0300 Subject: [PATCH] Add new frameworks (#213) --- docs/fundamentals/hyperparameters.md | 2 +- docs/guides/frameworks/fastai/fastai_with_tensorboard.md | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/fundamentals/hyperparameters.md b/docs/fundamentals/hyperparameters.md index c18b0ffe..801b3892 100644 --- a/docs/fundamentals/hyperparameters.md +++ b/docs/fundamentals/hyperparameters.md @@ -16,7 +16,7 @@ These sections are further broken down into sub-sections (General / Args / TF_De ## Command Line Parsing ClearML captures any command line parameters passed when invoking code that uses standard python packages such as -argparse or [click](https://click.palletsprojects.com). This happens automatically with no additional code required beyond +argparse, [click](https://click.palletsprojects.com), or [Python Fire](https://github.com/google/python-fire). This happens automatically with no additional code required beyond initializing ClearML. ### Argparse Example diff --git a/docs/guides/frameworks/fastai/fastai_with_tensorboard.md b/docs/guides/frameworks/fastai/fastai_with_tensorboard.md index 66c454dc..5e0df43e 100644 --- a/docs/guides/frameworks/fastai/fastai_with_tensorboard.md +++ b/docs/guides/frameworks/fastai/fastai_with_tensorboard.md @@ -1,8 +1,13 @@ --- title: FastAI --- -The [fastai_with_tensorboard_example.py](https://github.com/allegroai/clearml/blob/master/examples/frameworks/fastai-v1/fastai_with_tensorboard_example/fastai_with_tensorboard_example.py) -example demonstrates the integration of ClearML into code that uses fastai v1 and TensorBoard. +The [fastai_with_tensorboard_example.py](https://github.com/allegroai/clearml/blob/master/examples/frameworks/fastai/legacy/fastai_with_tensorboard_example.py) +example demonstrates the integration of ClearML into code that uses FastAI v1 and TensorBoard. + +:::note FastAI V2 +The ClearML repository also includes [examples using FastAI v2](https://github.com/allegroai/clearml/tree/master/examples/frameworks/fastai). +::: + The example code does the following: 1. Trains a simple deep neural network on the fastai built-in MNIST dataset (see the [fast.ai](https://fastai1.fast.ai) documentation).