Update README.md
Browse files
README.md
CHANGED
@@ -32,6 +32,19 @@ It achieves the following results on the evaluation set:
|
|
32 |
|
33 |
More information needed
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
## Intended uses & limitations
|
36 |
|
37 |
More information needed
|
|
|
32 |
|
33 |
More information needed
|
34 |
|
35 |
+
#### How to use
|
36 |
+
|
37 |
+
You can use this model with Transformers *pipeline* for NER.
|
38 |
+
|
39 |
+
```python
|
40 |
+
from transformers import pipeline
|
41 |
+
gender_classifier = pipeline(model="NTQAI/pedestrian_gender_recognition")
|
42 |
+
image_path = "abc.jpg"
|
43 |
+
|
44 |
+
results = nlp(image_path)
|
45 |
+
print(results)
|
46 |
+
```
|
47 |
+
|
48 |
## Intended uses & limitations
|
49 |
|
50 |
More information needed
|