mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
12 lines
241 B
Python
12 lines
241 B
Python
|
from __future__ import unicode_literals, print_function
|
||
|
|
||
|
from os import path
|
||
|
|
||
|
from ..language import Language
|
||
|
|
||
|
|
||
|
class German(Language):
|
||
|
@classmethod
|
||
|
def default_data_dir(cls):
|
||
|
return path.join(path.dirname(__file__), 'data')
|