Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To get the most out of ART, you should have a basic knowledge of (or eagerness t
- PyTorch Lightning: https://lightning.ai/docs/pytorch/stable/levels/core_skills.html

**Table of contents:**
- [ART - Actually Robust Training framework](#art---actually-robust-training-framework)
- [ART - Actually Robust Training Framework](#art---actually-robust-training-framework)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no idea

- [Installation](#installation)
- [Quickstart](#quickstart)
- [Project creation](#project-creation)
Expand Down Expand Up @@ -143,13 +143,17 @@ After running all cells run the dashboard with:
```sh
python -m art.cli run-dashboard
```
2. Second showcase tutorial on how to use ART for transfer learning in CV classification task.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change CV to "image", CV may be misleading

```sh
python -m art.cli cv-transfer-learning-tutorial
```

2. A tutorial showing how to use ART for transfer learning in an NLP task.
3. A tutorial showing how to use ART for transfer learning in an NLP task.
```sh
python -m art.cli bert-transfer-learning-tutorial

```
3. A tutorial showing how to use ART for regularization

4. A tutorial showing how to use ART for regularization
```sh
python -m art.cli regularization_tutorial
```
Expand Down
8 changes: 8 additions & 0 deletions art/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,14 @@ def regularization_tutorial():
branch="regularize_tutorial",
)

@app.command()
def cv_transfer_learning_tutorial():
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd also change the cv here. It's not as well used as NLP

"""Creates a cv transfer learning tutorial."""
create_project(
project_name="cv_transfer_learning_tutorial",
branch="cv_transfer_learning_tutorial",
)


if __name__ == "__main__":
app()