edsnlp.pipelines.misc.dates
dates
parsers = [parser for parser in default_parsers if parser != 'relative-time']
module-attribute
parser1 = DateDataParser(languages=['fr'], settings={'PREFER_DAY_OF_MONTH': 'first', 'PREFER_DATES_FROM': 'past', 'PARSERS': parsers, 'RETURN_AS_TIMEZONE_AWARE': False})
module-attribute
parser2 = DateDataParser(languages=['fr'], settings={'PREFER_DAY_OF_MONTH': 'first', 'PREFER_DATES_FROM': 'past', 'PARSERS': ['relative-time'], 'RETURN_AS_TIMEZONE_AWARE': False})
module-attribute
Dates
Bases: BaseComponent
Tags and normalizes dates, using the open-source dateparser
library.
The pipeline uses spaCy's filter_spans
function.
It filters out false positives, and introduce a hierarchy between patterns.
For instance, in case of ambiguity, the pipeline will decide that a date is a
date without a year rather than a date without a day.
PARAMETER | DESCRIPTION |
---|---|
nlp |
Language pipeline object
TYPE:
|
absolute |
List of regular expressions for absolute dates.
TYPE:
|
full |
List of regular expressions for full dates in YYYY-MM-DD format.
TYPE:
|
relative |
List of regular expressions for relative dates
(eg
TYPE:
|
no_year |
List of regular expressions for dates that do not display a year.
TYPE:
|
no_day |
List of regular expressions for dates that do not display a day.
TYPE:
|
year_only |
List of regular expressions for dates that only display a year.
TYPE:
|
current |
List of regular expressions for dates that relate to the current month, week, year, etc.
TYPE:
|
false_positive |
List of regular expressions for false positive (eg phone numbers, etc).
TYPE:
|
on_ents_only |
Wether to look on dates in the whole document or in specific sentences:
TYPE:
|
Source code in edsnlp/pipelines/misc/dates/dates.py
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
nlp = nlp
instance-attribute
on_ents_only = on_ents_only
instance-attribute
regex_matcher = RegexMatcher(attr=attr, alignment_mode='strict')
instance-attribute
parser = date_parser
instance-attribute
__init__(nlp, absolute, full, relative, no_year, no_day, year_only, current, false_positive, on_ents_only, attr)
Source code in edsnlp/pipelines/misc/dates/dates.py
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
|
set_extensions()
Source code in edsnlp/pipelines/misc/dates/dates.py
307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
|
process(doc)
Find dates in doc.
PARAMETER | DESCRIPTION |
---|---|
doc |
spaCy Doc object
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
dates
|
list of date spans |
Source code in edsnlp/pipelines/misc/dates/dates.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
|
get_date(date)
Get normalised date using dateparser
.
PARAMETER | DESCRIPTION |
---|---|
date |
Date span.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Optional[datetime]
|
If a date is recognised, returns a Python |
Source code in edsnlp/pipelines/misc/dates/dates.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 |
|
__call__(doc)
Tags dates.
PARAMETER | DESCRIPTION |
---|---|
doc |
spaCy Doc object
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
doc
|
spaCy Doc object, annotated for dates |
Source code in edsnlp/pipelines/misc/dates/dates.py
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
td2str(td)
Transforms a timedelta object to a string representation.
PARAMETER | DESCRIPTION |
---|---|
td |
The timedelta object to represent.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Usable representation for the timedelta object. |
Source code in edsnlp/pipelines/misc/dates/dates.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
date_getter(date)
Getter for dates. Uses the information from note_datetime
.
PARAMETER | DESCRIPTION |
---|---|
date |
Date detected by the pipeline.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
Normalized date. |
Source code in edsnlp/pipelines/misc/dates/dates.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
date_parser(text_date)
Function to parse dates. It try first all available parsers ('timestamp', 'custom-formats', 'absolute-time') but 'relative-time'. If no date is found, retries with 'relative-time'.
When just the year is identified, it returns a datetime object with month and day equal to 1.
PARAMETER | DESCRIPTION |
---|---|
text_date |
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
datetime
|
Source code in edsnlp/pipelines/misc/dates/dates.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 |
|
apply_groupdict(dates)
Source code in edsnlp/pipelines/misc/dates/dates.py
134 135 136 137 138 139 |
|
parse_groupdict(day=None, month=None, year=None, hour=None, minute=None, second=None, **kwargs)
Parse date groupdict.
PARAMETER | DESCRIPTION |
---|---|
day |
String representation of the day, by default None
TYPE:
|
month |
String representation of the month, by default None
TYPE:
|
year |
String representation of the year, by default None
TYPE:
|
hour |
String representation of the hour, by default None
TYPE:
|
minute |
String representation of the minute, by default None
TYPE:
|
second |
String representation of the minute, by default None
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Dict[str, int]
|
Parsed groupdict. |
Source code in edsnlp/pipelines/misc/dates/dates.py
142 143 144 145 146 147 148 149 150 151 152 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 |
|
parsing
month2int = time2int_factory(months.letter_months_dict)
module-attribute
day2int = time2int_factory(days.letter_days_dict)
module-attribute
str2int(time)
Converts a string to an integer. Returns None
if the string cannot be converted.
PARAMETER | DESCRIPTION |
---|---|
time |
String representation
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
int
|
Integer conversion. |
Source code in edsnlp/pipelines/misc/dates/parsing.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
time2int_factory(patterns)
Factory for a time2int
conversion function.
PARAMETER | DESCRIPTION |
---|---|
patterns |
Dictionary of conversion/pattern.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Callable[[str], int]
|
String to integer function. |
Source code in edsnlp/pipelines/misc/dates/parsing.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
factory
DEFAULT_CONFIG = dict(no_year=None, year_only=None, no_day=None, absolute=None, relative=None, full=None, current=None, false_positive=None, on_ents_only=False, attr='LOWER')
module-attribute
create_component(nlp, name, no_year, year_only, no_day, absolute, full, relative, current, false_positive, on_ents_only, attr)
Source code in edsnlp/pipelines/misc/dates/factory.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|