|
|
|
@ -11,4 +11,21 @@
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
|
|
|
|
from .ctcdecoder import swig_wrapper
|
|
|
|
|
|
|
|
|
|
from paddlespeech.s2t.utils.log import Log
|
|
|
|
|
logger = Log(__name__).getlog()
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
from .ctcdecoder import swig_wrapper
|
|
|
|
|
except:
|
|
|
|
|
try:
|
|
|
|
|
import pip
|
|
|
|
|
if int(pip.__version__.split('.')[0])>9:
|
|
|
|
|
from pip._internal import main
|
|
|
|
|
else:
|
|
|
|
|
from pip import main
|
|
|
|
|
package_name = 'paddlespeech_ctcdecoders'
|
|
|
|
|
main(['install', package_name])
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logger.info("paddlespeech_ctcdecoders not installed!")
|
|
|
|
|
|
|
|
|
|