├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── demo.png ├── export.py ├── readme.html ├── readme.md ├── uie_ncnn_windows.sln └── uie_ncnn_windows ├── fast_tokenizer ├── FastTokenizer.cmake ├── include │ └── fast_tokenizer │ │ ├── core │ │ ├── added_vocabulary.h │ │ ├── base.h │ │ ├── encoding.h │ │ └── tokenizer.h │ │ ├── decoders │ │ ├── decoder.h │ │ ├── decoders.h │ │ └── wordpiece.h │ │ ├── models │ │ ├── bpe.h │ │ ├── fast_wordpiece.h │ │ ├── model.h │ │ ├── models.h │ │ ├── unigram.h │ │ └── wordpiece.h │ │ ├── normalizers │ │ ├── bert.h │ │ ├── normalizer.h │ │ ├── normalizers.h │ │ ├── precompiled.h │ │ ├── replace.h │ │ ├── strip.h │ │ ├── unicode.h │ │ └── utils.h │ │ ├── postprocessors │ │ ├── bert.h │ │ ├── byte_level.h │ │ ├── postprocessor.h │ │ ├── postprocessors.h │ │ ├── roberta.h │ │ └── template.h │ │ ├── pretokenizers │ │ ├── bert.h │ │ ├── byte_level.h │ │ ├── metaspace.h │ │ ├── pretokenizer.h │ │ ├── pretokenizers.h │ │ ├── sequence.h │ │ ├── split.h │ │ ├── whitespace.h │ │ └── whitespace_and_punctuation.h │ │ ├── tokenizers │ │ ├── clip_fast_tokenizer.h │ │ └── ernie_fast_tokenizer.h │ │ └── utils │ │ ├── cache.h │ │ ├── failure.h │ │ ├── lattice.h │ │ ├── path.h │ │ ├── sentencepiece_normalizer.h │ │ ├── shared_mutex.h │ │ ├── string_view.h │ │ ├── trie.h │ │ ├── unique_ptr.h │ │ ├── utf8.h │ │ ├── utils.h │ │ └── variant.h ├── lib │ ├── core_tokenizers.dll │ └── core_tokenizers.lib └── third_party │ ├── include │ ├── Makefile.am │ ├── darts.h │ ├── gflags │ │ ├── gflags.h │ │ ├── gflags_completions.h │ │ ├── gflags_declare.h │ │ └── gflags_gflags.h │ ├── glog │ │ ├── log_severity.h │ │ ├── logging.h │ │ ├── raw_logging.h │ │ ├── stl_logging.h │ │ └── vlog_is_on.h │ ├── nlohmann │ │ └── json.hpp │ └── re2 │ │ ├── filtered_re2.h │ │ ├── re2.h │ │ ├── set.h │ │ └── stringpiece.h │ └── lib │ ├── icudt.lib │ ├── icudt70.dll │ ├── icuuc.lib │ └── icuuc70.dll ├── model.cc ├── model.h ├── ncnn ├── include │ └── ncnn │ │ ├── allocator.h │ │ ├── benchmark.h │ │ ├── blob.h │ │ ├── c_api.h │ │ ├── command.h │ │ ├── cpu.h │ │ ├── datareader.h │ │ ├── gpu.h │ │ ├── layer.h │ │ ├── layer_shader_type.h │ │ ├── layer_shader_type_enum.h │ │ ├── layer_type.h │ │ ├── layer_type_enum.h │ │ ├── mat.h │ │ ├── modelbin.h │ │ ├── ncnn_export.h │ │ ├── net.h │ │ ├── option.h │ │ ├── paramdict.h │ │ ├── pipeline.h │ │ ├── pipelinecache.h │ │ ├── platform.h │ │ ├── simplemath.h │ │ ├── simpleocv.h │ │ ├── simpleomp.h │ │ ├── simplestl.h │ │ ├── simplevk.h │ │ └── vulkan_header_fix.h └── lib │ ├── cmake │ └── ncnn │ │ ├── ncnn-release.cmake │ │ ├── ncnn.cmake │ │ └── ncnnConfig.cmake │ ├── ncnn.lib │ └── pkgconfig │ └── ncnn.pc ├── nlohmann └── json.hpp ├── uie_nano_pnnx.ncnn.bin ├── uie_nano_pnnx.ncnn.param ├── uie_ncnn_windows.cpp ├── uie_ncnn_windows.vcxproj ├── uie_ncnn_windows.vcxproj.filters ├── utils └── unique_ptr.h └── vocab.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/demo.png -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/export.py -------------------------------------------------------------------------------- /readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/readme.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/readme.md -------------------------------------------------------------------------------- /uie_ncnn_windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows.sln -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/FastTokenizer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/FastTokenizer.cmake -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/added_vocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/added_vocabulary.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/base.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/encoding.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/core/tokenizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/decoder.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/decoders.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/wordpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/decoders/wordpiece.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/bpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/bpe.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/fast_wordpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/fast_wordpiece.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/model.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/models.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/unigram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/unigram.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/wordpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/models/wordpiece.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/bert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/bert.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/normalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/normalizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/normalizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/normalizers.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/precompiled.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/replace.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/strip.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/unicode.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/normalizers/utils.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/bert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/bert.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/byte_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/byte_level.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/postprocessor.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/postprocessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/postprocessors.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/roberta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/roberta.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/postprocessors/template.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/bert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/bert.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/byte_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/byte_level.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/metaspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/metaspace.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/pretokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/pretokenizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/pretokenizers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/pretokenizers.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/sequence.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/split.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/whitespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/whitespace.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/whitespace_and_punctuation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/pretokenizers/whitespace_and_punctuation.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/tokenizers/clip_fast_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/tokenizers/clip_fast_tokenizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/tokenizers/ernie_fast_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/tokenizers/ernie_fast_tokenizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/cache.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/failure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/failure.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/lattice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/lattice.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/path.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/sentencepiece_normalizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/sentencepiece_normalizer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/shared_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/shared_mutex.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/string_view.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/trie.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/unique_ptr.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/utf8.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/utils.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/include/fast_tokenizer/utils/variant.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/lib/core_tokenizers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/lib/core_tokenizers.dll -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/lib/core_tokenizers.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/lib/core_tokenizers.lib -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/Makefile.am: -------------------------------------------------------------------------------- 1 | include_HEADERS = darts.h 2 | -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/darts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/darts.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_completions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_completions.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_declare.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/gflags/gflags_gflags.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/glog/log_severity.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/glog/logging.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/glog/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/glog/raw_logging.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/glog/stl_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/glog/stl_logging.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/glog/vlog_is_on.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/re2/filtered_re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/re2/filtered_re2.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/re2/re2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/re2/re2.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/re2/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/re2/set.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/include/re2/stringpiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/include/re2/stringpiece.h -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/lib/icudt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/lib/icudt.lib -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/lib/icudt70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/lib/icudt70.dll -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/lib/icuuc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/lib/icuuc.lib -------------------------------------------------------------------------------- /uie_ncnn_windows/fast_tokenizer/third_party/lib/icuuc70.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/fast_tokenizer/third_party/lib/icuuc70.dll -------------------------------------------------------------------------------- /uie_ncnn_windows/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/model.cc -------------------------------------------------------------------------------- /uie_ncnn_windows/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/model.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/allocator.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/benchmark.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/blob.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/c_api.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/command.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/cpu.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/datareader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/datareader.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/gpu.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/layer.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/layer_shader_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/layer_shader_type.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/layer_shader_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/layer_shader_type_enum.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/layer_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/layer_type.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/layer_type_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/layer_type_enum.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/mat.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/modelbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/modelbin.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/ncnn_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/ncnn_export.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/net.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/option.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/paramdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/paramdict.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/pipeline.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/pipelinecache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/pipelinecache.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/platform.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/simplemath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/simplemath.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/simpleocv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/simpleocv.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/simpleomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/simpleomp.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/simplestl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/simplestl.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/simplevk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/simplevk.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/include/ncnn/vulkan_header_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/include/ncnn/vulkan_header_fix.h -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnn-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnn-release.cmake -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnn.cmake -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnnConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/lib/cmake/ncnn/ncnnConfig.cmake -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/lib/ncnn.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/lib/ncnn.lib -------------------------------------------------------------------------------- /uie_ncnn_windows/ncnn/lib/pkgconfig/ncnn.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/ncnn/lib/pkgconfig/ncnn.pc -------------------------------------------------------------------------------- /uie_ncnn_windows/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/nlohmann/json.hpp -------------------------------------------------------------------------------- /uie_ncnn_windows/uie_nano_pnnx.ncnn.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/uie_nano_pnnx.ncnn.bin -------------------------------------------------------------------------------- /uie_ncnn_windows/uie_nano_pnnx.ncnn.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/uie_nano_pnnx.ncnn.param -------------------------------------------------------------------------------- /uie_ncnn_windows/uie_ncnn_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/uie_ncnn_windows.cpp -------------------------------------------------------------------------------- /uie_ncnn_windows/uie_ncnn_windows.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/uie_ncnn_windows.vcxproj -------------------------------------------------------------------------------- /uie_ncnn_windows/uie_ncnn_windows.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/uie_ncnn_windows.vcxproj.filters -------------------------------------------------------------------------------- /uie_ncnn_windows/utils/unique_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/utils/unique_ptr.h -------------------------------------------------------------------------------- /uie_ncnn_windows/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futz12/uie_ncnn_windows/HEAD/uie_ncnn_windows/vocab.txt --------------------------------------------------------------------------------