Skip to content

Commit 813a857

Browse files
committed
Fix typos
1 parent 2ac2ee7 commit 813a857

14 files changed

+257
-624
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ More information coming soon!
3535
If it's not the case yet, you can check these free resources:
3636
- Python: https://www.udacity.com/course/introduction-to-python--ud1110
3737
- Intro to Deep Learning with PyTorch: https://www.udacity.com/course/deep-learning-pytorch--ud188
38-
- PyTorch in 60min: https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html
38+
- PyTorch in 60 min: https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html
3939

4040
## FAQ
4141
**Is this class free?**
@@ -54,11 +54,11 @@ You can create one here 👉 [https://huggingface.co/join](https://huggingface.c
5454

5555
The course will consist of at least **4 Units.** More will be added as time goes on, on topics like diffusion for audio.
5656

57-
Each unit consists of some theory and background alongisde one or more hands-on notebooks. Some units will also contain suggested projects and we'll have competitions and swag for the best pipelines and demos (more details TDB).
57+
Each unit consists of some theory and background alongside one or more hands-on notebooks. Some units will also contain suggested projects and we'll have competitions and swag for the best pipelines and demos (more details TDB).
5858

5959
## 🌎 Languages and translations
6060

61-
Members of the 🤗 community have begin translating the course! We're planning to host this course on the [Hugging Face website](https://huggingface.co/), so if you're interested in contributing a translation, we recommend waiting until we've formatted the English content in it's final form.
61+
Members of the 🤗 community have begun translating the course! We're planning to host this course on the [Hugging Face website](https://huggingface.co/), so if you're interested in contributing a translation, we recommend waiting until we've formatted the English content in it's final form.
6262

6363
| Language | Authors |
6464
|:------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------|

hackathon/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ We will be awarding 3 prizes per theme, where **winners are determined by the mo
6060

6161
* [Hugging Face Pro subscription](https://huggingface.co/pricing) for 1 year or a $100 voucher for the [Hugging Face merch store](https://store.huggingface.co/)
6262

63-
**2nd place winnner**
63+
**2nd place winner**
6464

6565
* A copy of the [_NLP with Transformers_](https://transformersbook.com/) book or a $50 voucher for the [Hugging Face merch store](https://store.huggingface.co/)
6666

@@ -81,9 +81,9 @@ Google Colab will be sponsoring this event by providing fee Colab Pro credits to
8181

8282
### What data is allowed for fine-tuning?
8383

84-
You can use any images that belong to you or for which a permissive license allows for. If you'd like to submit a model trained on faces (e.g. as a Wilcard submission), we recommend using your own likeness. Ideally, use your own data where you can - we'd love to see your pets or favorite local landscape features, and we suspect the likes and prizes will tend to go to those who do something nice and personal 😁
84+
You can use any images that belong to you or for which a permissive license allows for. If you'd like to submit a model trained on faces (e.g. as a Wildcard submission), we recommend using your own likeness. Ideally, use your own data where you can - we'd love to see your pets or favorite local landscape features, and we suspect the likes and prizes will tend to go to those who do something nice and personal 😁.
8585

86-
### Are other fine-tuning techniques like textual inversion allowed?
86+
### Are other fine-tuning techniques like Textual Inversion allowed?
8787

88-
Absolutely! Although this hackathon is focused on DreamBooth, you're welcome (and encouraged) to experiment with other fine-tuning techniques. This also means you can use whatever frameworks, code, or services that help you make delightful models for the community to enjoy 🥰
88+
Absolutely! Although this hackathon is focused on DreamBooth, you're welcome (and encouraged) to experiment with other fine-tuning techniques. This also means you can use whatever frameworks, code, or services that help you make delightful models for the community to enjoy 🥰.
8989

hackathon/dreambooth.ipynb

+22-30
Large diffs are not rendered by default.

unit1/02_diffusion_models_from_scratch.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
}
6060
],
6161
"source": [
62-
"!pip install -q diffusers"
62+
"%pip install -q diffusers"
6363
]
6464
},
6565
{

unit1/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ models work and how to create your own using the 🤗 Diffusers library.
77

88
Here are the steps for this unit:
99

10-
- Make sure you've [signed up for this course](https://huggingface.us17.list-manage.com/subscribe?u=7f57e683fa28b51bfc493d048&id=ef963b4162) so that you can be notified when new material is released
11-
- Read through the introductory material below as well as any of the additional resources that sound interesting
12-
- Check out the _**Introduction to Diffusers**_ notebook below to put theory into practice with the 🤗 Diffusers library
13-
- Train and share your own diffusion model using the notebook or the linked training script
14-
- (Optional) Dive deeper with the _**Diffusion Models from Scratch**_ notebook if you're interested in seeing a minimal from-scratch implementation and exploring the different design decisions involved
10+
- Make sure you've [signed up for this course](https://huggingface.us17.list-manage.com/subscribe?u=7f57e683fa28b51bfc493d048&id=ef963b4162) so that you can be notified when new material is released.
11+
- Read through the introductory material below as well as any of the additional resources that sound interesting.
12+
- Check out the _**Introduction to Diffusers**_ notebook below to put theory into practice with the 🤗 Diffusers library.
13+
- Train and share your own diffusion model using the notebook or the linked training script.
14+
- (Optional) Dive deeper with the _**Diffusion Models from Scratch**_ notebook if you're interested in seeing a minimal from-scratch implementation and exploring the different design decisions involved.
1515
- (Optional) Check out [this video](https://www.youtube.com/watch?v=09o5cv6u76c) for an informal run-through the material for this unit.
1616

1717

0 commit comments

Comments
 (0)