mirror of
https://github.com/PaddlePaddle/PaddleOCR.git
synced 2025-11-11 15:23:29 +00:00
Merge pull request #5141 from tink2123/requirments
mv fasttext for requirements
This commit is contained in:
commit
12e128f9fd
@ -23,7 +23,6 @@ import sys
|
|||||||
import six
|
import six
|
||||||
import cv2
|
import cv2
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import fasttext
|
|
||||||
|
|
||||||
|
|
||||||
class DecodeImage(object):
|
class DecodeImage(object):
|
||||||
@ -136,6 +135,7 @@ class ToCHWImage(object):
|
|||||||
|
|
||||||
class Fasttext(object):
|
class Fasttext(object):
|
||||||
def __init__(self, path="None", **kwargs):
|
def __init__(self, path="None", **kwargs):
|
||||||
|
import fasttext
|
||||||
self.fast_model = fasttext.load_model(path)
|
self.fast_model = fasttext.load_model(path)
|
||||||
|
|
||||||
def __call__(self, data):
|
def __call__(self, data):
|
||||||
|
|||||||
@ -12,5 +12,4 @@ cython
|
|||||||
lxml
|
lxml
|
||||||
premailer
|
premailer
|
||||||
openpyxl
|
openpyxl
|
||||||
fasttext==0.9.1
|
|
||||||
paddlenlp>=2.2.1
|
paddlenlp>=2.2.1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user