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
* Update installation.md
Some shells (like zsh) require quotes to avoid attempting to interpret the square braces.
* Added a tab to switch between bash and zsh shell instructions
---------
Co-authored-by: Andrew Moore <andrew.p.moore94@gmail.com>
Copy file name to clipboardExpand all lines: docs/docs/usage/how_to/tag_text_with/neural_tagger.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,9 @@ title: Neural Tagger
3
3
sidebar_position: 2
4
4
---
5
5
6
+
import Tabs from '@theme/Tabs';
7
+
import TabItem from '@theme/TabItem';
8
+
6
9
In this guide we are going to show you how to tag text with the PyMUSAS [NeuralTagger](/api/spacy_api/taggers/neural.md#neuraltagger) so that you can extract token level [USAS semantic tags](https://ucrel.lancs.ac.uk/usas/) from the tagged text. The guide will;
7
10
8
11
* State the available neural taggers that can be used.
@@ -286,6 +289,11 @@ We need:
286
289
*`en_none_none_none_englishbasebem` the [larger 68 million parameter English Neural Tagger model.](https://github.com/UCREL/pymusas-models/releases/tag/en_none_none_none_englishbasebem-0.4.0)
First we import the relevant libraries, create a few helper functions that will download and process the Wikipedia articles, and then use these functions to download *N* English Wikipedia articles to a temporary directory (so that after the script has ran they will be deleted to save disk space), whereby the number of articles we download will contain at least 10,000 tokens/words after we have got to this token limit we will not download anymore Wikipedia articles;
0 commit comments