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: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Hey 👋, great that you want to contribute to the Community Computer Vision Cou
5
5
### Adding content to the course
6
6
*Important Note: If you’ve never contributed to open-source projects on GitHub, kindly read [this document](https://www.notion.so/19411c29298644df8e9656af45a7686d?pvs=25) which shows to do so with an example for the skops repository.*
7
7
8
-
1. First go to the [discussion section](https://github.com/johko/computer-vision-course/discussions/).
8
+
1. First go to the [discussion section](https://github.com/huggingface/computer-vision-course/discussions/).
9
9
2. Here you find a section for each unit of the course. Go to the unit you want to contribute to. Open a new discussion and describe what you want to add.
10
10
3. Wait for an approval from the repository maintainers or change requests
11
11
4. When your suggestions is approved, follow these steps:
@@ -15,7 +15,7 @@ Hey 👋, great that you want to contribute to the Community Computer Vision Cou
15
15
16
16
17
17
### Typos/Bug fixes
18
-
1. Open an [Issue](https://github.com/johko/computer-vision-course/issues) describing which content you want to add, change or fix
18
+
1. Open an [Issue](https://github.com/huggingface/computer-vision-course/issues) describing which content you want to add, change or fix
19
19
2. Wait for an approval from the repository maintainers
20
20
3. Follow the steps below to create a PR
21
21
@@ -24,7 +24,7 @@ Hey 👋, great that you want to contribute to the Community Computer Vision Cou
24
24
1. Fork the repository
25
25
2. Create a new branch for your changes
26
26
3. Make your changes
27
-
4. Create a pull request to the [stage](https://github.com/johko/computer-vision-course/tree/stage) branch of the main repository
27
+
4. Create a pull request to the [stage](https://github.com/huggingface/computer-vision-course/tree/stage) branch of the main repository
Copy file name to clipboardExpand all lines: chapters/en/unit0/welcome/welcome.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ The course is organized into multiple units, covering the fundamentals and delvi
90
90
91
91
## Meet our team
92
92
93
-
This course is made by the Hugging Face Community with love 💜! Join us by adding your contribution [on GitHub](https://github.com/johko/computer-vision-course).
93
+
This course is made by the Hugging Face Community with love 💜! Join us by adding your contribution [on GitHub](https://github.com/huggingface/computer-vision-course).
94
94
Our goal was to create a computer vision course that is beginner-friendly and that could act as a resource for others. Around 60+ people from all over the world joined forces to make this project happen. Here we give them credit:
Copy file name to clipboardExpand all lines: chapters/en/unit3/vision-transformers/knowledge-distillation.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The distillation loss is formulated as:
26
26
27
27
The KL loss refers to the [Kullback-Leibler Divergence](https://en.wikipedia.org/wiki/Kullback–Leibler_divergence) between the teacher and the student's output distributions. The overall loss for the student model is then formulated as the sum of this distillation loss with the standard cross-entropy loss over the ground-truth labels.
28
28
29
-
To see this loss function implemented in Python and a fully worked out example in Python, let's check out the [notebook for this section](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%203%20-%20Vision%20Transformers/KnowledgeDistillation.ipynb).
29
+
To see this loss function implemented in Python and a fully worked out example in Python, let's check out the [notebook for this section](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%203%20-%20Vision%20Transformers/KnowledgeDistillation.ipynb).
For a hands-on guide on how to use the Tensorflow Model Optimization Toolkit, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/tmo.ipynb)
21
+
For a hands-on guide on how to use the Tensorflow Model Optimization Toolkit, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/tmo.ipynb)
22
22
## PyTorch Quantization
23
23
24
24
### Overview
@@ -40,7 +40,7 @@ import torch.quantization
40
40
```
41
41
## Hands-on guide
42
42
43
-
For a hands-on guide on how to use the Pytorch Quantization, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/torch.ipynb)
43
+
For a hands-on guide on how to use the Pytorch Quantization, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/torch.ipynb)
44
44
45
45
## ONNX Runtime
46
46
@@ -72,7 +72,7 @@ pip install onnxruntime-gpu
72
72
73
73
### Hands-on guide
74
74
75
-
For a hands-on guide on how to use the ONNX Runtime, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/onnx.ipynb)
75
+
For a hands-on guide on how to use the ONNX Runtime, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/onnx.ipynb)
76
76
77
77
## TensorRT
78
78
@@ -92,7 +92,7 @@ for other installation methods, see [here](https://docs.nvidia.com/deeplearning/
92
92
93
93
### Hands-on guide
94
94
95
-
For a hands-on guide on how to use the TensorRT, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/tensorrt.ipynb)
95
+
For a hands-on guide on how to use the TensorRT, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/tensorrt.ipynb)
96
96
97
97
## OpenVINO
98
98
@@ -116,7 +116,7 @@ For other installation methods, see [here](https://docs.openvino.ai/2023.2/openv
116
116
117
117
### Hands-on guide
118
118
119
-
For a hands-on guide on how to use the OpenVINO, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/openvino.ipynb)
119
+
For a hands-on guide on how to use the OpenVINO, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/openvino.ipynb)
120
120
121
121
## Optimum
122
122
@@ -146,7 +146,7 @@ For installation of accelerator-specific features, see [here](https://huggingfac
146
146
147
147
### Hands-on guide
148
148
149
-
For a hands-on guide on how to use Optimum for quantization, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/optimum.ipynb)
149
+
For a hands-on guide on how to use Optimum for quantization, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/optimum.ipynb)
150
150
151
151
## EdgeTPU
152
152
@@ -160,6 +160,6 @@ The benefits of using EdgeTPU includes:
160
160
161
161
For more details on EdgeTPU, see [here](https://cloud.google.com/edge-tpu)
162
162
163
-
For guide on how to setup and use EdgeTPU, refer this [notebook](https://github.com/johko/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/edge_tpu.ipynb)
163
+
For guide on how to setup and use EdgeTPU, refer this [notebook](https://github.com/huggingface/computer-vision-course/blob/main/notebooks/Unit%209%20-%20Model%20Optimization/edge_tpu.ipynb)
0 commit comments