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