Add new frameworks (#213)

This commit is contained in:
pollfly 2022-03-28 12:15:48 +03:00 committed by GitHub
parent 27c6fe1970
commit 70f1486cae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -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

View File

@ -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).