8000 Update README.md · realpython/materials@af098cb · GitHub
[go: up one dir, main page]

Skip to content

Commit af098cb

Browse files
authored
Update README.md
1 parent a842209 commit af098cb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

huggingface-transformers/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# HuggingFace Transformers: Leverage Open-Source AI in Python
1+
# Hugging Face Transformers: Leverage Open-Source AI in Python
22

3-
This repo contains the materials for the tutorial (HuggingFace Transformers: Leverage Open-Source AI in Python)[https://realpython.com/huggingface-transformers-open-source-ai-in-python/].
3+
This folder contains the materials for the tutorial (Hugging Face Transformers: Leverage Open-Source AI in Python)[https://realpython.com/huggingface-transformers-open-source-ai-in-python/].
44

5-
Transformers is available on [PyPI](https://pypi.org/), and you can install it with [pip](https://realpython.com/what-is-pip/). Open a terminal or command prompt, create a new virtual environment, and then run the following command:
5+
Transformers is available on [PyPI](https://pypi.org/) and you can install it with [pip](https://realpython.com/what-is-pip/). Open a terminal or command prompt, create a new virtual environment, and then run the following command:
66

77
```console
88
(venv) $ python -m pip install transformers
99
```
1010

11-
This command will install the latest version of Transformers from PyPI onto your machine. Throughout this tutorial, you'll also leverage [Pytorch](https://realpython.com/pytorch-vs-tensorflow/) to interact with models at a lower level. You can install Pytorch with the following command:
11+
This command will install the latest version of Transformers from PyPI onto your machine. Throughout this tutorial, you'll also leverage [PyTorch](https://realpython.com/pytorch-vs-tensorflow/) to interact with models at a lower level. You can install PyTorch with the following command:
1212

1313
```console
1414
(venv) $ python -m pip install torch
@@ -21,4 +21,4 @@ To verify that the installations were successful, start a [Python REPL](https://
2121
>>> import torch
2222
```
2323

24-
If the imports run without errors, then you've successfully installed the dependencies needed for this tutorial.
24+
If the imports run without errors, then you've successfully installed the dependencies needed for this tutorial.

0 commit comments

Comments
 (0)
0