Fangjun Kuang
Committed by GitHub

Release v1.0 (#18)

* Release v1.0

* Add link to doc
1 cmake_minimum_required(VERSION 3.8 FATAL_ERROR) 1 cmake_minimum_required(VERSION 3.8 FATAL_ERROR)
2 project(sherpa-onnx) 2 project(sherpa-onnx)
3 3
4 -set(SHERPA_ONNX_VERSION "0.1") 4 +set(SHERPA_ONNX_VERSION "1.0")
5 5
6 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") 6 set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
7 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib") 7 set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
1 # Introduction 1 # Introduction
2 2
  3 +Documentation: <https://k2-fsa.github.io/sherpa/onnx/index.html>
  4 +
3 See <https://github.com/k2-fsa/sherpa> 5 See <https://github.com/k2-fsa/sherpa>
4 6
5 This repo uses [onnxruntime](https://github.com/microsoft/onnxruntime) and 7 This repo uses [onnxruntime](https://github.com/microsoft/onnxruntime) and
@@ -13,5 +13,5 @@ target_link_libraries(sherpa-onnx @@ -13,5 +13,5 @@ target_link_libraries(sherpa-onnx
13 kaldi-native-fbank-core 13 kaldi-native-fbank-core
14 ) 14 )
15 15
16 -add_executable(sherpa-show-onnx-info show-onnx-info.cc)  
17 -target_link_libraries(sherpa-show-onnx-info onnxruntime) 16 +# add_executable(sherpa-show-onnx-info show-onnx-info.cc)
  17 +# target_link_libraries(sherpa-show-onnx-info onnxruntime)
@@ -80,8 +80,8 @@ Usage: @@ -80,8 +80,8 @@ Usage:
80 /path/to/encoder.onnx \ 80 /path/to/encoder.onnx \
81 /path/to/decoder.onnx \ 81 /path/to/decoder.onnx \
82 /path/to/joiner.onnx \ 82 /path/to/joiner.onnx \
83 - /path/to/joiner_encoder_proj.ncnn.param \  
84 - /path/to/joiner_decoder_proj.ncnn.param \ 83 + /path/to/joiner_encoder_proj.onnx \
  84 + /path/to/joiner_decoder_proj.onnx \
85 /path/to/foo.wav [num_threads] 85 /path/to/foo.wav [num_threads]
86 86
87 You can download pre-trained models from the following repository: 87 You can download pre-trained models from the following repository: