edsnlp.processing.simple
_df_to_spacy(note)
Takes a pandas DataFrame and return a generator that can be used in
nlp.pipe()
.
PARAMETER | DESCRIPTION |
---|---|
note |
A pandas DataFrame with at least
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
generator
|
A generator which items are of the form (text, context), with |
Source code in edsnlp/processing/simple.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
_flatten(list_of_lists)
Flatten a list of lists to a combined list.
Source code in edsnlp/processing/simple.py
49 50 51 52 53 |
|
_full_schema(doc, additional_spans=[], extensions=[])
Function used when Parallelising tasks via joblib. Takes a Doc as input, and returns a list of serializable objects
Note
The parallelisation needs for output objects to be serializable: after splitting the task into separate jobs, intermediate results are saved on memory before being aggregated, thus the need to be serializable. For instance, spaCy's spans aren't serializable since they are merely a view of the parent document.
Check the source code of this function for an example.
Source code in edsnlp/processing/simple.py
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
|
pipe(note, nlp, additional_spans='discarded', extensions=[], batch_size=1000, progress_bar=True)
Function to apply a spaCy pipe to a pandas DataFrame note For a large DataFrame, prefer the parallel version.
PARAMETER | DESCRIPTION |
---|---|
note |
A pandas DataFrame with a
TYPE:
|
nlp |
A spaCy pipe
TYPE:
|
additional_spans |
A name (or list of names) of SpanGroup on which to apply the pipe too:
SpanGroup are available as
TYPE:
|
extensions |
Spans extensions to add to the extracted results:
For instance, if
TYPE:
|
batch_size |
Batch size used by spaCy's pipe
TYPE:
|
progress_bar |
Whether to display a progress bar or not
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
DataFrame
|
A pandas DataFrame with one line per extraction |
Source code in edsnlp/processing/simple.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
|