├── CONTRIBUTING_CN.md ├── CONTRIBUTING_EN.md ├── LICENSE ├── README.md ├── README_EN.md ├── application ├── Audio_assistant │ ├── README.md │ ├── pics │ │ ├── assistant1.png │ │ └── assistant2.png │ ├── python │ │ ├── Llama3 │ │ │ └── python_demo │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── chat.cpp │ │ │ │ ├── pipeline.py │ │ │ │ └── web_demo.py │ │ ├── MiniCPM │ │ │ └── demo │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── demo.cpp │ │ ├── README.md │ │ ├── XTTS │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── demo.py │ │ │ ├── synthesizer.py │ │ │ ├── xtts │ │ │ │ ├── __init__.py │ │ │ │ ├── gpt.py │ │ │ │ ├── gpt_inference.py │ │ │ │ ├── hifigan_decoder.py │ │ │ │ ├── latent_encoder.py │ │ │ │ ├── perceiver_encoder.py │ │ │ │ ├── stream_generator.py │ │ │ │ ├── tokenizer.py │ │ │ │ ├── xtts_manager.py │ │ │ │ └── zh_num2words.py │ │ │ └── xtts_pipeline.py │ │ ├── bert │ │ │ ├── ProsodyModel.py │ │ │ ├── __init__.py │ │ │ ├── config.json │ │ │ ├── prosody_tool.py │ │ │ └── vocab.txt │ │ ├── requirements.txt │ │ ├── socket_demo │ │ │ ├── README.md │ │ │ ├── client │ │ │ │ ├── client.py │ │ │ │ └── client_requirements.txt │ │ │ └── service │ │ │ │ ├── pipeline.py │ │ │ │ ├── server.py │ │ │ │ └── server_requirements.txt │ │ ├── text │ │ │ ├── __init__.py │ │ │ ├── pinyin-local.txt │ │ │ └── symbols.py │ │ ├── whisper-TPU_py │ │ │ └── bmwhisper │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── audio.py │ │ │ │ ├── decoding.py │ │ │ │ ├── gather.py │ │ │ │ ├── model.py │ │ │ │ ├── model_export.py │ │ │ │ ├── normalizers │ │ │ │ ├── __init__.py │ │ │ │ ├── basic.py │ │ │ │ ├── english.json │ │ │ │ └── english.py │ │ │ │ ├── timing.py │ │ │ │ ├── tokenizer.py │ │ │ │ ├── transcribe.py │ │ │ │ ├── triton_ops.py │ │ │ │ ├── untool.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ ├── whisperWrapper.py │ │ └── whisper_minicpm_llama3_vits.py │ ├── scripts │ │ ├── download.sh │ │ ├── download_bm1684x_whisper_llama3_vits.sh │ │ ├── download_bm1684x_xtts.sh │ │ ├── download_bm1688_whisper_minicpm_vits.sh │ │ └── download_datasets.sh │ └── tools │ │ ├── get_audio_device.py │ │ └── microphone_input_play_test.py ├── ChatDoc │ ├── README.md │ ├── models │ │ └── .gitkeep │ ├── pics │ │ ├── embedding.png │ │ ├── img1.png │ │ └── img2.png │ ├── python │ │ ├── README.md │ │ ├── chat │ │ │ ├── __init__.py │ │ │ ├── chatbot.py │ │ │ └── utils.py │ │ ├── config.ini │ │ ├── config.yaml │ │ ├── data │ │ │ ├── db_tpu │ │ │ │ └── .gitkeep │ │ │ └── uploaded │ │ │ │ └── .gitkeep │ │ ├── doc_processor │ │ │ ├── __init__.py │ │ │ ├── document_loaders │ │ │ │ ├── FilteredCSVloader.py │ │ │ │ ├── __init__.py │ │ │ │ ├── mydocloader.py │ │ │ │ ├── myimgloader.py │ │ │ │ ├── mypdfloader.py │ │ │ │ ├── mypptloader.py │ │ │ │ └── ocr.py │ │ │ ├── knowledge_file.py │ │ │ └── text_splitter │ │ │ │ ├── __init__.py │ │ │ │ ├── ali_text_splitter.py │ │ │ │ ├── chinese_recursive_text_splitter.py │ │ │ │ ├── chinese_text_splitter.py │ │ │ │ └── zh_title_enhance.py │ │ ├── embedding │ │ │ ├── __init__.py │ │ │ ├── embedding.py │ │ │ ├── npuengine.py │ │ │ └── sentence_model.py │ │ ├── requirements.txt │ │ ├── reranker │ │ │ ├── __init__.py │ │ │ └── reranker_tpu.py │ │ └── web_demo_st.py │ └── scripts │ │ └── download.sh ├── Grounded-sam │ ├── README.md │ ├── assets │ │ └── dog.jpg │ ├── python │ │ ├── custom_model.py │ │ ├── gdsam_server.py │ │ ├── gdsam_util.py │ │ ├── groundingdino │ │ │ ├── PostProcess.py │ │ │ ├── groundingdino_pil.py │ │ │ └── utils.py │ │ └── sam │ │ │ ├── predictor.py │ │ │ ├── sam_amg.py │ │ │ ├── sam_encoder.py │ │ │ ├── sam_model.py │ │ │ ├── sam_opencv.py │ │ │ └── transforms.py │ ├── requirements.txt │ ├── scripts │ │ └── download.sh │ └── web_server │ │ ├── gd_server-back.py │ │ └── gd_server-front.py ├── LLM_api_server │ ├── README.md │ ├── pics │ │ └── postman.png │ ├── python │ │ ├── README.md │ │ ├── api_server.py │ │ ├── config.yaml │ │ ├── request.py │ │ ├── requirements.txt │ │ └── utils │ │ │ ├── chatglm3 │ │ │ └── chatglm3.py │ │ │ └── qwen │ │ │ └── qwen.py │ └── scripts │ │ ├── download_model.sh │ │ └── download_tokenizer.sh ├── VLPR │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── vlpr_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── adapt.hpp │ │ │ ├── configs │ │ │ ├── config_se5.json │ │ │ ├── config_se7.json │ │ │ ├── config_se9-16.json │ │ │ └── config_se9-8.json │ │ │ ├── json.hpp │ │ │ ├── lprnet_multi │ │ │ ├── datapipe.hpp │ │ │ ├── lprnet_bmcv.cpp │ │ │ └── lprnet_bmcv.hpp │ │ │ ├── main.cpp │ │ │ ├── vlpr_bmcv.cpp │ │ │ ├── vlpr_bmcv.hpp │ │ │ └── yolov5_multi │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ ├── pics │ │ ├── cpp_pipeline.png │ │ └── python_pipeline.png │ ├── python │ │ ├── README.md │ │ ├── chars.py │ │ └── vlpr.py │ └── scripts │ │ └── download.sh ├── YOLOv5_fuse_multi_QT │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── run_hdmi_show.sh │ │ ├── workflow.png │ │ └── yolov5_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── adapt.hpp │ │ │ ├── config_yolov5_fuse_mluti_qt.json │ │ │ ├── datapipe.hpp │ │ │ ├── draw.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── qtgui │ │ │ ├── BMLabel.cpp │ │ │ ├── BMLabel.h │ │ │ └── VideoConsole.h │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ └── scripts │ │ └── download.sh ├── YOLOv5_multi │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov5_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── adapt.hpp │ │ │ ├── config │ │ │ ├── config.json │ │ │ ├── config_se5.json │ │ │ ├── config_se7.json │ │ │ ├── config_se9-16.json │ │ │ └── config_se9-8.json │ │ │ ├── datapipe.hpp │ │ │ ├── draw.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ ├── pics │ │ ├── diagram_cpp.png │ │ ├── pipeline.png │ │ └── worker_details.png │ ├── scripts │ │ └── download.sh │ └── tools │ │ └── eval_coco.py ├── YOLOv5_multi_QT │ ├── README.md │ ├── config │ │ └── yolov5_app.json │ ├── cpp │ │ ├── README.md │ │ ├── include │ │ │ ├── bmodel_utils.h │ │ │ ├── common │ │ │ │ ├── common.h │ │ │ │ ├── json.h │ │ │ │ └── profiler.h │ │ │ ├── datapipe.h │ │ │ ├── ff_codec │ │ │ │ ├── ChannelDecoder.h │ │ │ │ ├── DecoderConsole.h │ │ │ │ ├── ff_avframe_convert.h │ │ │ │ ├── ff_video_decode.h │ │ │ │ └── ff_video_encode.h │ │ │ ├── qtgui │ │ │ │ ├── BMLabel.h │ │ │ │ └── VideoConsole.h │ │ │ └── yolov5.h │ │ ├── run_hdmi_show.sh │ │ ├── src │ │ │ ├── bmodel_utils.cpp │ │ │ ├── common │ │ │ │ └── profiler.cpp │ │ │ ├── ff_codec │ │ │ │ ├── ChannelDecoder.cpp │ │ │ │ ├── DecoderConsole.cpp │ │ │ │ ├── ff_avframe_convert.cpp │ │ │ │ ├── ff_video_decode.cpp │ │ │ │ └── ff_video_encode.cpp │ │ │ ├── main.cpp │ │ │ ├── qtgui │ │ │ │ └── BMLabel.cpp │ │ │ └── yolov5.cpp │ │ └── yolov5_app.pro │ ├── pics │ │ ├── DecoderConsole.png │ │ ├── VideoConsole.png │ │ ├── Yolov5.png │ │ └── main.png │ ├── scripts │ │ └── download.sh │ └── tools │ │ └── tpu_kernel_module │ │ └── libbm1684x_kernel_module.so ├── YOLOv8_multi_QT │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── run_hdmi_show.sh │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── adapt.hpp │ │ │ ├── config_yolov8_mluti_qt.json │ │ │ ├── datapipe.hpp │ │ │ ├── draw.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── qtgui │ │ │ ├── BMLabel.cpp │ │ │ ├── BMLabel.h │ │ │ └── VideoConsole.h │ │ │ ├── yolov8.cpp │ │ │ └── yolov8.hpp │ └── scripts │ │ └── download.sh └── cv-demo │ ├── README.md │ ├── cpp │ ├── CMakeLists.txt │ ├── README.md │ ├── blend.cc │ ├── blend.h │ ├── bm_wrapper.hpp │ ├── common_defs.h │ ├── config-04a10 │ │ ├── blend.json │ │ ├── camera_cv_demo.json │ │ ├── dwa_L.json │ │ └── dwa_R.json │ ├── config-04e10 │ │ ├── blend.json │ │ ├── camera_cv_demo.json │ │ ├── dwa_L.json │ │ └── dwa_R.json │ ├── cv_demo.html │ ├── cvdemo.cpp │ ├── cvdemo.hpp │ ├── decoder.cc │ ├── decoder.h │ ├── dwa.cpp │ ├── dwa.h │ ├── ff_decode.cc │ ├── ff_decode.h │ ├── frame.h │ ├── json.hpp │ ├── main.cpp │ ├── wss_boost.cc │ └── wss_boost.h │ ├── pic │ └── pic.jpg │ └── scripts │ └── download.sh ├── docs ├── Calibration_Guide.md ├── Calibration_Guide_EN.md ├── Check_Statis.md ├── Check_Statis_EN.md ├── Environment_Install_Guide.md ├── Environment_Install_Guide_EN.md ├── FAQ.md ├── FAQ_EN.md ├── FP32BModel_Precise_Alignment.md ├── FP32BModel_Precise_Alignment_EN.md ├── torch.jit.trace_Guide.md └── torch.jit.trace_Guide_EN.md ├── git_version ├── pics ├── cali_guide_image0.webp └── cali_guide_image1.webp ├── sample ├── BERT │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── README_EN.md │ │ └── bert_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── bert_sail.cpp │ │ │ ├── bert_sail.hpp │ │ │ ├── libtorch_tokenizer │ │ │ └── src │ │ │ │ ├── tokenizer.cpp │ │ │ │ ├── tokenizer.h │ │ │ │ └── unilib │ │ │ │ ├── unicode.cpp │ │ │ │ ├── unicode.h │ │ │ │ ├── uninorms.cpp │ │ │ │ └── uninorms.h │ │ │ ├── main.cpp │ │ │ └── utils.hpp │ ├── docs │ │ └── BERT4torch_Exportonnx_Guide.md │ ├── python │ │ ├── README.md │ │ ├── bert_sail.py │ │ └── utils │ │ │ └── dataset.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_people.py ├── BLIP │ ├── README.md │ ├── docs │ │ └── Blip_Export_Guide.md │ ├── pics │ │ ├── server-front_cap.png │ │ ├── server-front_itm.png │ │ └── server-front_vqa.png │ ├── python │ │ ├── README.md │ │ ├── blip.py │ │ ├── blip_cap.py │ │ ├── blip_itm.py │ │ ├── blip_server_cap.py │ │ ├── blip_server_itm.py │ │ ├── blip_server_vqa.py │ │ └── blip_vqa.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_fp32bmodel_mlir_cap.sh │ │ ├── gen_fp32bmodel_mlir_itm.sh │ │ └── gen_fp32bmodel_mlir_vqa.sh │ ├── tools │ │ ├── export_cap.py │ │ ├── export_itm.py │ │ └── export_vqa.py │ └── web_ui │ │ ├── README.md │ │ ├── server-backend_cap.py │ │ ├── server-backend_itm.py │ │ ├── server-backend_vqa.py │ │ ├── server-front_cap.py │ │ ├── server-front_itm.py │ │ └── server-front_vqa.py ├── Baichuan2 │ ├── .gitignore │ ├── README.md │ ├── docs │ │ └── Baichuan2_Export_Compile.md │ ├── pics │ │ ├── chat_stream.png │ │ ├── multi_session.jpg │ │ └── web_demo.png │ ├── python │ │ ├── README.md │ │ ├── baichuan2.py │ │ ├── requirements.txt │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── baichuan2-7b │ │ ├── config.json │ │ └── modeling_baichuan.py │ │ └── export_onnx.py ├── ByteTrack │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── bytetrack_eigen │ │ │ ├── CMakeLists.txt │ │ │ ├── bytetrack.cpp │ │ │ ├── bytetrack.h │ │ │ ├── bytetrack.yaml │ │ │ ├── coco.names │ │ │ ├── draw_utils.hpp │ │ │ ├── main.cpp │ │ │ └── thirdparty │ │ │ │ ├── include │ │ │ │ ├── kalmanfilter.h │ │ │ │ ├── lapjv.h │ │ │ │ └── strack.h │ │ │ │ └── src │ │ │ │ ├── kalmanfilter.cpp │ │ │ │ ├── lapjv.cpp │ │ │ │ └── strack.cpp │ │ ├── bytetrack_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── bytetrack.cpp │ │ │ ├── bytetrack.h │ │ │ ├── bytetrack.yaml │ │ │ ├── coco.names │ │ │ ├── draw_utils.hpp │ │ │ ├── main.cpp │ │ │ └── thirdparty │ │ │ │ ├── include │ │ │ │ ├── kalmanfilter.h │ │ │ │ ├── lapjv.h │ │ │ │ └── strack.h │ │ │ │ └── src │ │ │ │ ├── kalmanfilter.cpp │ │ │ │ ├── lapjv.cpp │ │ │ │ └── strack.cpp │ │ └── dependencies │ │ │ ├── include │ │ │ ├── bm_wrapper.hpp │ │ │ ├── bmnn_utils.h │ │ │ ├── ff_decode.hpp │ │ │ ├── json.hpp │ │ │ ├── utils.hpp │ │ │ └── yolov5.hpp │ │ │ └── src │ │ │ ├── ff_decode.cpp │ │ │ └── yolov5.cpp │ ├── python │ │ ├── README.md │ │ ├── bytetrack_bmcv.py │ │ ├── bytetrack_opencv.py │ │ ├── configs │ │ │ └── bytetrack.yaml │ │ ├── detector │ │ │ └── yolov5 │ │ │ │ ├── postprocess_numpy.py │ │ │ │ ├── utils.py │ │ │ │ ├── yolov5_fuse_bmcv.py │ │ │ │ └── yolov5_opencv.py │ │ ├── requirements.txt │ │ └── tracker │ │ │ ├── byte_tracker.py │ │ │ ├── kalman_filter.py │ │ │ ├── matching.py │ │ │ └── utils │ │ │ └── parser.py │ ├── scripts │ │ ├── auto_test.sh │ │ └── download.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_mot15.py ├── C3D │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── c3d_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── c3d.cpp │ │ │ ├── c3d.hpp │ │ │ └── main.cpp │ │ ├── c3d_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── c3d.cpp │ │ │ ├── c3d.hpp │ │ │ └── main.cpp │ │ └── dependencies │ │ │ ├── include │ │ │ ├── bm_wrapper.hpp │ │ │ ├── bmnn_utils.h │ │ │ ├── ff_decode.hpp │ │ │ ├── json.hpp │ │ │ └── utils.hpp │ │ │ └── src │ │ │ └── ff_decode.cpp │ ├── python │ │ ├── README.md │ │ └── c3d_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── c3d_lmdb.py │ │ ├── c3d_npy.py │ │ ├── c3d_transform.py │ │ ├── compare_statis.py │ │ └── eval_ucf.py ├── CAM++ │ ├── README.md │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── campplus.hpp │ │ ├── dependencies │ │ │ └── include │ │ │ │ ├── cxxopts.hpp │ │ │ │ ├── feature │ │ │ │ ├── feature_basic.cpp │ │ │ │ ├── feature_basic.h │ │ │ │ ├── feature_common.cpp │ │ │ │ ├── feature_common.h │ │ │ │ ├── feature_fbank.cpp │ │ │ │ ├── feature_fbank.h │ │ │ │ ├── feature_functions.cpp │ │ │ │ └── feature_functions.h │ │ │ │ ├── npy.hpp │ │ │ │ ├── utils.hpp │ │ │ │ └── utils │ │ │ │ ├── wav_reader.cpp │ │ │ │ └── wav_reader.h │ │ └── main.cpp │ ├── docs │ │ └── Campplus_Export_Guide.md │ ├── python │ │ ├── README.md │ │ └── campplus.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ └── campplus_npy.py ├── CLIP │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── chinese_clip_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── clip │ │ │ │ ├── clip.cpp │ │ │ │ └── clip.hpp │ │ │ ├── main.cpp │ │ │ ├── thirty_party │ │ │ │ └── utf8proc │ │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── ci-fuzz.yml │ │ │ │ │ │ ├── cmake.yml │ │ │ │ │ │ └── make.yml │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Doxyfile │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── MANIFEST │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── NEWS.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ ├── bench │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bench.c │ │ │ │ │ ├── icu.c │ │ │ │ │ ├── unistring.c │ │ │ │ │ ├── util.c │ │ │ │ │ └── util.h │ │ │ │ │ ├── data │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── charwidths.jl │ │ │ │ │ └── data_generator.rb │ │ │ │ │ ├── libutf8proc.pc.cmakein │ │ │ │ │ ├── libutf8proc.pc.in │ │ │ │ │ ├── lump.md │ │ │ │ │ ├── test │ │ │ │ │ ├── case.c │ │ │ │ │ ├── charwidth.c │ │ │ │ │ ├── custom.c │ │ │ │ │ ├── fuzz_main.c │ │ │ │ │ ├── fuzzer.c │ │ │ │ │ ├── graphemetest.c │ │ │ │ │ ├── iscase.c │ │ │ │ │ ├── iterate.c │ │ │ │ │ ├── misc.c │ │ │ │ │ ├── normtest.c │ │ │ │ │ ├── ossfuzz.sh │ │ │ │ │ ├── printproperty.c │ │ │ │ │ ├── tests.c │ │ │ │ │ ├── tests.h │ │ │ │ │ └── valid.c │ │ │ │ │ ├── utf8proc.c │ │ │ │ │ ├── utf8proc.h │ │ │ │ │ ├── utf8proc_data.c │ │ │ │ │ └── utils.cmake │ │ │ └── tokenizer │ │ │ │ ├── bert_tokenizer.hpp │ │ │ │ └── vocab.txt │ │ └── clip_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── clip │ │ │ ├── clip.cpp │ │ │ └── clip.hpp │ │ │ ├── main.cpp │ │ │ └── tokenizer │ │ │ ├── tokenizer.hpp │ │ │ ├── utils.hpp │ │ │ ├── vocab.hpp │ │ │ └── vocab.txt │ ├── datasets │ │ ├── CLIP.png │ │ ├── Car-headlights-misidentified-as-flames.jpg │ │ └── Clothes-and-hats-misidentified-as-safety-helmet.jpg │ ├── docs │ │ └── Clip_Export_Guide.md │ ├── pics │ │ ├── CLIP-web_ui.png │ │ ├── front.jpg │ │ ├── history.jpg │ │ └── result.jpg │ ├── python │ │ ├── README.md │ │ ├── clip │ │ │ ├── __init__.py │ │ │ ├── bpe_simple_vocab_16e6.txt.gz │ │ │ ├── clip.py │ │ │ └── simple_tokenizer.py │ │ ├── clip_server.py │ │ └── zeroshot_predict.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── download_chinese_bmodel.sh │ │ ├── download_mobile_clip_bmodel.sh │ │ ├── gen_chinese_fp16bmodel_mlir.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_mobile_clip_fp16bmodel_mlir.sh │ ├── tools │ │ └── compare_statis.py │ └── web_ui │ │ ├── README.md │ │ ├── server-backend.py │ │ └── server-front.py ├── CenterNet │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── centernet_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── centernet.cpp │ │ │ ├── centernet.hpp │ │ │ └── main.cpp │ │ ├── centernet_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── processor.cpp │ │ │ └── processor.h │ │ └── dependencies │ │ │ ├── include │ │ │ ├── bm_wrapper.hpp │ │ │ ├── bmnn_utils.h │ │ │ ├── ff_decode.hpp │ │ │ ├── json.hpp │ │ │ └── utils.hpp │ │ │ └── src │ │ │ └── ff_decode.cpp │ ├── docs │ │ └── CenterNet_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── centernet_bmcv.py │ │ ├── centernet_opencv.py │ │ ├── postprocess_numpy.py │ │ └── utils.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── dlav0.py │ │ ├── eval_coco.py │ │ ├── export_onnx.py │ │ ├── export_torchscript.py │ │ └── model.py ├── ChatGLM2 │ ├── README.md │ ├── cpp │ │ ├── 3rdparty │ │ │ └── sentencepiece │ │ │ │ ├── include │ │ │ │ └── sentencepiece_processor.h │ │ │ │ └── lib │ │ │ │ ├── arm64 │ │ │ │ └── libsentencepiece.a │ │ │ │ ├── riscv │ │ │ │ └── libsentencepiece.a │ │ │ │ └── x86 │ │ │ │ └── libsentencepiece.a │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── chatglm2.hpp │ │ └── main.cpp │ ├── docs │ │ └── ChatGLM2_Export_Guide.md │ ├── pic │ │ └── memory.png │ ├── python │ │ ├── README.md │ │ ├── chatglm2.py │ │ └── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_int4bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ └── export_onnx.py ├── ChatGLM3 │ ├── README.md │ ├── docs │ │ └── ChatGLM3_Export_Guide.md │ ├── pics │ │ ├── chat_stream.png │ │ ├── multi_session.jpg │ │ └── web_demo.png │ ├── python │ │ ├── README.md │ │ ├── chatglm3.py │ │ ├── requirements.txt │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── chatglm3-6b │ │ ├── config.json │ │ └── modeling_chatglm.py │ │ └── export_onnx.py ├── ChatGLM4 │ ├── README.md │ ├── docs │ │ └── ChatGLM4_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── chatglm4.py │ │ ├── requirements.txt │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── export_onnx.py │ │ ├── glm-4-9b-chat │ │ ├── config.json │ │ └── modeling_chatglm.py │ │ └── requirements.txt ├── ChatTTS │ ├── README.md │ ├── docs │ │ └── ChatTTS_Export_Guide.md │ ├── pics │ │ └── flowchart.png │ ├── python │ │ ├── ChatTTS │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── config.py │ │ │ ├── core.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── dvae.py │ │ │ │ ├── gpt.py │ │ │ │ ├── processors.py │ │ │ │ ├── speaker.py │ │ │ │ ├── tokenizer.py │ │ │ │ └── vocos_spectral_ops.py │ │ │ ├── norm.py │ │ │ ├── npuengine.py │ │ │ ├── res │ │ │ │ ├── __init__.py │ │ │ │ ├── homophones_map.json │ │ │ │ └── sha256_map.json │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── dl.py │ │ │ │ ├── gpu.py │ │ │ │ ├── io.py │ │ │ │ └── log.py │ │ ├── README.md │ │ ├── slct_voice_240605.json │ │ ├── test.py │ │ └── test_stream.py │ ├── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ ├── gen_decoder_bmodel.sh │ │ ├── gen_gpt_bmodel.sh │ │ └── gen_vocos_bmodel.sh │ └── tools │ │ ├── config.py │ │ ├── dvae.py │ │ ├── exporter.py │ │ ├── gpt.py │ │ └── modeling_llama.py ├── D-FINE │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── dfine_bmcv.py │ │ └── utils.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_f16bmodel_mlir.sh │ └── tools │ │ └── eval_coco.py ├── DeepSORT │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── deepsort_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── FeatureExtractor.cpp │ │ │ ├── FeatureExtractor.h │ │ │ ├── coco.names │ │ │ ├── deep_sort.yaml │ │ │ ├── deepsort.cpp │ │ │ ├── deepsort.h │ │ │ ├── draw_utils.hpp │ │ │ ├── main.cpp │ │ │ └── thirdparty │ │ │ │ ├── include │ │ │ │ ├── dataType.h │ │ │ │ ├── hungarianoper.h │ │ │ │ ├── kalmanfilter.h │ │ │ │ ├── linear_assignment.h │ │ │ │ ├── matrix.h │ │ │ │ ├── model.h │ │ │ │ ├── munkres.h │ │ │ │ ├── nn_matching.h │ │ │ │ ├── track.h │ │ │ │ └── tracker.h │ │ │ │ └── src │ │ │ │ ├── hungarianoper.cpp │ │ │ │ ├── kalmanfilter.cpp │ │ │ │ ├── linear_assignment.cpp │ │ │ │ ├── model.cpp │ │ │ │ ├── munkres.cpp │ │ │ │ ├── nn_matching.cpp │ │ │ │ ├── track.cpp │ │ │ │ └── tracker.cpp │ │ └── dependencies │ │ │ ├── include │ │ │ ├── bm_wrapper.hpp │ │ │ ├── bmnn_utils.h │ │ │ ├── ff_decode.hpp │ │ │ ├── json.hpp │ │ │ ├── utils.hpp │ │ │ └── yolov5.hpp │ │ │ └── src │ │ │ ├── ff_decode.cpp │ │ │ └── yolov5.cpp │ ├── python │ │ ├── README.md │ │ ├── configs │ │ │ └── deep_sort.yaml │ │ ├── deep_sort │ │ │ ├── deep │ │ │ │ └── feature_extractor.py │ │ │ ├── deep_sort.py │ │ │ ├── sort │ │ │ │ ├── detection.py │ │ │ │ ├── iou_matching.py │ │ │ │ ├── kalman_filter.py │ │ │ │ ├── linear_assignment.py │ │ │ │ ├── nn_matching.py │ │ │ │ ├── preprocessing.py │ │ │ │ ├── track.py │ │ │ │ └── tracker.py │ │ │ └── utils │ │ │ │ └── parser.py │ │ ├── deepsort_opencv.py │ │ ├── detector │ │ │ └── yolov5 │ │ │ │ ├── postprocess_numpy.py │ │ │ │ ├── utils.py │ │ │ │ ├── yolov5_bmcv.py │ │ │ │ └── yolov5_opencv.py │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── eval_mot15.py │ │ └── extractor_transform.py ├── DeepSeek │ └── README.md ├── DirectMHP │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── directmhp_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── directmhp.cpp │ │ │ ├── directmhp.hpp │ │ │ └── main.cpp │ ├── docs │ │ └── DirectMHP_Export_Guide.md │ ├── pics │ │ ├── COCO_000000018380_cpp.jpg │ │ └── COCO_000000018380_python.jpg │ ├── python │ │ ├── README.md │ │ ├── directmhp_bmcv.py │ │ ├── directmhp_opencv.py │ │ └── postprocess_numpy.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval.py ├── FLUX.1 │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── flux_pipeline.py │ │ ├── run.py │ │ └── web.py │ ├── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ ├── export_models_from_HF.py │ │ └── gen_bmodel.sh │ └── tools │ │ └── diffusers-0.30.0 │ │ └── attention_processor.py ├── FaceFormer │ ├── README.md │ ├── docs │ │ └── FaceFormer_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── faceformer.py │ │ └── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel_mlir.sh │ └── tools │ │ ├── export_onnx.py │ │ ├── faceformer.py │ │ ├── gen_npz.py │ │ └── wav2vec.py ├── GroundingDINO │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── groundingdino_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── Tokenizer.hpp │ │ │ ├── groundingdino.cpp │ │ │ ├── groundingdino.hpp │ │ │ └── main.cpp │ ├── docs │ │ └── GroundingDINO_Common_Problems.md │ ├── python │ │ ├── PostProcess.py │ │ ├── README.md │ │ ├── groundingdino_pil.py │ │ ├── requirements.txt │ │ └── utils.py │ └── scripts │ │ ├── download.sh │ │ └── gen_fp16bmodel_mlir.sh ├── HRNet_pose │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ ├── utils.hpp │ │ │ │ └── yolov5.hpp │ │ │ └── src │ │ │ │ ├── ff_decode.cpp │ │ │ │ └── yolov5.cpp │ │ └── hrnet_pose_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── hrnet_pose.cpp │ │ │ ├── hrnet_pose.hpp │ │ │ └── main.cpp │ ├── docs │ │ └── HRNet_pose_Exportonnx_Guide.md │ ├── pics │ │ ├── 785_cpp_bmcv.jpg │ │ ├── 785_python_opencv.jpg │ │ └── Flowchart.png │ ├── python │ │ ├── README.md │ │ ├── detector │ │ │ └── yolov5 │ │ │ │ ├── __init__.py │ │ │ │ ├── postprocess_numpy.py │ │ │ │ ├── utils.py │ │ │ │ ├── yolov5_bmcv.py │ │ │ │ └── yolov5_opencv.py │ │ ├── hrnet_pose.py │ │ └── hrnet_pose │ │ │ ├── __init__.py │ │ │ ├── hrnet_opencv.py │ │ │ ├── postprocess_hrnet.py │ │ │ ├── preprocess_hrnet.py │ │ │ └── utils_hrnet.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── InternVL2 │ ├── README.md │ ├── pics │ │ └── image.png │ ├── python │ │ ├── README.md │ │ ├── image1.jpg │ │ ├── internvl2_sail.py │ │ ├── requirements.txt │ │ ├── token_config_2b │ │ │ ├── added_tokens.json │ │ │ ├── tokenization_internlm2.py │ │ │ ├── tokenizer.model │ │ │ └── tokenizer_config.json │ │ ├── token_config_4b │ │ │ ├── added_tokens.json │ │ │ ├── tokenizer.model │ │ │ └── tokenizer_config.json │ │ └── token_config_8b │ │ │ ├── added_tokens.json │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenization_internlm2.py │ │ │ ├── tokenization_internlm2_fast.py │ │ │ ├── tokenizer.model │ │ │ └── tokenizer_config.json │ ├── requirements.txt │ ├── scripts │ │ └── gen_bmodel.sh │ └── tools │ │ ├── export_onnx.py │ │ └── files │ │ ├── InternVL2-2B │ │ ├── config.json │ │ ├── modeling_intern_vit.py │ │ └── modeling_internlm2.py │ │ ├── InternVL2-4B │ │ ├── config.json │ │ ├── modeling_intern_vit.py │ │ └── modeling_phi3.py │ │ └── InternVL2-8B │ │ ├── config.json │ │ └── modeling_internlm2.py ├── InternVL3 │ ├── README.md │ ├── pics │ │ └── image.png │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ ├── added_tokens.json │ │ │ ├── generation_config.json │ │ │ ├── preprocessor_config.json │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ ├── internvl3_sail.py │ │ ├── preprocess.py │ │ └── requirements.txt │ └── scripts │ │ └── download.sh ├── Janus │ ├── README.md │ ├── docs │ │ └── Janus_Export_Guide.md │ ├── pics │ │ └── test.jpg │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ └── janus.yaml │ │ ├── janus.py │ │ ├── requirements.txt │ │ └── support │ │ │ ├── __init__.py │ │ │ └── janus │ │ │ ├── __init__.py │ │ │ ├── clip_encoder.py │ │ │ ├── conversation.py │ │ │ ├── image_processing_vlm.py │ │ │ ├── modeling_vlm.py │ │ │ ├── processing_vlm.py │ │ │ ├── projector.py │ │ │ ├── siglip_vit.py │ │ │ └── vq_model.py │ ├── scripts │ │ ├── download_bm1684x_bmodel.sh │ │ ├── download_onnx.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── Janus-Pro-7B │ │ └── modeling_llama.py │ │ └── export_onnx.py ├── LPRNet │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── lprnet_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── lprnet.cpp │ │ │ ├── lprnet.hpp │ │ │ └── main.cpp │ │ └── lprnet_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── lprnet.cpp │ │ │ ├── lprnet.hpp │ │ │ └── main.cpp │ ├── docs │ │ └── LPRNet_Export_Guide.md │ ├── pics │ │ └── 1.png │ ├── python │ │ ├── README.md │ │ ├── lprnet_bmcv.py │ │ ├── lprnet_opencv.py │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── LPRNet.py │ │ ├── compare_statis.py │ │ ├── convert_imageset.py │ │ ├── eval_ccpd.py │ │ └── export_onnx.py ├── LightStereo │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── lightstereo_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── lightstereo.cpp │ │ │ ├── lightstereo.hpp │ │ │ ├── main.cpp │ │ │ └── utils.hpp │ ├── docs │ │ └── LightStereo_Export_Guide.md │ ├── pics │ │ └── 000006_10.png │ ├── python │ │ ├── README.md │ │ ├── lightstereo_bmcv.py │ │ └── lightstereo_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── core │ │ ├── __init__.py │ │ ├── aggregation.py │ │ ├── backbone.py │ │ ├── basic_block_2d.py │ │ ├── basic_block_3d.py │ │ ├── common_utils.py │ │ ├── cost_volume.py │ │ ├── disp_refinement.py │ │ ├── disp_regression.py │ │ └── lightstereo.py │ │ ├── eval.py │ │ └── export_onnx.py ├── Llama2 │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ └── llama2.yaml │ │ ├── llama2.py │ │ ├── requirements.txt │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── export_onnx.py │ │ └── files │ │ └── llama-2-7b-chat-hf │ │ ├── config.json │ │ └── modeling_llama.py ├── Llama3_2_Vision │ ├── README.md │ ├── docs │ │ └── Llama3_2_Vision_Export_Guide.md │ ├── pics │ │ └── test.jpg │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ └── llama3.yaml │ │ ├── llama3.py │ │ └── requirements.txt │ ├── scripts │ │ ├── download_bm1684x_bmodel.sh │ │ ├── download_onnx.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── Llama-3.2-11B-Vision-Instruct │ │ ├── config.json │ │ └── modeling_mllama.py │ │ └── export_onnx.py ├── MP_SENet │ ├── README.md │ ├── docs │ │ └── MP_SENet_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── mp_senet_sail.py │ │ ├── process.png │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_bf16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── configs │ │ └── config.json │ │ ├── model_onnx.py │ │ └── requirements_model.txt ├── MiniCPM │ ├── README.md │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── demo.cpp │ │ ├── include_bm1684x │ │ │ ├── bmdef.h │ │ │ ├── bmlib_runtime.h │ │ │ ├── bmruntime_interface.h │ │ │ └── sentencepiece │ │ │ │ └── sentencepiece_processor.h │ │ ├── include_bm1688 │ │ │ ├── bmdef.h │ │ │ ├── bmlib_runtime.h │ │ │ ├── bmruntime_interface.h │ │ │ └── sentencepiece │ │ │ │ └── sentencepiece_processor.h │ │ └── include_cv186x │ │ │ ├── bmdef.h │ │ │ ├── bmlib_runtime.h │ │ │ ├── bmruntime_interface.h │ │ │ └── sentencepiece │ │ │ └── sentencepiece_processor.h │ ├── docs │ │ ├── FAQ.md │ │ └── MiniCPM-2B_Export_Guide.md │ ├── pics │ │ ├── Show_Results.png │ │ ├── image.png │ │ └── sophgo_chip.png │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── MiniCPM-2B │ │ └── modeling_minicpm.py │ │ ├── export_onnx.py │ │ └── requirements.txt ├── MiniCPM3 │ ├── README.md │ ├── docs │ │ └── MiniCPM3_Export_Guide.md │ ├── pics │ │ ├── chat_stream.png │ │ ├── multi_session.png │ │ └── web_demo.png │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ ├── api.yaml │ │ │ ├── minicpm3.yaml │ │ │ └── web.yaml │ │ ├── minicpm3.py │ │ ├── openai_api_request.py │ │ ├── openai_api_server.py │ │ ├── requirements.txt │ │ ├── token_config │ │ │ ├── added_tokens.json │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenization_minicpm.py │ │ │ ├── tokenizer.json │ │ │ └── tokenizer_config.json │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── MiniCPM3-4B-Chat │ │ ├── config.json │ │ └── modeling_minicpm.py │ │ └── export_onnx.py ├── MiniCPM4 │ ├── README.md │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── main.cpp │ │ ├── minicpm4.cpp │ │ ├── minicpm4.hpp │ │ └── utils.hpp │ ├── pics │ │ └── demo.png │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ └── minicpm4.yaml │ │ ├── minicpm4.py │ │ ├── requirements.txt │ │ └── token_config │ │ │ ├── added_tokens.json │ │ │ ├── config.json │ │ │ ├── configuration.json │ │ │ ├── generation_config.json │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer.json │ │ │ └── tokenizer_config.json │ └── scripts │ │ └── download.sh ├── MiniCPMV │ ├── README.md │ ├── docs │ │ └── FAQ.md │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ └── minicpmv.yaml │ │ ├── minicpmv.py │ │ └── requirements.txt │ └── scripts │ │ └── download.sh ├── OpenPose │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── openpose_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── openpose.cpp │ │ │ ├── openpose.hpp │ │ │ ├── pose_postprocess.cpp │ │ │ └── pose_postprocess.hpp │ ├── pics │ │ ├── 1_cpp_bmcv.jpeg │ │ ├── 1_python_opencv.jpeg │ │ └── pose_face_hands.gif │ ├── python │ │ ├── README.md │ │ ├── openpose_opencv.py │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ ├── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py │ └── tpu_kernel_module │ │ └── libbm1684x_kernel_module.so ├── P2PNet │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── p2pnet_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── draw_utils.hpp │ │ │ ├── main.cpp │ │ │ ├── p2pnet.cpp │ │ │ └── p2pnet.hpp │ ├── pics │ │ ├── crowd_cpp_bmcv.jpg │ │ └── crowd_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── p2pnet_bmcv.py │ │ ├── p2pnet_opencv.py │ │ ├── requirements.txt │ │ └── utils.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_acc.py ├── PP-OCR │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── ppocr_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── include │ │ │ ├── clipper.h │ │ │ ├── postprocess.hpp │ │ │ ├── ppocr_cls.hpp │ │ │ ├── ppocr_det.hpp │ │ │ └── ppocr_rec.hpp │ │ │ ├── src │ │ │ ├── clipper.cpp │ │ │ ├── main.cpp │ │ │ ├── postprocess.cpp │ │ │ ├── ppocr_cls.cpp │ │ │ ├── ppocr_det.cpp │ │ │ └── ppocr_rec.cpp │ │ │ └── thirdparty │ │ │ ├── cnpy.cpp │ │ │ └── cnpy.h │ ├── docs │ │ └── PP-OCR_Process_Guide.md │ ├── python │ │ ├── README.md │ │ ├── ppocr_cls_opencv.py │ │ ├── ppocr_det_opencv.py │ │ ├── ppocr_rec_opencv.py │ │ ├── ppocr_system_opencv.py │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_icdar.py ├── Phi4mm │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── phi4mm.py │ │ └── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── files │ │ └── config.json │ │ ├── model_export.py │ │ ├── onnx_rebuilder.py │ │ └── requirements.txt ├── Qwen-VL-Chat │ ├── README.md │ ├── pics │ │ └── example.png │ ├── python │ │ ├── README.md │ │ ├── config.ini │ │ ├── qwen_generation_utils.py │ │ ├── qwen_vl.py │ │ └── web_demo.py │ ├── requirements.txt │ ├── scripts │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── config.json │ │ ├── export_onnx.py │ │ └── modeling_qwen.py ├── Qwen │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── qwen_bmlib │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── qwen.cpp │ │ │ ├── qwen.hpp │ │ │ └── utils.hpp │ ├── docs │ │ └── Qwen_Export_Guide.md │ ├── pics │ │ ├── chat_stream.png │ │ ├── multi_session.png │ │ └── web_demo.png │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ ├── api.yaml │ │ │ ├── deepseek-r1-distill-qwen2.yaml │ │ │ ├── qwen.yaml │ │ │ └── web.yaml │ │ ├── openai_api_request.py │ │ ├── openai_api_server.py │ │ ├── qwen.py │ │ ├── requirements.txt │ │ ├── token_config │ │ │ ├── config.json │ │ │ ├── generation_config.json │ │ │ ├── tokenizer.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ └── web_demo.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_bmodel.sh │ │ ├── gen_bmodel_deepseek_r1_distill_qwen_1_5b.sh │ │ ├── gen_bmodel_qwen2_1688.sh │ │ └── gen_bmodel_qwen2_parallel.sh │ └── tools │ │ ├── DeepSeek_R1_Distill_Qwen2.5-1.5B-Instruct │ │ └── modeling_qwen2.py │ │ ├── Qwen-14B-Chat │ │ ├── config.json │ │ └── modeling_qwen.py │ │ ├── Qwen-1_8B-Chat │ │ ├── config.json │ │ └── modeling_qwen.py │ │ ├── Qwen-7B-Chat │ │ ├── config.json │ │ └── modeling_qwen.py │ │ ├── Qwen1.5-0.5B-Chat │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen1.5-1.8B-Chat │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen1.5-4B-Chat │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen1.5-7B-Chat │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen2-1.5B-Instruct │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen2-7B-Instruct │ │ ├── config.json │ │ └── modeling_qwen2.py │ │ ├── Qwen2.5-7B-Instruct │ │ └── modeling_qwen2.py │ │ ├── export_onnx_DeepSeek_R1_Distill_qwen2_5_BM1688.py │ │ ├── export_onnx_qwen.py │ │ ├── export_onnx_qwen1_5.py │ │ ├── export_onnx_qwen2.py │ │ ├── export_onnx_qwen2_5.py │ │ ├── export_onnx_qwen2_parallel.py │ │ └── model_export_BM1684X_DS_qwen.py ├── Qwen2-VL │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── qwen2_vl.py │ │ ├── requirements.txt │ │ └── vision_process.py │ ├── scripts │ │ ├── compile.sh │ │ ├── download_bm1684x_bmodel.sh │ │ ├── download_datasets.sh │ │ ├── download_onnx.sh │ │ └── performance_test.py │ └── tools │ │ ├── export_onnx_video.py │ │ └── modeling_qwen2_vl.py ├── Qwen2_5-VL │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── qwen2_5_vl.py │ │ ├── requirements.txt │ │ └── vision_process.py │ ├── scripts │ │ ├── download_bm1684x_3b_awq_bmodel.sh │ │ ├── download_bm1684x_7b_awq_bmodel.sh │ │ ├── download_bm1688_3b_awq_bmodel.sh │ │ ├── download_bm1688_7b_awq_bmodel.sh │ │ └── download_datasets.sh │ └── tools │ │ └── performance_test.py ├── Qwen3-VL │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── qwen3_vl.py │ │ └── requirements.txt │ └── scripts │ │ └── download_bmodel.sh ├── Real-ESRGAN │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── real_esrgan_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── real_esrgan.cpp │ │ │ ├── real_esrgan.hpp │ │ │ └── utils.hpp │ ├── docs │ │ └── export_onnx_guide.md │ ├── python │ │ ├── README.md │ │ ├── real_esrgan_bmcv.py │ │ ├── real_esrgan_onnx.py │ │ └── real_esrgan_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ ├── eval_psnr.py │ │ ├── eval_ssim.py │ │ └── pytorch2onnx.py ├── Recogize-Anything │ ├── README.md │ ├── docs │ │ └── RAM_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── ram_pillow.py │ │ └── requirements.txt │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── files │ │ ├── inference_ram_plus.py │ │ └── ram_plus.py ├── ResNet │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── resnet_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── resnet.cpp │ │ │ └── resnet.hpp │ │ └── resnet_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── resnet.cpp │ │ │ └── resnet.hpp │ ├── docs │ │ └── ResNet_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── resnet_bmcv.py │ │ └── resnet_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_imagenet.py ├── RetinaFace │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── retinaface_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bmodel_base.cpp │ │ │ ├── bmodel_base.hpp │ │ │ ├── face_detection.cpp │ │ │ ├── face_detection.hpp │ │ │ ├── main.cpp │ │ │ ├── retinaface_post.cpp │ │ │ └── retinaface_post.hpp │ ├── python │ │ ├── README.md │ │ ├── data │ │ │ └── config.py │ │ ├── requirements.txt │ │ ├── retinaface_bmcv.py │ │ ├── retinaface_opencv.py │ │ └── utils │ │ │ ├── box_utils.py │ │ │ ├── cls_utils.py │ │ │ ├── print_utils.py │ │ │ └── time_utils.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ ├── gen_int8bmodel_mlir_qtable.sh │ │ └── gen_int8bmodel_mlir_sensitive_layer.sh │ └── tools │ │ └── widerface_evaluate │ │ ├── box_overlaps.pyx │ │ ├── evaluation.py │ │ ├── ground_truth │ │ ├── wider_easy_val.mat │ │ ├── wider_face_val.mat │ │ ├── wider_hard_val.mat │ │ └── wider_medium_val.mat │ │ ├── setup.py │ │ ├── transfer.py │ │ └── widerface_txt.tar.gz ├── SAM │ ├── README.md │ ├── docs │ │ ├── SAM_Export_Guide.md │ │ ├── result.jpg │ │ ├── result_0.jpg │ │ ├── result_1.jpg │ │ ├── result_2.jpg │ │ ├── result_auto.jpg │ │ ├── result_box.jpg │ │ ├── result_box_0.jpg │ │ ├── result_box_1.jpg │ │ └── result_box_2.jpg │ ├── python │ │ ├── README.md │ │ ├── amg.py │ │ ├── automatic_mask_generator.py │ │ ├── backend.py │ │ ├── predictor.py │ │ ├── sam_encoder.py │ │ ├── sam_model.py │ │ ├── sam_opencv.py │ │ └── transforms.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_auto_fp32bmodel_mlir.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── web_ui │ │ ├── README.md │ │ ├── components │ │ ├── drawBox.png │ │ ├── firstPage.png │ │ ├── frontPage.png │ │ └── singlePoint.png │ │ ├── css │ │ └── styles.css │ │ ├── images │ │ ├── dog.jpg │ │ ├── groceries.jpg │ │ └── truck.jpg │ │ ├── index.html │ │ └── scripts │ │ └── main.js ├── SAM2 │ ├── README.md │ ├── docs │ │ └── export_bmodel.md │ ├── pics │ │ ├── sam2_image_pipeline.jpg │ │ ├── sam2_video_pipeline.png │ │ ├── truck.jpg │ │ ├── truck1.jpg │ │ ├── truck2.jpg │ │ ├── truck3.jpg │ │ ├── video_1.png │ │ ├── video_25.png │ │ └── video_30.png │ ├── python │ │ ├── README.md │ │ ├── datasets.py │ │ ├── requirements.txt │ │ ├── sam2_image_opencv.py │ │ ├── sam2_video_base.py │ │ ├── sam2_video_opencv.py │ │ ├── utils.py │ │ └── video_utils.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_bmodel_image.sh │ │ └── gen_bmodel_video.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval.py ├── SCRFD │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── scrfd_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── scrfd.cpp │ │ │ └── scrfd.hpp │ │ └── scrfd_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── scrfd.cpp │ │ │ └── scrfd.hpp │ ├── docs │ │ └── scrfd_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── scrfd_bmcv.py │ │ └── scrfd_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── README.md │ │ ├── box_overlaps.pyx │ │ ├── compare_statis.py │ │ ├── evaluation.py │ │ ├── requirements.txt │ │ └── setup.py ├── SSD │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── ssd_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── ssd.cpp │ │ │ └── ssd.hpp │ │ └── ssd_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── ssd.cpp │ │ │ └── ssd.hpp │ ├── python │ │ ├── README.md │ │ ├── requirements.txt │ │ └── ssd_bmcv.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_fp32bmodel.sh │ │ └── gen_int8bmodel.sh │ └── tools │ │ ├── convert_imageset.py │ │ └── eval.py ├── Seamless │ ├── README.md │ ├── docs │ │ └── Seamless(S2T)_Export_ONNX.md │ ├── python │ │ ├── README.md │ │ ├── customized_fairseq2 │ │ │ ├── __init__.py │ │ │ ├── beam_search.py │ │ │ └── incremental_state.py │ │ ├── generator.py │ │ ├── model.py │ │ ├── pipeline_m4t_s2t.py │ │ ├── pipeline_seamless_streaming_s2t.py │ │ ├── requirements.txt │ │ └── websocket_demo │ │ │ ├── README.md │ │ │ ├── client │ │ │ ├── client_requirements.txt │ │ │ └── wss_client.py │ │ │ ├── service │ │ │ ├── campplus_infer_sv.py │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ ├── server_requirements.txt │ │ │ ├── speakerlab │ │ │ │ └── models │ │ │ │ │ └── campplus │ │ │ │ │ ├── DTDNN.py │ │ │ │ │ ├── classifier.py │ │ │ │ │ └── layers.py │ │ │ └── wss_server.py │ │ │ └── utils │ │ │ └── auto_model.py │ ├── scripts │ │ ├── download_bm1684x_bmodel.sh │ │ ├── download_bm1688_1core_bmodel.sh │ │ ├── download_bm1688_2core_bmodel.sh │ │ ├── download_datasets.sh │ │ ├── download_full.sh │ │ ├── download_onnx.sh │ │ ├── gen_m4t_s2t_bmodel.sh │ │ └── gen_streaming_s2t_bmodel.sh │ └── tools │ │ └── eval_aishell.py ├── SlowFast │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── slowfast_opencv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── slowfast.cpp │ │ │ └── slowfast.hpp │ ├── python │ │ ├── README.md │ │ └── slowfast_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── eval_kinetics.py │ │ └── slowfast_npy.py ├── StableDiffusionV1_5 │ ├── README.md │ ├── docs │ │ └── Export_Controlnet.md │ ├── pics │ │ ├── canny.png │ │ ├── canny_out.png │ │ ├── depth.png │ │ ├── depth_out.png │ │ ├── generated_img.jpg │ │ ├── hed.png │ │ ├── hed_out.png │ │ ├── openpose.png │ │ ├── openpose_out.png │ │ ├── scribble.png │ │ ├── scribble_out.png │ │ ├── segmentation.png │ │ └── segmentation_out.png │ ├── python │ │ ├── README.md │ │ ├── depth_utils.py │ │ ├── hed_utils.py │ │ ├── openpose_utils.py │ │ ├── run.py │ │ ├── scribble_utils.py │ │ ├── sd_engine.py │ │ ├── segmentation_utils.py │ │ ├── stable_diffusion.py │ │ ├── web.py │ │ └── web_stable_diffusion.py │ ├── requirements.txt │ ├── scripts │ │ ├── download_controlnets_bmodel.sh │ │ ├── download_multilize_bmodel.sh │ │ ├── download_singlize_bmodel.sh │ │ ├── export_multilize_pt_from_Huggingface.py │ │ ├── export_singlize_pt_from_Huggingface.py │ │ ├── get_mul_unet_bmodel.sh │ │ ├── get_mul_vae_decoder_bmodel.sh │ │ ├── get_mul_vae_encoder_bmodel.sh │ │ ├── get_text_encoder_bmodel.sh │ │ ├── get_unet_bmodel.sh │ │ ├── get_vae_decoder_bmodel.sh │ │ └── get_vae_encoder_bmodel.sh │ └── tools │ │ └── export_controlnet │ │ ├── canny │ │ ├── export_canny_controlnet.py │ │ └── get_canny_bmodel.sh │ │ ├── depth │ │ ├── export_depth_controlnet.py │ │ ├── export_depth_processor.py │ │ ├── get_depth_bmodel.sh │ │ └── get_depth_processor.sh │ │ ├── hed │ │ ├── export_hed_controlnet.py │ │ ├── export_hed_processor.py │ │ ├── get_hed_bmodel.sh │ │ └── get_hed_processor.sh │ │ ├── openpose │ │ ├── export_openpose_controlnet.py │ │ ├── export_openpose_processer.py │ │ ├── get_openpose_bmodel.sh │ │ └── get_openpose_processor.sh │ │ ├── scribble │ │ ├── export_scribble_controlnet.py │ │ ├── export_scribble_processor.py │ │ ├── get_scribble_bmodel.sh │ │ └── get_scribble_processor.sh │ │ └── segmentation │ │ ├── export_segmentation_controlnet.py │ │ ├── export_segmentation_processor.py │ │ ├── get_segmentation_bmodel.sh │ │ └── get_segmentation_processor.sh ├── StableDiffusionXL │ ├── README.md │ ├── pics │ │ ├── astronaut.png │ │ └── magician.png │ ├── python │ │ ├── README.md │ │ ├── StableDiffusionPipelineImg2Img.py │ │ ├── StableDiffusionPipelineXL.py │ │ ├── sd_engine.py │ │ ├── sdxl_i2i.py │ │ └── sdxl_t2i.py │ ├── requirements.txt │ └── scripts │ │ ├── download.sh │ │ ├── export_models_from_Huggingface.py │ │ ├── get_text_encoder_bmodel.sh │ │ ├── get_unet_bmodel.sh │ │ ├── get_vae_decoder_bmodel.sh │ │ └── get_vae_encoder_bmodel.sh ├── SuperGlue │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── superglue_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── match_pairs.cpp │ │ │ ├── superglue.cpp │ │ │ ├── superglue.hpp │ │ │ ├── superpoint.cpp │ │ │ ├── superpoint.hpp │ │ │ └── utils.hpp │ ├── docs │ │ ├── BM1688_2core_bmodels.md │ │ └── SuperGlue_Export_Guide.md │ ├── pics │ │ └── scene0711_00_frame-001680_scene0711_00_frame-001995.jpg │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── eval.py │ │ ├── export_superglue.py │ │ └── export_superpoint.py ├── VITA1_5 │ ├── README.md │ ├── python │ │ ├── README.md │ │ ├── requirements.txt │ │ ├── train.yaml │ │ ├── vita.py │ │ └── vita_tts │ │ │ └── decoder │ │ │ ├── decoder.py │ │ │ ├── llm2tts.py │ │ │ └── vqvae.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_codec_bmodel.sh │ │ ├── gen_llm_bmodel.sh │ │ └── gen_vqvae_bmodel.sh │ └── tools │ │ ├── model_exporter.py │ │ ├── onnx_rebuilder.py │ │ └── vita │ │ ├── constants.py │ │ ├── model │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── language_model │ │ │ ├── vita_fo_qwen2.py │ │ │ ├── vita_mixtral.py │ │ │ ├── vita_nemo.py │ │ │ └── vita_qwen2.py │ │ ├── multimodal_encoder │ │ │ ├── builder.py │ │ │ ├── clip │ │ │ │ └── clip_encoder.py │ │ │ ├── eva_clip │ │ │ │ ├── eva_clip_encoder.py │ │ │ │ ├── eva_clip_processors.py │ │ │ │ └── eva_vit.py │ │ │ ├── internvit │ │ │ │ ├── configuration_intern_vit.py │ │ │ │ ├── flash_attention.py │ │ │ │ ├── internvit_encoder.py │ │ │ │ └── modeling_intern_vit.py │ │ │ ├── siglip │ │ │ │ └── siglip_encoder.py │ │ │ └── whale │ │ │ │ ├── adapter.py │ │ │ │ ├── cmvn.py │ │ │ │ ├── init_model.py │ │ │ │ ├── module │ │ │ │ ├── component │ │ │ │ │ ├── mamba.py │ │ │ │ │ ├── subsampling.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── encoder │ │ │ │ │ └── encoder.py │ │ │ │ └── layer │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── conv1d.py │ │ │ │ │ ├── dtcblock.py │ │ │ │ │ └── fsmn.py │ │ │ │ └── utils.py │ │ ├── multimodal_projector │ │ │ └── builder.py │ │ ├── vita_arch.py │ │ └── vita_tts │ │ │ ├── adapter.py │ │ │ ├── audioLLM.py │ │ │ ├── decoder │ │ │ ├── decoder.py │ │ │ ├── llm2tts.py │ │ │ └── ticodec │ │ │ │ ├── models.py │ │ │ │ ├── vqvae.py │ │ │ │ └── vqvae_tester.py │ │ │ ├── encoder │ │ │ ├── attention.py │ │ │ ├── cmvn.py │ │ │ ├── encoder.py │ │ │ ├── subsampling.py │ │ │ └── transformer.py │ │ │ ├── masks.py │ │ │ ├── pipeline.py │ │ │ └── utils.py │ │ └── util │ │ ├── data_utils_video_audio.py │ │ ├── data_utils_video_audio_neg_frameCat.py │ │ ├── data_utils_video_audio_neg_patch.py │ │ ├── data_utils_video_audio_neg_patch_fo.py │ │ ├── data_utils_video_audio_patch.py │ │ ├── data_utils_video_audio_patch_sf.py │ │ ├── data_utils_video_patch_audio.py │ │ ├── mm_utils.py │ │ ├── s2wrapper │ │ ├── __init__.py │ │ ├── core.py │ │ └── utils.py │ │ └── utils.py ├── VITS_CHINESE │ ├── README.md │ ├── docs │ │ └── VITS_CHINESE_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── bert │ │ │ ├── ProsodyModel.py │ │ │ ├── __init__.py │ │ │ ├── config.json │ │ │ ├── prosody_tool.py │ │ │ └── vocab.txt │ │ ├── image.png │ │ ├── monotonic_align │ │ │ ├── __init__.py │ │ │ ├── core.c │ │ │ ├── core.pyx │ │ │ └── setup.py │ │ ├── requirements.txt │ │ ├── requirements_soc.txt │ │ ├── text │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── pinyin-local.txt │ │ │ ├── symbols.py │ │ │ └── symbols.pyc │ │ └── vits_infer_sail.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ └── gen_bmodel.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── configs │ │ └── bert_vits.json │ │ ├── model_onnx.py │ │ ├── requirements_model.txt │ │ └── utils.py ├── Vila │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── vila_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── vila.cpp │ │ │ └── vila.hpp │ ├── docs │ │ └── Vila_Export_Guide.md │ ├── pics │ │ ├── demo.jpg │ │ └── vila.jpg │ ├── python │ │ ├── README.md │ │ ├── config │ │ │ ├── image_processer │ │ │ │ └── preprocessor_config.json │ │ │ └── llm_token │ │ │ │ ├── special_tokens_map.json │ │ │ │ ├── tokenizer.model │ │ │ │ └── tokenizer_config.json │ │ ├── requirements.txt │ │ └── vila.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_bmodel.sh │ │ └── gen_bmodel_bm1688.sh │ └── tools │ │ ├── export_onnx.py │ │ └── vila1.5-3b │ │ ├── cache_utils.py │ │ └── modeling_llama.py ├── WeNet │ ├── README.md │ ├── config │ │ ├── lang_char.txt │ │ └── train_u2++_conformer.yaml │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ ├── processor.h │ │ │ ├── util.h │ │ │ ├── utils.hpp │ │ │ ├── wenet.h │ │ │ └── wrapper.h │ │ ├── main.cpp │ │ └── src │ │ │ ├── processor.cpp │ │ │ ├── util.cpp │ │ │ ├── wenet.cpp │ │ │ └── wrapper.cpp │ ├── docs │ │ ├── WeNetSpeech_Guide.md │ │ └── WeNet_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── dataset │ │ │ ├── dataset.py │ │ │ └── processor.py │ │ ├── utils │ │ │ ├── common.py │ │ │ ├── file_utils.py │ │ │ └── sophon_inference.py │ │ └── wenet.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_aishell.py ├── Whisper │ ├── README.md │ ├── docs │ │ └── Whisper_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── bmwhisper │ │ │ ├── __init__.py │ │ │ ├── decoding.py │ │ │ ├── model.py │ │ │ ├── tokenizer.py │ │ │ ├── transcribe.py │ │ │ └── utils.py │ │ ├── requirements.txt │ │ └── whisper.py │ ├── scripts │ │ ├── download.sh │ │ ├── gen_bmodel.sh │ │ └── gen_onnx.sh │ └── tools │ │ ├── eval_aishell.py │ │ └── export_whisper │ │ ├── __init__.py │ │ ├── assets │ │ ├── decoding.py │ │ ├── export_onnx.py │ │ ├── gather.py │ │ ├── model.py │ │ ├── tokenizer.py │ │ └── utils.py ├── YOLOX │ ├── README.md │ ├── README_EN.md │ ├── cpp │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── yolox_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolox.cpp │ │ │ └── yolox.hpp │ │ └── yolox_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolox.cpp │ │ │ └── yolox.hpp │ ├── pics │ │ ├── zidane_cpp_bmcv.jpg │ │ └── zidane_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ ├── yolox_bmcv.py │ │ └── yolox_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLO_world │ ├── README.md │ ├── docs │ │ └── YOLO_World_Export_Guide.md │ ├── pics │ │ └── zidane.jpg │ ├── python │ │ ├── README.md │ │ ├── clip │ │ │ ├── __init__.py │ │ │ ├── clip.py │ │ │ └── simple_tokenizer.py │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ ├── yoloworld_bmcv.py │ │ └── yoloworld_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv10 │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── yolov10_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov10.cpp │ │ │ └── yolov10.hpp │ ├── docs │ │ └── YOLOv10_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── utils.py │ │ ├── yolov10_bmcv.py │ │ └── yolov10_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv11_det │ └── README.md ├── YOLOv11_obb │ └── README.md ├── YOLOv12_det │ └── README.md ├── YOLOv34 │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── yolov34_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov34.cpp │ │ │ └── yolov34.hpp │ │ └── yolov34_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov34.cpp │ │ │ └── yolov34.hpp │ ├── docs │ │ └── YOLOv34_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ ├── yolov34_bmcv.py │ │ └── yolov34_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── yolov3_fp16bmodel_mlir.sh │ │ ├── yolov3_fp32bmodel_mlir.sh │ │ ├── yolov3_int8bmodel_mlir.sh │ │ ├── yolov4_fp16bmodel_mlir.sh │ │ ├── yolov4_fp32bmodel_mlir.sh │ │ └── yolov4_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv5 │ ├── README.md │ ├── README_EN.md │ ├── cpp │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── yolov5_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ │ └── yolov5_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ ├── docs │ │ ├── YOLOv5_Common_Problems.md │ │ ├── YOLOv5_Common_Problems_EN.md │ │ ├── YOLOv5_Export_Guide.md │ │ └── YOLOv5_Export_Guide_EN.md │ ├── pics │ │ ├── Flowchart.png │ │ ├── zidane_cpp_bmcv.jpg │ │ └── zidane_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ ├── yolov5_bmcv.py │ │ └── yolov5_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv5_fuse │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── yolov5_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ │ └── yolov5_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ ├── docs │ │ ├── YOLOv5_Common_Problems.md │ │ └── YOLOv5_Export_Guide.md │ ├── pics │ │ ├── output-name.jpg │ │ ├── zidane_cpp_bmcv.jpg │ │ └── zidane_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── utils.py │ │ ├── yolov5_bmcv.py │ │ └── yolov5_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ ├── gen_int8bmodel_mlir.sh │ │ └── gen_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv5_opt │ ├── README.md │ ├── README_EN.md │ ├── cpp │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── yolov5_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ │ └── yolov5_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov5.cpp │ │ │ └── yolov5.hpp │ ├── docs │ │ ├── YOLOv5_tpukernel_Export_Guide.md │ │ └── YOLOv5_tpukernel_Export_Guide_EN.md │ ├── python │ │ ├── README.md │ │ ├── README_EN.md │ │ ├── utils.py │ │ ├── yolov5_bmcv.py │ │ └── yolov5_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ ├── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py │ └── tpu_kernel_module │ │ └── libbm1684x_kernel_module.so ├── YOLOv7 │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── yolov7_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov7.cpp │ │ │ └── yolov7.hpp │ ├── docs │ │ └── YOLOv7_Export_Guide.md │ ├── pic │ │ ├── zidane_cpp_bmcv.jpg │ │ └── zidane_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ ├── yolov7_bmcv.py │ │ └── yolov7_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── convert_imageset.py │ │ └── eval_coco.py ├── YOLOv8_obb │ └── README.md ├── YOLOv8_plus_cls │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── utils.hpp │ │ │ ├── yolov8_cls.cpp │ │ │ └── yolov8_cls.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── python │ │ ├── README.md │ │ └── yolov8_bmcv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ └── eval_imagenet.py ├── YOLOv8_plus_det │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── utils.hpp │ │ │ ├── yolov8_det.cpp │ │ │ └── yolov8_det.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── pics │ │ ├── 3_cpp_bmcv.jpg │ │ └── 3_python_bmcv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ └── yolov8_bmcv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv8_plus_obb │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── utils.hpp │ │ │ ├── yolov8_obb.cpp │ │ │ └── yolov8_obb.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── pics │ │ ├── P0006.jpg │ │ └── P0006_cpp_bmcv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_torch.py │ │ ├── utils.py │ │ └── yolov8_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ └── eval_DOTA.py ├── YOLOv8_plus_seg │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── utils.hpp │ │ │ ├── yolov8_seg.cpp │ │ │ └── yolov8_seg.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── pics │ │ ├── 3_cpp_bmcv.jpg │ │ └── 3_python_bmcv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── utils.py │ │ └── yolov8_bmcv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv8_plus_seg_fuse │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── bm_wrapper.hpp │ │ │ ├── json.hpp │ │ │ ├── main.cpp │ │ │ ├── utils.hpp │ │ │ ├── yolov8_seg_fuse.cpp │ │ │ └── yolov8_seg_fuse.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── pics │ │ ├── 3_cpp_bmcv.jpg │ │ └── 3_python_bmcv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_bmcv.py │ │ ├── utils.py │ │ └── yolov8_bmcv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_int8bmodel_mlir.sh │ │ └── yolov8s_seg_fuse_qtable │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv8_pose │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── yolov8_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── yolov8.cpp │ │ │ └── yolov8.hpp │ ├── docs │ │ └── YOLOv8_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── utils.py │ │ ├── yolov8_bmcv.py │ │ └── yolov8_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── YOLOv9_det │ └── README.md ├── YOLOv9_seg │ └── README.md ├── ppYOLOv3 │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── ppyolov3_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── ppyolov3.cpp │ │ │ └── ppyolov3.hpp │ │ └── ppyolov3_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── ppyolov3.cpp │ │ │ └── ppyolov3.hpp │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── ppyolov3_bmcv.py │ │ ├── ppyolov3_opencv.py │ │ └── utils.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ └── eval_coco.py ├── ppYoloe │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ └── ppyoloe_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── ppyoloe.cpp │ │ │ └── ppyoloe.hpp │ ├── docs │ │ └── prepare_npz.md │ ├── pics │ │ ├── zidane_cpp_bmcv.jpg │ │ └── zidane_python_opencv.jpg │ ├── python │ │ ├── README.md │ │ ├── postprocess_numpy.py │ │ ├── ppyoloe_bmcv.py │ │ ├── ppyoloe_opencv.py │ │ └── utils.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ ├── gen_fp32bmodel_mlir.sh │ │ └── gen_int8bmodel_mlir.sh │ └── tools │ │ ├── compare_acc.py │ │ ├── compare_statis.py │ │ ├── eval_coco.py │ │ └── prepare_npz.py ├── segformer │ ├── README.md │ ├── cpp │ │ ├── README.md │ │ ├── dependencies │ │ │ ├── include │ │ │ │ ├── bm_wrapper.hpp │ │ │ │ ├── bmnn_utils.h │ │ │ │ ├── ff_decode.hpp │ │ │ │ ├── json.hpp │ │ │ │ └── utils.hpp │ │ │ └── src │ │ │ │ └── ff_decode.cpp │ │ ├── segformer_bmcv │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── segformer.cpp │ │ │ └── segformer.hpp │ │ └── segformer_sail │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── segformer.cpp │ │ │ └── segformer.hpp │ ├── docs │ │ └── Segformer_Export_Guide.md │ ├── python │ │ ├── README.md │ │ ├── segformer_bmcv.py │ │ └── segformer_opencv.py │ ├── scripts │ │ ├── auto_test.sh │ │ ├── download.sh │ │ ├── gen_fp16bmodel_mlir.sh │ │ └── gen_fp32bmodel_mlir.sh │ └── tools │ │ ├── compare_statis.py │ │ ├── custom.py │ │ └── segformer_eval.py └── yolact │ ├── README.md │ ├── cpp │ ├── README.md │ ├── dependencies │ │ ├── include │ │ │ ├── bm_wrapper.hpp │ │ │ ├── bmnn_utils.h │ │ │ ├── ff_decode.hpp │ │ │ ├── json.hpp │ │ │ └── utils.hpp │ │ └── src │ │ │ └── ff_decode.cpp │ └── yolact_bmcv │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ ├── yolact.cpp │ │ └── yolact.hpp │ ├── docs │ └── Yolact_Common_Problems.md │ ├── python │ ├── README.md │ ├── postprocess_numpy.py │ ├── utils.py │ ├── yolact_bmcv.py │ └── yolact_opencv.py │ ├── scripts │ ├── auto_test.sh │ ├── download.sh │ ├── gen_fp16bmodel_mlir.sh │ ├── gen_fp32bmodel_mlir.sh │ └── gen_int8bmodel_mlir.sh │ └── tools │ └── eval_coco.py ├── scripts ├── auto_test_regression.sh ├── demo_jenkins_review.sh └── release.sh └── tutorial ├── DPU ├── README.md └── cpp │ └── dpu_bmcv │ ├── CMakeLists.txt │ ├── dpu.cpp │ ├── dpu.hpp │ ├── main.cpp │ └── utils.hpp ├── DWA ├── README.md └── cpp │ ├── README.md │ └── dwa_bmcv │ ├── CMakeLists.txt │ ├── dwa.cpp │ ├── dwa.hpp │ └── main.cpp ├── avframe_ocv ├── README.md └── cpp │ ├── CMakeLists.txt │ ├── README.md │ ├── ff_video_decode.cpp │ ├── ff_video_decode.h │ └── main.cpp ├── blend ├── README.md └── cpp │ └── blend_bmcv │ ├── CMakeLists.txt │ ├── README.md │ └── main.cpp ├── bm1688_2core2task_yolov5 ├── README.md ├── cpp │ ├── README.md │ └── yolov5_bmcv │ │ ├── CMakeLists.txt │ │ ├── bm_wrapper.hpp │ │ ├── main.cpp │ │ ├── yolov5.cpp │ │ └── yolov5.hpp └── python │ ├── README.md │ ├── postprocess_numpy.py │ └── yolov5_bmcv.py ├── crop ├── README.md ├── cpp │ ├── README.md │ ├── crop_bmcv │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── crop_sail │ │ ├── CMakeLists.txt │ │ └── main.cpp └── python │ ├── README.md │ └── crop.py ├── crop_and_resize_padding ├── README.md ├── cpp │ ├── README.md │ ├── crop_and_resize_padding_bmcv │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── crop_and_resize_padding_sail │ │ ├── CMakeLists.txt │ │ └── main.cpp └── python │ ├── README.md │ └── crop_and_resize_padding_sail.py ├── mmap ├── README.md └── cpp │ ├── CMakeLists.txt │ ├── README.md │ └── main.cpp ├── ocv_avframe ├── README.md └── cpp │ ├── CMakeLists.txt │ ├── README.md │ └── main.cpp ├── ocv_jpubasic ├── README.md ├── cpp │ ├── CMakeLists.txt │ ├── README.md │ └── ocv_jpubasic.cpp └── python │ ├── README.md │ └── ocv_jpubasic.py ├── ocv_vidbasic ├── README.md ├── cpp │ ├── CMakeLists.txt │ ├── README.md │ └── ocv_vidbasic.cpp └── python │ ├── README.md │ └── ocv_vidbasic.py ├── resize ├── README.md ├── cpp │ ├── README.md │ ├── resize_bmcv │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── resize_sail │ │ ├── CMakeLists.txt │ │ └── main.cpp └── python │ ├── README.md │ └── resize.py ├── stitch ├── README.md └── cpp │ └── stitch_bmcv │ ├── CMakeLists.txt │ ├── README.md │ └── main.cpp ├── video_encode ├── README.md ├── cpp │ ├── README.md │ ├── encode_bmcv │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── ff_avframe_convert.cpp │ │ │ ├── ff_avframe_convert.h │ │ │ ├── ff_video_decode.cpp │ │ │ ├── ff_video_decode.h │ │ │ ├── ff_video_encode.cpp │ │ │ └── ff_video_encode.h │ │ └── main.cpp │ └── encode_sail │ │ ├── CMakeLists.txt │ │ └── main.cpp └── python │ ├── README.md │ └── encode_sail.py └── yolov8_ffmpeg_encode ├── CMakeLists.txt ├── README.md ├── coco.names ├── ff_decode ├── bm_wrapper.hpp ├── ff_decode.cpp └── ff_decode.hpp ├── ff_encode ├── ff_video_encode.cpp └── ff_video_encode.h ├── main.cpp ├── utils.hpp ├── yolov8_det.cpp └── yolov8_det.hpp /CONTRIBUTING_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/CONTRIBUTING_CN.md -------------------------------------------------------------------------------- /CONTRIBUTING_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/CONTRIBUTING_EN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/README_EN.md -------------------------------------------------------------------------------- /application/Audio_assistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/Audio_assistant/README.md -------------------------------------------------------------------------------- /application/Audio_assistant/python/XTTS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/Audio_assistant/python/XTTS/xtts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/Audio_assistant/python/whisper-TPU_py/bmwhisper/__main__.py: -------------------------------------------------------------------------------- 1 | from .transcribe import cli 2 | 3 | cli() 4 | -------------------------------------------------------------------------------- /application/Audio_assistant/python/whisper-TPU_py/bmwhisper/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "20230810" 2 | -------------------------------------------------------------------------------- /application/ChatDoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/README.md -------------------------------------------------------------------------------- /application/ChatDoc/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/ChatDoc/pics/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/pics/embedding.png -------------------------------------------------------------------------------- /application/ChatDoc/pics/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/pics/img1.png -------------------------------------------------------------------------------- /application/ChatDoc/pics/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/pics/img2.png -------------------------------------------------------------------------------- /application/ChatDoc/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/python/README.md -------------------------------------------------------------------------------- /application/ChatDoc/python/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/python/config.ini -------------------------------------------------------------------------------- /application/ChatDoc/python/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/python/config.yaml -------------------------------------------------------------------------------- /application/ChatDoc/python/data/db_tpu/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/ChatDoc/python/data/uploaded/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/ChatDoc/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/ChatDoc/scripts/download.sh -------------------------------------------------------------------------------- /application/Grounded-sam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/Grounded-sam/README.md -------------------------------------------------------------------------------- /application/Grounded-sam/assets/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/Grounded-sam/assets/dog.jpg -------------------------------------------------------------------------------- /application/LLM_api_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/LLM_api_server/README.md -------------------------------------------------------------------------------- /application/VLPR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/README.md -------------------------------------------------------------------------------- /application/VLPR/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/cpp/README.md -------------------------------------------------------------------------------- /application/VLPR/cpp/vlpr_bmcv/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/cpp/vlpr_bmcv/json.hpp -------------------------------------------------------------------------------- /application/VLPR/cpp/vlpr_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/cpp/vlpr_bmcv/main.cpp -------------------------------------------------------------------------------- /application/VLPR/pics/cpp_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/pics/cpp_pipeline.png -------------------------------------------------------------------------------- /application/VLPR/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/python/README.md -------------------------------------------------------------------------------- /application/VLPR/python/chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/python/chars.py -------------------------------------------------------------------------------- /application/VLPR/python/vlpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/python/vlpr.py -------------------------------------------------------------------------------- /application/VLPR/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/VLPR/scripts/download.sh -------------------------------------------------------------------------------- /application/YOLOv5_multi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/YOLOv5_multi/README.md -------------------------------------------------------------------------------- /application/YOLOv5_multi/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/YOLOv5_multi/cpp/README.md -------------------------------------------------------------------------------- /application/YOLOv5_multi_QT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/YOLOv5_multi_QT/README.md -------------------------------------------------------------------------------- /application/YOLOv8_multi_QT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/YOLOv8_multi_QT/README.md -------------------------------------------------------------------------------- /application/cv-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/README.md -------------------------------------------------------------------------------- /application/cv-demo/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /application/cv-demo/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/README.md -------------------------------------------------------------------------------- /application/cv-demo/cpp/blend.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/blend.cc -------------------------------------------------------------------------------- /application/cv-demo/cpp/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/blend.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/bm_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/bm_wrapper.hpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/common_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/common_defs.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/cv_demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/cv_demo.html -------------------------------------------------------------------------------- /application/cv-demo/cpp/cvdemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/cvdemo.cpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/cvdemo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/cvdemo.hpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/decoder.cc -------------------------------------------------------------------------------- /application/cv-demo/cpp/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/decoder.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/dwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/dwa.cpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/dwa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/dwa.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/ff_decode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/ff_decode.cc -------------------------------------------------------------------------------- /application/cv-demo/cpp/ff_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/ff_decode.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/frame.h -------------------------------------------------------------------------------- /application/cv-demo/cpp/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/json.hpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/main.cpp -------------------------------------------------------------------------------- /application/cv-demo/cpp/wss_boost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/wss_boost.cc -------------------------------------------------------------------------------- /application/cv-demo/cpp/wss_boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/cpp/wss_boost.h -------------------------------------------------------------------------------- /application/cv-demo/pic/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/pic/pic.jpg -------------------------------------------------------------------------------- /application/cv-demo/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/application/cv-demo/scripts/download.sh -------------------------------------------------------------------------------- /docs/Calibration_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Calibration_Guide.md -------------------------------------------------------------------------------- /docs/Calibration_Guide_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Calibration_Guide_EN.md -------------------------------------------------------------------------------- /docs/Check_Statis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Check_Statis.md -------------------------------------------------------------------------------- /docs/Check_Statis_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Check_Statis_EN.md -------------------------------------------------------------------------------- /docs/Environment_Install_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Environment_Install_Guide.md -------------------------------------------------------------------------------- /docs/Environment_Install_Guide_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/Environment_Install_Guide_EN.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/FAQ_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/FAQ_EN.md -------------------------------------------------------------------------------- /docs/FP32BModel_Precise_Alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/FP32BModel_Precise_Alignment.md -------------------------------------------------------------------------------- /docs/FP32BModel_Precise_Alignment_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/FP32BModel_Precise_Alignment_EN.md -------------------------------------------------------------------------------- /docs/torch.jit.trace_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/torch.jit.trace_Guide.md -------------------------------------------------------------------------------- /docs/torch.jit.trace_Guide_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/docs/torch.jit.trace_Guide_EN.md -------------------------------------------------------------------------------- /git_version: -------------------------------------------------------------------------------- 1 | 0.3.7 -------------------------------------------------------------------------------- /pics/cali_guide_image0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/pics/cali_guide_image0.webp -------------------------------------------------------------------------------- /pics/cali_guide_image1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/pics/cali_guide_image1.webp -------------------------------------------------------------------------------- /sample/BERT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/README.md -------------------------------------------------------------------------------- /sample/BERT/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/README.md -------------------------------------------------------------------------------- /sample/BERT/cpp/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/README_EN.md -------------------------------------------------------------------------------- /sample/BERT/cpp/bert_sail/bert_sail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/bert_sail/bert_sail.cpp -------------------------------------------------------------------------------- /sample/BERT/cpp/bert_sail/bert_sail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/bert_sail/bert_sail.hpp -------------------------------------------------------------------------------- /sample/BERT/cpp/bert_sail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/bert_sail/main.cpp -------------------------------------------------------------------------------- /sample/BERT/cpp/bert_sail/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/cpp/bert_sail/utils.hpp -------------------------------------------------------------------------------- /sample/BERT/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/python/README.md -------------------------------------------------------------------------------- /sample/BERT/python/bert_sail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/python/bert_sail.py -------------------------------------------------------------------------------- /sample/BERT/python/utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/python/utils/dataset.py -------------------------------------------------------------------------------- /sample/BERT/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/BERT/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/scripts/download.sh -------------------------------------------------------------------------------- /sample/BERT/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/BERT/tools/eval_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BERT/tools/eval_people.py -------------------------------------------------------------------------------- /sample/BLIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/README.md -------------------------------------------------------------------------------- /sample/BLIP/docs/Blip_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/docs/Blip_Export_Guide.md -------------------------------------------------------------------------------- /sample/BLIP/pics/server-front_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/pics/server-front_cap.png -------------------------------------------------------------------------------- /sample/BLIP/pics/server-front_itm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/pics/server-front_itm.png -------------------------------------------------------------------------------- /sample/BLIP/pics/server-front_vqa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/pics/server-front_vqa.png -------------------------------------------------------------------------------- /sample/BLIP/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/README.md -------------------------------------------------------------------------------- /sample/BLIP/python/blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_cap.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_itm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_itm.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_server_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_server_cap.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_server_itm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_server_itm.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_server_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_server_vqa.py -------------------------------------------------------------------------------- /sample/BLIP/python/blip_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/python/blip_vqa.py -------------------------------------------------------------------------------- /sample/BLIP/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/scripts/download.sh -------------------------------------------------------------------------------- /sample/BLIP/tools/export_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/tools/export_cap.py -------------------------------------------------------------------------------- /sample/BLIP/tools/export_itm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/tools/export_itm.py -------------------------------------------------------------------------------- /sample/BLIP/tools/export_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/tools/export_vqa.py -------------------------------------------------------------------------------- /sample/BLIP/web_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/web_ui/README.md -------------------------------------------------------------------------------- /sample/BLIP/web_ui/server-front_cap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/web_ui/server-front_cap.py -------------------------------------------------------------------------------- /sample/BLIP/web_ui/server-front_itm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/web_ui/server-front_itm.py -------------------------------------------------------------------------------- /sample/BLIP/web_ui/server-front_vqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/BLIP/web_ui/server-front_vqa.py -------------------------------------------------------------------------------- /sample/Baichuan2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/.gitignore -------------------------------------------------------------------------------- /sample/Baichuan2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/README.md -------------------------------------------------------------------------------- /sample/Baichuan2/pics/chat_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/pics/chat_stream.png -------------------------------------------------------------------------------- /sample/Baichuan2/pics/multi_session.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/pics/multi_session.jpg -------------------------------------------------------------------------------- /sample/Baichuan2/pics/web_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/pics/web_demo.png -------------------------------------------------------------------------------- /sample/Baichuan2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/python/README.md -------------------------------------------------------------------------------- /sample/Baichuan2/python/baichuan2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/python/baichuan2.py -------------------------------------------------------------------------------- /sample/Baichuan2/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/python/web_demo.py -------------------------------------------------------------------------------- /sample/Baichuan2/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/scripts/download.sh -------------------------------------------------------------------------------- /sample/Baichuan2/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Baichuan2/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Baichuan2/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/ByteTrack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/README.md -------------------------------------------------------------------------------- /sample/ByteTrack/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/cpp/README.md -------------------------------------------------------------------------------- /sample/ByteTrack/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/python/README.md -------------------------------------------------------------------------------- /sample/ByteTrack/python/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | lap 3 | motmetrics 4 | easydict==1.10 5 | PyYAML==5.3.1 6 | opencv-python-headless -------------------------------------------------------------------------------- /sample/ByteTrack/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/ByteTrack/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/scripts/download.sh -------------------------------------------------------------------------------- /sample/ByteTrack/tools/eval_mot15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ByteTrack/tools/eval_mot15.py -------------------------------------------------------------------------------- /sample/C3D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/README.md -------------------------------------------------------------------------------- /sample/C3D/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/README.md -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_bmcv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_bmcv/CMakeLists.txt -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_bmcv/c3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_bmcv/c3d.cpp -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_bmcv/c3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_bmcv/c3d.hpp -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_opencv/c3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_opencv/c3d.cpp -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_opencv/c3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_opencv/c3d.hpp -------------------------------------------------------------------------------- /sample/C3D/cpp/c3d_opencv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/cpp/c3d_opencv/main.cpp -------------------------------------------------------------------------------- /sample/C3D/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/python/README.md -------------------------------------------------------------------------------- /sample/C3D/python/c3d_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/python/c3d_opencv.py -------------------------------------------------------------------------------- /sample/C3D/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/C3D/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/scripts/download.sh -------------------------------------------------------------------------------- /sample/C3D/tools/c3d_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/tools/c3d_lmdb.py -------------------------------------------------------------------------------- /sample/C3D/tools/c3d_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/tools/c3d_npy.py -------------------------------------------------------------------------------- /sample/C3D/tools/c3d_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/tools/c3d_transform.py -------------------------------------------------------------------------------- /sample/C3D/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/C3D/tools/eval_ucf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/C3D/tools/eval_ucf.py -------------------------------------------------------------------------------- /sample/CAM++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/README.md -------------------------------------------------------------------------------- /sample/CAM++/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sample/CAM++/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/cpp/README.md -------------------------------------------------------------------------------- /sample/CAM++/cpp/campplus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/cpp/campplus.hpp -------------------------------------------------------------------------------- /sample/CAM++/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/cpp/main.cpp -------------------------------------------------------------------------------- /sample/CAM++/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/python/README.md -------------------------------------------------------------------------------- /sample/CAM++/python/campplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/python/campplus.py -------------------------------------------------------------------------------- /sample/CAM++/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/scripts/download.sh -------------------------------------------------------------------------------- /sample/CAM++/tools/campplus_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CAM++/tools/campplus_npy.py -------------------------------------------------------------------------------- /sample/CLIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/README.md -------------------------------------------------------------------------------- /sample/CLIP/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/cpp/README.md -------------------------------------------------------------------------------- /sample/CLIP/cpp/clip_opencv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/cpp/clip_opencv/main.cpp -------------------------------------------------------------------------------- /sample/CLIP/datasets/CLIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/datasets/CLIP.png -------------------------------------------------------------------------------- /sample/CLIP/docs/Clip_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/docs/Clip_Export_Guide.md -------------------------------------------------------------------------------- /sample/CLIP/pics/CLIP-web_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/pics/CLIP-web_ui.png -------------------------------------------------------------------------------- /sample/CLIP/pics/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/pics/front.jpg -------------------------------------------------------------------------------- /sample/CLIP/pics/history.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/pics/history.jpg -------------------------------------------------------------------------------- /sample/CLIP/pics/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/pics/result.jpg -------------------------------------------------------------------------------- /sample/CLIP/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/python/README.md -------------------------------------------------------------------------------- /sample/CLIP/python/clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/python/clip/__init__.py -------------------------------------------------------------------------------- /sample/CLIP/python/clip/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/python/clip/clip.py -------------------------------------------------------------------------------- /sample/CLIP/python/clip_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/python/clip_server.py -------------------------------------------------------------------------------- /sample/CLIP/python/zeroshot_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/python/zeroshot_predict.py -------------------------------------------------------------------------------- /sample/CLIP/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/CLIP/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/scripts/download.sh -------------------------------------------------------------------------------- /sample/CLIP/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/CLIP/web_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/web_ui/README.md -------------------------------------------------------------------------------- /sample/CLIP/web_ui/server-backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/web_ui/server-backend.py -------------------------------------------------------------------------------- /sample/CLIP/web_ui/server-front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CLIP/web_ui/server-front.py -------------------------------------------------------------------------------- /sample/CenterNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/README.md -------------------------------------------------------------------------------- /sample/CenterNet/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/cpp/README.md -------------------------------------------------------------------------------- /sample/CenterNet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/python/README.md -------------------------------------------------------------------------------- /sample/CenterNet/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/python/utils.py -------------------------------------------------------------------------------- /sample/CenterNet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/CenterNet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/scripts/download.sh -------------------------------------------------------------------------------- /sample/CenterNet/tools/dlav0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/tools/dlav0.py -------------------------------------------------------------------------------- /sample/CenterNet/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/CenterNet/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/CenterNet/tools/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/CenterNet/tools/model.py -------------------------------------------------------------------------------- /sample/ChatGLM2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/README.md -------------------------------------------------------------------------------- /sample/ChatGLM2/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sample/ChatGLM2/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/cpp/README.md -------------------------------------------------------------------------------- /sample/ChatGLM2/cpp/chatglm2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/cpp/chatglm2.hpp -------------------------------------------------------------------------------- /sample/ChatGLM2/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/cpp/main.cpp -------------------------------------------------------------------------------- /sample/ChatGLM2/pic/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/pic/memory.png -------------------------------------------------------------------------------- /sample/ChatGLM2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/python/README.md -------------------------------------------------------------------------------- /sample/ChatGLM2/python/chatglm2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/python/chatglm2.py -------------------------------------------------------------------------------- /sample/ChatGLM2/python/requirements.txt: -------------------------------------------------------------------------------- 1 | sentencepiece -------------------------------------------------------------------------------- /sample/ChatGLM2/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/scripts/download.sh -------------------------------------------------------------------------------- /sample/ChatGLM2/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM2/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/ChatGLM3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/README.md -------------------------------------------------------------------------------- /sample/ChatGLM3/pics/chat_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/pics/chat_stream.png -------------------------------------------------------------------------------- /sample/ChatGLM3/pics/multi_session.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/pics/multi_session.jpg -------------------------------------------------------------------------------- /sample/ChatGLM3/pics/web_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/pics/web_demo.png -------------------------------------------------------------------------------- /sample/ChatGLM3/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/python/README.md -------------------------------------------------------------------------------- /sample/ChatGLM3/python/chatglm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/python/chatglm3.py -------------------------------------------------------------------------------- /sample/ChatGLM3/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/python/requirements.txt -------------------------------------------------------------------------------- /sample/ChatGLM3/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/python/web_demo.py -------------------------------------------------------------------------------- /sample/ChatGLM3/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/scripts/download.sh -------------------------------------------------------------------------------- /sample/ChatGLM3/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/ChatGLM3/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM3/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/ChatGLM4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/README.md -------------------------------------------------------------------------------- /sample/ChatGLM4/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/python/README.md -------------------------------------------------------------------------------- /sample/ChatGLM4/python/chatglm4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/python/chatglm4.py -------------------------------------------------------------------------------- /sample/ChatGLM4/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/python/requirements.txt -------------------------------------------------------------------------------- /sample/ChatGLM4/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/python/web_demo.py -------------------------------------------------------------------------------- /sample/ChatGLM4/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/scripts/download.sh -------------------------------------------------------------------------------- /sample/ChatGLM4/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/ChatGLM4/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/ChatGLM4/tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatGLM4/tools/requirements.txt -------------------------------------------------------------------------------- /sample/ChatTTS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/README.md -------------------------------------------------------------------------------- /sample/ChatTTS/pics/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/pics/flowchart.png -------------------------------------------------------------------------------- /sample/ChatTTS/python/ChatTTS/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import Chat -------------------------------------------------------------------------------- /sample/ChatTTS/python/ChatTTS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/python/ChatTTS/core.py -------------------------------------------------------------------------------- /sample/ChatTTS/python/ChatTTS/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/python/ChatTTS/norm.py -------------------------------------------------------------------------------- /sample/ChatTTS/python/ChatTTS/res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/ChatTTS/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/python/README.md -------------------------------------------------------------------------------- /sample/ChatTTS/python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/python/test.py -------------------------------------------------------------------------------- /sample/ChatTTS/python/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/python/test_stream.py -------------------------------------------------------------------------------- /sample/ChatTTS/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/requirements.txt -------------------------------------------------------------------------------- /sample/ChatTTS/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/scripts/download.sh -------------------------------------------------------------------------------- /sample/ChatTTS/tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/tools/config.py -------------------------------------------------------------------------------- /sample/ChatTTS/tools/dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/tools/dvae.py -------------------------------------------------------------------------------- /sample/ChatTTS/tools/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/tools/exporter.py -------------------------------------------------------------------------------- /sample/ChatTTS/tools/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/tools/gpt.py -------------------------------------------------------------------------------- /sample/ChatTTS/tools/modeling_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ChatTTS/tools/modeling_llama.py -------------------------------------------------------------------------------- /sample/D-FINE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/README.md -------------------------------------------------------------------------------- /sample/D-FINE/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/python/README.md -------------------------------------------------------------------------------- /sample/D-FINE/python/dfine_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/python/dfine_bmcv.py -------------------------------------------------------------------------------- /sample/D-FINE/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/python/utils.py -------------------------------------------------------------------------------- /sample/D-FINE/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/scripts/download.sh -------------------------------------------------------------------------------- /sample/D-FINE/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/D-FINE/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/DeepSORT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/README.md -------------------------------------------------------------------------------- /sample/DeepSORT/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/cpp/README.md -------------------------------------------------------------------------------- /sample/DeepSORT/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/python/README.md -------------------------------------------------------------------------------- /sample/DeepSORT/python/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | easydict==1.10 3 | PyYAML==5.3.1 4 | opencv-python-headless -------------------------------------------------------------------------------- /sample/DeepSORT/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/DeepSORT/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/scripts/download.sh -------------------------------------------------------------------------------- /sample/DeepSORT/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/DeepSORT/tools/eval_mot15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSORT/tools/eval_mot15.py -------------------------------------------------------------------------------- /sample/DeepSeek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DeepSeek/README.md -------------------------------------------------------------------------------- /sample/DirectMHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/README.md -------------------------------------------------------------------------------- /sample/DirectMHP/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/cpp/README.md -------------------------------------------------------------------------------- /sample/DirectMHP/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/python/README.md -------------------------------------------------------------------------------- /sample/DirectMHP/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/DirectMHP/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/scripts/download.sh -------------------------------------------------------------------------------- /sample/DirectMHP/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/DirectMHP/tools/eval.py -------------------------------------------------------------------------------- /sample/FLUX.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/README.md -------------------------------------------------------------------------------- /sample/FLUX.1/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/python/README.md -------------------------------------------------------------------------------- /sample/FLUX.1/python/flux_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/python/flux_pipeline.py -------------------------------------------------------------------------------- /sample/FLUX.1/python/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/python/run.py -------------------------------------------------------------------------------- /sample/FLUX.1/python/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/python/web.py -------------------------------------------------------------------------------- /sample/FLUX.1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/requirements.txt -------------------------------------------------------------------------------- /sample/FLUX.1/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/scripts/download.sh -------------------------------------------------------------------------------- /sample/FLUX.1/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FLUX.1/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/FaceFormer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/README.md -------------------------------------------------------------------------------- /sample/FaceFormer/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/python/README.md -------------------------------------------------------------------------------- /sample/FaceFormer/python/faceformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/python/faceformer.py -------------------------------------------------------------------------------- /sample/FaceFormer/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/scripts/download.sh -------------------------------------------------------------------------------- /sample/FaceFormer/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/FaceFormer/tools/faceformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/tools/faceformer.py -------------------------------------------------------------------------------- /sample/FaceFormer/tools/gen_npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/tools/gen_npz.py -------------------------------------------------------------------------------- /sample/FaceFormer/tools/wav2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/FaceFormer/tools/wav2vec.py -------------------------------------------------------------------------------- /sample/GroundingDINO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/GroundingDINO/README.md -------------------------------------------------------------------------------- /sample/GroundingDINO/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/GroundingDINO/cpp/README.md -------------------------------------------------------------------------------- /sample/GroundingDINO/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/GroundingDINO/python/README.md -------------------------------------------------------------------------------- /sample/GroundingDINO/python/requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | transformers 3 | pillow 4 | -------------------------------------------------------------------------------- /sample/GroundingDINO/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/GroundingDINO/python/utils.py -------------------------------------------------------------------------------- /sample/HRNet_pose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/README.md -------------------------------------------------------------------------------- /sample/HRNet_pose/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/cpp/README.md -------------------------------------------------------------------------------- /sample/HRNet_pose/pics/785_cpp_bmcv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/pics/785_cpp_bmcv.jpg -------------------------------------------------------------------------------- /sample/HRNet_pose/pics/Flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/pics/Flowchart.png -------------------------------------------------------------------------------- /sample/HRNet_pose/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/python/README.md -------------------------------------------------------------------------------- /sample/HRNet_pose/python/detector/yolov5/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/HRNet_pose/python/hrnet_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/python/hrnet_pose.py -------------------------------------------------------------------------------- /sample/HRNet_pose/python/hrnet_pose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/HRNet_pose/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/HRNet_pose/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/scripts/download.sh -------------------------------------------------------------------------------- /sample/HRNet_pose/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/HRNet_pose/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/InternVL2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/README.md -------------------------------------------------------------------------------- /sample/InternVL2/pics/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/pics/image.png -------------------------------------------------------------------------------- /sample/InternVL2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/python/README.md -------------------------------------------------------------------------------- /sample/InternVL2/python/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/python/image1.jpg -------------------------------------------------------------------------------- /sample/InternVL2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/requirements.txt -------------------------------------------------------------------------------- /sample/InternVL2/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/InternVL2/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL2/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/InternVL3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL3/README.md -------------------------------------------------------------------------------- /sample/InternVL3/pics/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL3/pics/image.png -------------------------------------------------------------------------------- /sample/InternVL3/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL3/python/README.md -------------------------------------------------------------------------------- /sample/InternVL3/python/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL3/python/preprocess.py -------------------------------------------------------------------------------- /sample/InternVL3/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/InternVL3/scripts/download.sh -------------------------------------------------------------------------------- /sample/Janus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/README.md -------------------------------------------------------------------------------- /sample/Janus/docs/Janus_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/docs/Janus_Export_Guide.md -------------------------------------------------------------------------------- /sample/Janus/pics/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/pics/test.jpg -------------------------------------------------------------------------------- /sample/Janus/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/python/README.md -------------------------------------------------------------------------------- /sample/Janus/python/config/janus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/python/config/janus.yaml -------------------------------------------------------------------------------- /sample/Janus/python/janus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/python/janus.py -------------------------------------------------------------------------------- /sample/Janus/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/python/requirements.txt -------------------------------------------------------------------------------- /sample/Janus/python/support/__init__.py: -------------------------------------------------------------------------------- 1 | from .janus import MultiModalityCausalLM, VLChatProcessor -------------------------------------------------------------------------------- /sample/Janus/scripts/download_onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/scripts/download_onnx.sh -------------------------------------------------------------------------------- /sample/Janus/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Janus/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Janus/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/LPRNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/README.md -------------------------------------------------------------------------------- /sample/LPRNet/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/cpp/README.md -------------------------------------------------------------------------------- /sample/LPRNet/cpp/lprnet_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/cpp/lprnet_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/LPRNet/pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/pics/1.png -------------------------------------------------------------------------------- /sample/LPRNet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/python/README.md -------------------------------------------------------------------------------- /sample/LPRNet/python/lprnet_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/python/lprnet_bmcv.py -------------------------------------------------------------------------------- /sample/LPRNet/python/lprnet_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/python/lprnet_opencv.py -------------------------------------------------------------------------------- /sample/LPRNet/python/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python-headless -------------------------------------------------------------------------------- /sample/LPRNet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/LPRNet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/scripts/download.sh -------------------------------------------------------------------------------- /sample/LPRNet/tools/LPRNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/tools/LPRNet.py -------------------------------------------------------------------------------- /sample/LPRNet/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/LPRNet/tools/convert_imageset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/tools/convert_imageset.py -------------------------------------------------------------------------------- /sample/LPRNet/tools/eval_ccpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/tools/eval_ccpd.py -------------------------------------------------------------------------------- /sample/LPRNet/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LPRNet/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/LightStereo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/README.md -------------------------------------------------------------------------------- /sample/LightStereo/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/cpp/README.md -------------------------------------------------------------------------------- /sample/LightStereo/pics/000006_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/pics/000006_10.png -------------------------------------------------------------------------------- /sample/LightStereo/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/python/README.md -------------------------------------------------------------------------------- /sample/LightStereo/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/LightStereo/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/scripts/download.sh -------------------------------------------------------------------------------- /sample/LightStereo/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/tools/eval.py -------------------------------------------------------------------------------- /sample/LightStereo/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/LightStereo/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/Llama2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/README.md -------------------------------------------------------------------------------- /sample/Llama2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/python/README.md -------------------------------------------------------------------------------- /sample/Llama2/python/config/llama2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/python/config/llama2.yaml -------------------------------------------------------------------------------- /sample/Llama2/python/llama2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/python/llama2.py -------------------------------------------------------------------------------- /sample/Llama2/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/python/requirements.txt -------------------------------------------------------------------------------- /sample/Llama2/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/python/web_demo.py -------------------------------------------------------------------------------- /sample/Llama2/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/scripts/download.sh -------------------------------------------------------------------------------- /sample/Llama2/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Llama2/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama2/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/Llama3_2_Vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama3_2_Vision/README.md -------------------------------------------------------------------------------- /sample/Llama3_2_Vision/pics/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama3_2_Vision/pics/test.jpg -------------------------------------------------------------------------------- /sample/Llama3_2_Vision/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama3_2_Vision/python/README.md -------------------------------------------------------------------------------- /sample/Llama3_2_Vision/python/llama3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Llama3_2_Vision/python/llama3.py -------------------------------------------------------------------------------- /sample/MP_SENet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/README.md -------------------------------------------------------------------------------- /sample/MP_SENet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/python/README.md -------------------------------------------------------------------------------- /sample/MP_SENet/python/mp_senet_sail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/python/mp_senet_sail.py -------------------------------------------------------------------------------- /sample/MP_SENet/python/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/python/process.png -------------------------------------------------------------------------------- /sample/MP_SENet/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/python/requirements.txt -------------------------------------------------------------------------------- /sample/MP_SENet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/MP_SENet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/scripts/download.sh -------------------------------------------------------------------------------- /sample/MP_SENet/tools/model_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MP_SENet/tools/model_onnx.py -------------------------------------------------------------------------------- /sample/MiniCPM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/README.md -------------------------------------------------------------------------------- /sample/MiniCPM/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sample/MiniCPM/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/cpp/README.md -------------------------------------------------------------------------------- /sample/MiniCPM/cpp/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/cpp/demo.cpp -------------------------------------------------------------------------------- /sample/MiniCPM/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/docs/FAQ.md -------------------------------------------------------------------------------- /sample/MiniCPM/pics/Show_Results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/pics/Show_Results.png -------------------------------------------------------------------------------- /sample/MiniCPM/pics/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/pics/image.png -------------------------------------------------------------------------------- /sample/MiniCPM/pics/sophgo_chip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/pics/sophgo_chip.png -------------------------------------------------------------------------------- /sample/MiniCPM/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/scripts/download.sh -------------------------------------------------------------------------------- /sample/MiniCPM/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/MiniCPM/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/MiniCPM/tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM/tools/requirements.txt -------------------------------------------------------------------------------- /sample/MiniCPM3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/README.md -------------------------------------------------------------------------------- /sample/MiniCPM3/pics/chat_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/pics/chat_stream.png -------------------------------------------------------------------------------- /sample/MiniCPM3/pics/multi_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/pics/multi_session.png -------------------------------------------------------------------------------- /sample/MiniCPM3/pics/web_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/pics/web_demo.png -------------------------------------------------------------------------------- /sample/MiniCPM3/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/README.md -------------------------------------------------------------------------------- /sample/MiniCPM3/python/config/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/config/api.yaml -------------------------------------------------------------------------------- /sample/MiniCPM3/python/config/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/config/web.yaml -------------------------------------------------------------------------------- /sample/MiniCPM3/python/minicpm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/minicpm3.py -------------------------------------------------------------------------------- /sample/MiniCPM3/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/requirements.txt -------------------------------------------------------------------------------- /sample/MiniCPM3/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/python/web_demo.py -------------------------------------------------------------------------------- /sample/MiniCPM3/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/scripts/download.sh -------------------------------------------------------------------------------- /sample/MiniCPM3/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/MiniCPM3/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM3/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/MiniCPM4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/README.md -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/README.md -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/main.cpp -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/minicpm4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/minicpm4.cpp -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/minicpm4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/minicpm4.hpp -------------------------------------------------------------------------------- /sample/MiniCPM4/cpp/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/cpp/utils.hpp -------------------------------------------------------------------------------- /sample/MiniCPM4/pics/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/pics/demo.png -------------------------------------------------------------------------------- /sample/MiniCPM4/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/python/README.md -------------------------------------------------------------------------------- /sample/MiniCPM4/python/minicpm4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/python/minicpm4.py -------------------------------------------------------------------------------- /sample/MiniCPM4/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/python/requirements.txt -------------------------------------------------------------------------------- /sample/MiniCPM4/python/token_config/configuration.json: -------------------------------------------------------------------------------- 1 | {"framework":"Pytorch","task":"text-generation"} -------------------------------------------------------------------------------- /sample/MiniCPM4/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPM4/scripts/download.sh -------------------------------------------------------------------------------- /sample/MiniCPMV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/README.md -------------------------------------------------------------------------------- /sample/MiniCPMV/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/docs/FAQ.md -------------------------------------------------------------------------------- /sample/MiniCPMV/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/python/README.md -------------------------------------------------------------------------------- /sample/MiniCPMV/python/minicpmv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/python/minicpmv.py -------------------------------------------------------------------------------- /sample/MiniCPMV/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/python/requirements.txt -------------------------------------------------------------------------------- /sample/MiniCPMV/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/MiniCPMV/scripts/download.sh -------------------------------------------------------------------------------- /sample/OpenPose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/README.md -------------------------------------------------------------------------------- /sample/OpenPose/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/cpp/README.md -------------------------------------------------------------------------------- /sample/OpenPose/pics/1_cpp_bmcv.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/pics/1_cpp_bmcv.jpeg -------------------------------------------------------------------------------- /sample/OpenPose/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/python/README.md -------------------------------------------------------------------------------- /sample/OpenPose/python/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python-headless 2 | scipy 3 | matplotlib 4 | pycocotools -------------------------------------------------------------------------------- /sample/OpenPose/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/OpenPose/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/scripts/download.sh -------------------------------------------------------------------------------- /sample/OpenPose/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/OpenPose/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/OpenPose/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/P2PNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/README.md -------------------------------------------------------------------------------- /sample/P2PNet/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/cpp/README.md -------------------------------------------------------------------------------- /sample/P2PNet/cpp/p2pnet_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/cpp/p2pnet_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/P2PNet/pics/crowd_cpp_bmcv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/pics/crowd_cpp_bmcv.jpg -------------------------------------------------------------------------------- /sample/P2PNet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/python/README.md -------------------------------------------------------------------------------- /sample/P2PNet/python/p2pnet_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/python/p2pnet_bmcv.py -------------------------------------------------------------------------------- /sample/P2PNet/python/p2pnet_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/python/p2pnet_opencv.py -------------------------------------------------------------------------------- /sample/P2PNet/python/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | opencv-python-headless -------------------------------------------------------------------------------- /sample/P2PNet/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/python/utils.py -------------------------------------------------------------------------------- /sample/P2PNet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/P2PNet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/scripts/download.sh -------------------------------------------------------------------------------- /sample/P2PNet/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/P2PNet/tools/eval_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/P2PNet/tools/eval_acc.py -------------------------------------------------------------------------------- /sample/PP-OCR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/README.md -------------------------------------------------------------------------------- /sample/PP-OCR/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/cpp/README.md -------------------------------------------------------------------------------- /sample/PP-OCR/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/python/README.md -------------------------------------------------------------------------------- /sample/PP-OCR/python/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python-headless 2 | shapely 3 | pyclipper 4 | pillow<=9.5.0 -------------------------------------------------------------------------------- /sample/PP-OCR/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/PP-OCR/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/scripts/download.sh -------------------------------------------------------------------------------- /sample/PP-OCR/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/PP-OCR/tools/eval_icdar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/PP-OCR/tools/eval_icdar.py -------------------------------------------------------------------------------- /sample/Phi4mm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/README.md -------------------------------------------------------------------------------- /sample/Phi4mm/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/python/README.md -------------------------------------------------------------------------------- /sample/Phi4mm/python/phi4mm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/python/phi4mm.py -------------------------------------------------------------------------------- /sample/Phi4mm/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/python/requirements.txt -------------------------------------------------------------------------------- /sample/Phi4mm/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/scripts/download.sh -------------------------------------------------------------------------------- /sample/Phi4mm/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Phi4mm/tools/files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/tools/files/config.json -------------------------------------------------------------------------------- /sample/Phi4mm/tools/model_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/tools/model_export.py -------------------------------------------------------------------------------- /sample/Phi4mm/tools/onnx_rebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/tools/onnx_rebuilder.py -------------------------------------------------------------------------------- /sample/Phi4mm/tools/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Phi4mm/tools/requirements.txt -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/README.md -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/pics/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/pics/example.png -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/python/README.md -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/python/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/python/config.ini -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/python/qwen_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/python/qwen_vl.py -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/python/web_demo.py -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/requirements.txt -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/scripts/download.sh -------------------------------------------------------------------------------- /sample/Qwen-VL-Chat/tools/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen-VL-Chat/tools/config.json -------------------------------------------------------------------------------- /sample/Qwen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/README.md -------------------------------------------------------------------------------- /sample/Qwen/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/cpp/README.md -------------------------------------------------------------------------------- /sample/Qwen/cpp/qwen_bmlib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/cpp/qwen_bmlib/main.cpp -------------------------------------------------------------------------------- /sample/Qwen/cpp/qwen_bmlib/qwen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/cpp/qwen_bmlib/qwen.cpp -------------------------------------------------------------------------------- /sample/Qwen/cpp/qwen_bmlib/qwen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/cpp/qwen_bmlib/qwen.hpp -------------------------------------------------------------------------------- /sample/Qwen/cpp/qwen_bmlib/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/cpp/qwen_bmlib/utils.hpp -------------------------------------------------------------------------------- /sample/Qwen/docs/Qwen_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/docs/Qwen_Export_Guide.md -------------------------------------------------------------------------------- /sample/Qwen/pics/chat_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/pics/chat_stream.png -------------------------------------------------------------------------------- /sample/Qwen/pics/multi_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/pics/multi_session.png -------------------------------------------------------------------------------- /sample/Qwen/pics/web_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/pics/web_demo.png -------------------------------------------------------------------------------- /sample/Qwen/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/README.md -------------------------------------------------------------------------------- /sample/Qwen/python/config/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/config/api.yaml -------------------------------------------------------------------------------- /sample/Qwen/python/config/qwen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/config/qwen.yaml -------------------------------------------------------------------------------- /sample/Qwen/python/config/web.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/config/web.yaml -------------------------------------------------------------------------------- /sample/Qwen/python/openai_api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/openai_api_server.py -------------------------------------------------------------------------------- /sample/Qwen/python/qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/qwen.py -------------------------------------------------------------------------------- /sample/Qwen/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/requirements.txt -------------------------------------------------------------------------------- /sample/Qwen/python/web_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/python/web_demo.py -------------------------------------------------------------------------------- /sample/Qwen/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/scripts/download.sh -------------------------------------------------------------------------------- /sample/Qwen/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Qwen/tools/export_onnx_qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/tools/export_onnx_qwen.py -------------------------------------------------------------------------------- /sample/Qwen/tools/export_onnx_qwen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen/tools/export_onnx_qwen2.py -------------------------------------------------------------------------------- /sample/Qwen2-VL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2-VL/README.md -------------------------------------------------------------------------------- /sample/Qwen2-VL/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2-VL/python/README.md -------------------------------------------------------------------------------- /sample/Qwen2-VL/python/qwen2_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2-VL/python/qwen2_vl.py -------------------------------------------------------------------------------- /sample/Qwen2-VL/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2-VL/python/requirements.txt -------------------------------------------------------------------------------- /sample/Qwen2-VL/scripts/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2-VL/scripts/compile.sh -------------------------------------------------------------------------------- /sample/Qwen2_5-VL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2_5-VL/README.md -------------------------------------------------------------------------------- /sample/Qwen2_5-VL/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2_5-VL/python/README.md -------------------------------------------------------------------------------- /sample/Qwen2_5-VL/python/qwen2_5_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen2_5-VL/python/qwen2_5_vl.py -------------------------------------------------------------------------------- /sample/Qwen3-VL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen3-VL/README.md -------------------------------------------------------------------------------- /sample/Qwen3-VL/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen3-VL/python/README.md -------------------------------------------------------------------------------- /sample/Qwen3-VL/python/qwen3_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen3-VL/python/qwen3_vl.py -------------------------------------------------------------------------------- /sample/Qwen3-VL/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Qwen3-VL/python/requirements.txt -------------------------------------------------------------------------------- /sample/Real-ESRGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/README.md -------------------------------------------------------------------------------- /sample/Real-ESRGAN/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/cpp/README.md -------------------------------------------------------------------------------- /sample/Real-ESRGAN/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/python/README.md -------------------------------------------------------------------------------- /sample/Real-ESRGAN/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/Real-ESRGAN/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/scripts/download.sh -------------------------------------------------------------------------------- /sample/Real-ESRGAN/tools/compare_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/tools/compare_acc.py -------------------------------------------------------------------------------- /sample/Real-ESRGAN/tools/eval_psnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/tools/eval_psnr.py -------------------------------------------------------------------------------- /sample/Real-ESRGAN/tools/eval_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Real-ESRGAN/tools/eval_ssim.py -------------------------------------------------------------------------------- /sample/Recogize-Anything/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Recogize-Anything/README.md -------------------------------------------------------------------------------- /sample/ResNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/README.md -------------------------------------------------------------------------------- /sample/ResNet/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/cpp/README.md -------------------------------------------------------------------------------- /sample/ResNet/cpp/resnet_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/cpp/resnet_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/ResNet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/python/README.md -------------------------------------------------------------------------------- /sample/ResNet/python/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python-headless 2 | -------------------------------------------------------------------------------- /sample/ResNet/python/resnet_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/python/resnet_bmcv.py -------------------------------------------------------------------------------- /sample/ResNet/python/resnet_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/python/resnet_opencv.py -------------------------------------------------------------------------------- /sample/ResNet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/ResNet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/scripts/download.sh -------------------------------------------------------------------------------- /sample/ResNet/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/ResNet/tools/eval_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ResNet/tools/eval_imagenet.py -------------------------------------------------------------------------------- /sample/RetinaFace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/RetinaFace/README.md -------------------------------------------------------------------------------- /sample/RetinaFace/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/RetinaFace/cpp/README.md -------------------------------------------------------------------------------- /sample/RetinaFace/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/RetinaFace/python/README.md -------------------------------------------------------------------------------- /sample/RetinaFace/python/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/RetinaFace/python/data/config.py -------------------------------------------------------------------------------- /sample/RetinaFace/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/RetinaFace/scripts/download.sh -------------------------------------------------------------------------------- /sample/SAM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/README.md -------------------------------------------------------------------------------- /sample/SAM/docs/SAM_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/SAM_Export_Guide.md -------------------------------------------------------------------------------- /sample/SAM/docs/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_0.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_1.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_2.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_auto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_auto.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_box.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_box_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_box_0.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_box_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_box_1.jpg -------------------------------------------------------------------------------- /sample/SAM/docs/result_box_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/docs/result_box_2.jpg -------------------------------------------------------------------------------- /sample/SAM/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/README.md -------------------------------------------------------------------------------- /sample/SAM/python/amg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/amg.py -------------------------------------------------------------------------------- /sample/SAM/python/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/backend.py -------------------------------------------------------------------------------- /sample/SAM/python/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/predictor.py -------------------------------------------------------------------------------- /sample/SAM/python/sam_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/sam_encoder.py -------------------------------------------------------------------------------- /sample/SAM/python/sam_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/sam_model.py -------------------------------------------------------------------------------- /sample/SAM/python/sam_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/sam_opencv.py -------------------------------------------------------------------------------- /sample/SAM/python/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/python/transforms.py -------------------------------------------------------------------------------- /sample/SAM/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/scripts/download.sh -------------------------------------------------------------------------------- /sample/SAM/web_ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/README.md -------------------------------------------------------------------------------- /sample/SAM/web_ui/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/css/styles.css -------------------------------------------------------------------------------- /sample/SAM/web_ui/images/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/images/dog.jpg -------------------------------------------------------------------------------- /sample/SAM/web_ui/images/groceries.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/images/groceries.jpg -------------------------------------------------------------------------------- /sample/SAM/web_ui/images/truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/images/truck.jpg -------------------------------------------------------------------------------- /sample/SAM/web_ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/index.html -------------------------------------------------------------------------------- /sample/SAM/web_ui/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM/web_ui/scripts/main.js -------------------------------------------------------------------------------- /sample/SAM2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/README.md -------------------------------------------------------------------------------- /sample/SAM2/docs/export_bmodel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/docs/export_bmodel.md -------------------------------------------------------------------------------- /sample/SAM2/pics/truck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/truck.jpg -------------------------------------------------------------------------------- /sample/SAM2/pics/truck1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/truck1.jpg -------------------------------------------------------------------------------- /sample/SAM2/pics/truck2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/truck2.jpg -------------------------------------------------------------------------------- /sample/SAM2/pics/truck3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/truck3.jpg -------------------------------------------------------------------------------- /sample/SAM2/pics/video_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/video_1.png -------------------------------------------------------------------------------- /sample/SAM2/pics/video_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/video_25.png -------------------------------------------------------------------------------- /sample/SAM2/pics/video_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/pics/video_30.png -------------------------------------------------------------------------------- /sample/SAM2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/README.md -------------------------------------------------------------------------------- /sample/SAM2/python/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/datasets.py -------------------------------------------------------------------------------- /sample/SAM2/python/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python-headless 3 | tqdm 4 | pycocotools -------------------------------------------------------------------------------- /sample/SAM2/python/sam2_image_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/sam2_image_opencv.py -------------------------------------------------------------------------------- /sample/SAM2/python/sam2_video_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/sam2_video_base.py -------------------------------------------------------------------------------- /sample/SAM2/python/sam2_video_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/sam2_video_opencv.py -------------------------------------------------------------------------------- /sample/SAM2/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/utils.py -------------------------------------------------------------------------------- /sample/SAM2/python/video_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/python/video_utils.py -------------------------------------------------------------------------------- /sample/SAM2/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/SAM2/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/scripts/download.sh -------------------------------------------------------------------------------- /sample/SAM2/scripts/gen_bmodel_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/scripts/gen_bmodel_image.sh -------------------------------------------------------------------------------- /sample/SAM2/scripts/gen_bmodel_video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/scripts/gen_bmodel_video.sh -------------------------------------------------------------------------------- /sample/SAM2/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/SAM2/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SAM2/tools/eval.py -------------------------------------------------------------------------------- /sample/SCRFD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/README.md -------------------------------------------------------------------------------- /sample/SCRFD/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/README.md -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_bmcv/scrfd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_bmcv/scrfd.cpp -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_bmcv/scrfd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_bmcv/scrfd.hpp -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_sail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_sail/main.cpp -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_sail/scrfd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_sail/scrfd.cpp -------------------------------------------------------------------------------- /sample/SCRFD/cpp/scrfd_sail/scrfd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/cpp/scrfd_sail/scrfd.hpp -------------------------------------------------------------------------------- /sample/SCRFD/docs/scrfd_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/docs/scrfd_Export_Guide.md -------------------------------------------------------------------------------- /sample/SCRFD/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/python/README.md -------------------------------------------------------------------------------- /sample/SCRFD/python/scrfd_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/python/scrfd_bmcv.py -------------------------------------------------------------------------------- /sample/SCRFD/python/scrfd_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/python/scrfd_opencv.py -------------------------------------------------------------------------------- /sample/SCRFD/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/SCRFD/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/scripts/download.sh -------------------------------------------------------------------------------- /sample/SCRFD/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/tools/README.md -------------------------------------------------------------------------------- /sample/SCRFD/tools/box_overlaps.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/tools/box_overlaps.pyx -------------------------------------------------------------------------------- /sample/SCRFD/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/SCRFD/tools/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/tools/evaluation.py -------------------------------------------------------------------------------- /sample/SCRFD/tools/requirements.txt: -------------------------------------------------------------------------------- 1 | Cython 2 | tqdm 3 | scipy -------------------------------------------------------------------------------- /sample/SCRFD/tools/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SCRFD/tools/setup.py -------------------------------------------------------------------------------- /sample/SSD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/README.md -------------------------------------------------------------------------------- /sample/SSD/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/README.md -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_bmcv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_bmcv/CMakeLists.txt -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_bmcv/ssd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_bmcv/ssd.cpp -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_bmcv/ssd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_bmcv/ssd.hpp -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_opencv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_opencv/main.cpp -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_opencv/ssd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_opencv/ssd.cpp -------------------------------------------------------------------------------- /sample/SSD/cpp/ssd_opencv/ssd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/cpp/ssd_opencv/ssd.hpp -------------------------------------------------------------------------------- /sample/SSD/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/python/README.md -------------------------------------------------------------------------------- /sample/SSD/python/requirements.txt: -------------------------------------------------------------------------------- 1 | dfn 2 | pycocotools 3 | opencv-python-headless<=4.3 -------------------------------------------------------------------------------- /sample/SSD/python/ssd_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/python/ssd_bmcv.py -------------------------------------------------------------------------------- /sample/SSD/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/scripts/download.sh -------------------------------------------------------------------------------- /sample/SSD/scripts/gen_fp32bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/scripts/gen_fp32bmodel.sh -------------------------------------------------------------------------------- /sample/SSD/scripts/gen_int8bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/scripts/gen_int8bmodel.sh -------------------------------------------------------------------------------- /sample/SSD/tools/convert_imageset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/tools/convert_imageset.py -------------------------------------------------------------------------------- /sample/SSD/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SSD/tools/eval.py -------------------------------------------------------------------------------- /sample/Seamless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/README.md -------------------------------------------------------------------------------- /sample/Seamless/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/python/README.md -------------------------------------------------------------------------------- /sample/Seamless/python/customized_fairseq2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/Seamless/python/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/python/generator.py -------------------------------------------------------------------------------- /sample/Seamless/python/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/python/model.py -------------------------------------------------------------------------------- /sample/Seamless/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/python/requirements.txt -------------------------------------------------------------------------------- /sample/Seamless/python/websocket_demo/client/client_requirements.txt: -------------------------------------------------------------------------------- 1 | websockets==11.0 2 | webrtcvad 3 | pyaudio 4 | funasr==1.0.27 -------------------------------------------------------------------------------- /sample/Seamless/tools/eval_aishell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Seamless/tools/eval_aishell.py -------------------------------------------------------------------------------- /sample/SlowFast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/README.md -------------------------------------------------------------------------------- /sample/SlowFast/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/cpp/README.md -------------------------------------------------------------------------------- /sample/SlowFast/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/python/README.md -------------------------------------------------------------------------------- /sample/SlowFast/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/SlowFast/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/scripts/download.sh -------------------------------------------------------------------------------- /sample/SlowFast/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/SlowFast/tools/eval_kinetics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/tools/eval_kinetics.py -------------------------------------------------------------------------------- /sample/SlowFast/tools/slowfast_npy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SlowFast/tools/slowfast_npy.py -------------------------------------------------------------------------------- /sample/StableDiffusionV1_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/StableDiffusionV1_5/README.md -------------------------------------------------------------------------------- /sample/StableDiffusionV1_5/pics/hed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/StableDiffusionV1_5/pics/hed.png -------------------------------------------------------------------------------- /sample/StableDiffusionXL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/StableDiffusionXL/README.md -------------------------------------------------------------------------------- /sample/SuperGlue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SuperGlue/README.md -------------------------------------------------------------------------------- /sample/SuperGlue/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SuperGlue/cpp/README.md -------------------------------------------------------------------------------- /sample/SuperGlue/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SuperGlue/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/SuperGlue/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SuperGlue/scripts/download.sh -------------------------------------------------------------------------------- /sample/SuperGlue/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/SuperGlue/tools/eval.py -------------------------------------------------------------------------------- /sample/VITA1_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/README.md -------------------------------------------------------------------------------- /sample/VITA1_5/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/python/README.md -------------------------------------------------------------------------------- /sample/VITA1_5/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/python/requirements.txt -------------------------------------------------------------------------------- /sample/VITA1_5/python/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/python/train.yaml -------------------------------------------------------------------------------- /sample/VITA1_5/python/vita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/python/vita.py -------------------------------------------------------------------------------- /sample/VITA1_5/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/scripts/download.sh -------------------------------------------------------------------------------- /sample/VITA1_5/tools/model_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/tools/model_exporter.py -------------------------------------------------------------------------------- /sample/VITA1_5/tools/onnx_rebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/tools/onnx_rebuilder.py -------------------------------------------------------------------------------- /sample/VITA1_5/tools/vita/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/tools/vita/constants.py -------------------------------------------------------------------------------- /sample/VITA1_5/tools/vita/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITA1_5/tools/vita/util/utils.py -------------------------------------------------------------------------------- /sample/VITS_CHINESE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/README.md -------------------------------------------------------------------------------- /sample/VITS_CHINESE/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/python/README.md -------------------------------------------------------------------------------- /sample/VITS_CHINESE/python/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/python/image.png -------------------------------------------------------------------------------- /sample/VITS_CHINESE/python/requirements_soc.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pypinyin 3 | soundfile 4 | Cython 5 | transformers 6 | -------------------------------------------------------------------------------- /sample/VITS_CHINESE/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/scripts/download.sh -------------------------------------------------------------------------------- /sample/VITS_CHINESE/tools/model_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/tools/model_onnx.py -------------------------------------------------------------------------------- /sample/VITS_CHINESE/tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/VITS_CHINESE/tools/utils.py -------------------------------------------------------------------------------- /sample/Vila/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/README.md -------------------------------------------------------------------------------- /sample/Vila/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/cpp/README.md -------------------------------------------------------------------------------- /sample/Vila/cpp/vila_sail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/cpp/vila_sail/main.cpp -------------------------------------------------------------------------------- /sample/Vila/cpp/vila_sail/vila.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/cpp/vila_sail/vila.cpp -------------------------------------------------------------------------------- /sample/Vila/cpp/vila_sail/vila.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/cpp/vila_sail/vila.hpp -------------------------------------------------------------------------------- /sample/Vila/docs/Vila_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/docs/Vila_Export_Guide.md -------------------------------------------------------------------------------- /sample/Vila/pics/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/pics/demo.jpg -------------------------------------------------------------------------------- /sample/Vila/pics/vila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/pics/vila.jpg -------------------------------------------------------------------------------- /sample/Vila/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/python/README.md -------------------------------------------------------------------------------- /sample/Vila/python/requirements.txt: -------------------------------------------------------------------------------- 1 | transformers==4.37.2 2 | Pillow 3 | opencv-python-headless 4 | sentencepiece 5 | protobuf -------------------------------------------------------------------------------- /sample/Vila/python/vila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/python/vila.py -------------------------------------------------------------------------------- /sample/Vila/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/scripts/download.sh -------------------------------------------------------------------------------- /sample/Vila/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Vila/tools/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Vila/tools/export_onnx.py -------------------------------------------------------------------------------- /sample/WeNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/README.md -------------------------------------------------------------------------------- /sample/WeNet/config/lang_char.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/config/lang_char.txt -------------------------------------------------------------------------------- /sample/WeNet/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /sample/WeNet/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/README.md -------------------------------------------------------------------------------- /sample/WeNet/cpp/include/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/include/processor.h -------------------------------------------------------------------------------- /sample/WeNet/cpp/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/include/util.h -------------------------------------------------------------------------------- /sample/WeNet/cpp/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/include/utils.hpp -------------------------------------------------------------------------------- /sample/WeNet/cpp/include/wenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/include/wenet.h -------------------------------------------------------------------------------- /sample/WeNet/cpp/include/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/include/wrapper.h -------------------------------------------------------------------------------- /sample/WeNet/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/main.cpp -------------------------------------------------------------------------------- /sample/WeNet/cpp/src/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/src/processor.cpp -------------------------------------------------------------------------------- /sample/WeNet/cpp/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/src/util.cpp -------------------------------------------------------------------------------- /sample/WeNet/cpp/src/wenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/src/wenet.cpp -------------------------------------------------------------------------------- /sample/WeNet/cpp/src/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/cpp/src/wrapper.cpp -------------------------------------------------------------------------------- /sample/WeNet/docs/WeNetSpeech_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/docs/WeNetSpeech_Guide.md -------------------------------------------------------------------------------- /sample/WeNet/docs/WeNet_Export_Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/docs/WeNet_Export_Guide.md -------------------------------------------------------------------------------- /sample/WeNet/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/python/README.md -------------------------------------------------------------------------------- /sample/WeNet/python/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/python/dataset/dataset.py -------------------------------------------------------------------------------- /sample/WeNet/python/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/python/utils/common.py -------------------------------------------------------------------------------- /sample/WeNet/python/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/python/utils/file_utils.py -------------------------------------------------------------------------------- /sample/WeNet/python/wenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/python/wenet.py -------------------------------------------------------------------------------- /sample/WeNet/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/WeNet/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/scripts/download.sh -------------------------------------------------------------------------------- /sample/WeNet/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/WeNet/tools/eval_aishell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/WeNet/tools/eval_aishell.py -------------------------------------------------------------------------------- /sample/Whisper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/README.md -------------------------------------------------------------------------------- /sample/Whisper/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/python/README.md -------------------------------------------------------------------------------- /sample/Whisper/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/python/requirements.txt -------------------------------------------------------------------------------- /sample/Whisper/python/whisper.py: -------------------------------------------------------------------------------- 1 | from bmwhisper.transcribe import * 2 | cli() 3 | -------------------------------------------------------------------------------- /sample/Whisper/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/scripts/download.sh -------------------------------------------------------------------------------- /sample/Whisper/scripts/gen_bmodel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/scripts/gen_bmodel.sh -------------------------------------------------------------------------------- /sample/Whisper/scripts/gen_onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/scripts/gen_onnx.sh -------------------------------------------------------------------------------- /sample/Whisper/tools/eval_aishell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/Whisper/tools/eval_aishell.py -------------------------------------------------------------------------------- /sample/Whisper/tools/export_whisper/assets: -------------------------------------------------------------------------------- 1 | ../../python/bmwhisper/assets -------------------------------------------------------------------------------- /sample/Whisper/tools/export_whisper/tokenizer.py: -------------------------------------------------------------------------------- 1 | ../../python/bmwhisper/tokenizer.py -------------------------------------------------------------------------------- /sample/Whisper/tools/export_whisper/utils.py: -------------------------------------------------------------------------------- 1 | ../../python/bmwhisper/utils.py -------------------------------------------------------------------------------- /sample/YOLOX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/README.md -------------------------------------------------------------------------------- /sample/YOLOX/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOX/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOX/cpp/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_bmcv/main.cpp -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_bmcv/yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_bmcv/yolox.cpp -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_bmcv/yolox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_bmcv/yolox.hpp -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_sail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_sail/main.cpp -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_sail/yolox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_sail/yolox.cpp -------------------------------------------------------------------------------- /sample/YOLOX/cpp/yolox_sail/yolox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/cpp/yolox_sail/yolox.hpp -------------------------------------------------------------------------------- /sample/YOLOX/pics/zidane_cpp_bmcv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/pics/zidane_cpp_bmcv.jpg -------------------------------------------------------------------------------- /sample/YOLOX/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/python/README.md -------------------------------------------------------------------------------- /sample/YOLOX/python/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/python/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOX/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOX/python/yolox_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/python/yolox_bmcv.py -------------------------------------------------------------------------------- /sample/YOLOX/python/yolox_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/python/yolox_opencv.py -------------------------------------------------------------------------------- /sample/YOLOX/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLOX/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOX/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/YOLOX/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOX/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLO_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/README.md -------------------------------------------------------------------------------- /sample/YOLO_world/pics/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/pics/zidane.jpg -------------------------------------------------------------------------------- /sample/YOLO_world/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/python/README.md -------------------------------------------------------------------------------- /sample/YOLO_world/python/clip/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/python/clip/clip.py -------------------------------------------------------------------------------- /sample/YOLO_world/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/python/utils.py -------------------------------------------------------------------------------- /sample/YOLO_world/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLO_world/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLO_world/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLO_world/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/README.md -------------------------------------------------------------------------------- /sample/YOLOv10/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv10/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv10/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv10/python/yolov10_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/python/yolov10_bmcv.py -------------------------------------------------------------------------------- /sample/YOLOv10/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLOv10/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOv10/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv10/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv11_det/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv11_det/README.md -------------------------------------------------------------------------------- /sample/YOLOv11_obb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv11_obb/README.md -------------------------------------------------------------------------------- /sample/YOLOv12_det/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv12_det/README.md -------------------------------------------------------------------------------- /sample/YOLOv34/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/README.md -------------------------------------------------------------------------------- /sample/YOLOv34/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv34/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv34/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv34/python/yolov34_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/python/yolov34_bmcv.py -------------------------------------------------------------------------------- /sample/YOLOv34/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLOv34/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOv34/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv34/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/README.md -------------------------------------------------------------------------------- /sample/YOLOv5/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv5/cpp/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/cpp/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5/pics/Flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/pics/Flowchart.png -------------------------------------------------------------------------------- /sample/YOLOv5/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv5/python/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/python/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv5/python/yolov5_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/python/yolov5_bmcv.py -------------------------------------------------------------------------------- /sample/YOLOv5/python/yolov5_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/python/yolov5_opencv.py -------------------------------------------------------------------------------- /sample/YOLOv5/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLOv5/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOv5/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/YOLOv5/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv5_fuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_fuse/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_fuse/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_fuse/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_fuse/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_fuse/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_fuse/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_fuse/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv5_fuse/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_fuse/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv5_opt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/cpp/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/cpp/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/python/README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/python/README_EN.md -------------------------------------------------------------------------------- /sample/YOLOv5_opt/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv5_opt/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOv5_opt/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv5_opt/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/README.md -------------------------------------------------------------------------------- /sample/YOLOv7/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv7/pic/zidane_cpp_bmcv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/pic/zidane_cpp_bmcv.jpg -------------------------------------------------------------------------------- /sample/YOLOv7/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv7/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv7/python/yolov7_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/python/yolov7_bmcv.py -------------------------------------------------------------------------------- /sample/YOLOv7/python/yolov7_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/python/yolov7_opencv.py -------------------------------------------------------------------------------- /sample/YOLOv7/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/YOLOv7/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/scripts/download.sh -------------------------------------------------------------------------------- /sample/YOLOv7/tools/compare_statis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/tools/compare_statis.py -------------------------------------------------------------------------------- /sample/YOLOv7/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv7/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv8_obb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_obb/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_cls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_cls/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_cls/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_cls/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_det/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_det/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_det/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_det/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_obb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_obb/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_obb/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_obb/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_obb/pics/P0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_obb/pics/P0006.jpg -------------------------------------------------------------------------------- /sample/YOLOv8_plus_seg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_seg/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_seg/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_seg/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_plus_seg_fuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_plus_seg_fuse/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_pose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_pose/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_pose/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_pose/cpp/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_pose/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_pose/python/README.md -------------------------------------------------------------------------------- /sample/YOLOv8_pose/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_pose/python/utils.py -------------------------------------------------------------------------------- /sample/YOLOv8_pose/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv8_pose/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/YOLOv9_det/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv9_det/README.md -------------------------------------------------------------------------------- /sample/YOLOv9_seg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/YOLOv9_seg/README.md -------------------------------------------------------------------------------- /sample/ppYOLOv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/README.md -------------------------------------------------------------------------------- /sample/ppYOLOv3/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/cpp/README.md -------------------------------------------------------------------------------- /sample/ppYOLOv3/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/python/README.md -------------------------------------------------------------------------------- /sample/ppYOLOv3/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/python/utils.py -------------------------------------------------------------------------------- /sample/ppYOLOv3/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/ppYOLOv3/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/scripts/download.sh -------------------------------------------------------------------------------- /sample/ppYOLOv3/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYOLOv3/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/ppYoloe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/README.md -------------------------------------------------------------------------------- /sample/ppYoloe/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/cpp/README.md -------------------------------------------------------------------------------- /sample/ppYoloe/docs/prepare_npz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/docs/prepare_npz.md -------------------------------------------------------------------------------- /sample/ppYoloe/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/python/README.md -------------------------------------------------------------------------------- /sample/ppYoloe/python/ppyoloe_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/python/ppyoloe_bmcv.py -------------------------------------------------------------------------------- /sample/ppYoloe/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/python/utils.py -------------------------------------------------------------------------------- /sample/ppYoloe/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/ppYoloe/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/scripts/download.sh -------------------------------------------------------------------------------- /sample/ppYoloe/tools/compare_acc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/tools/compare_acc.py -------------------------------------------------------------------------------- /sample/ppYoloe/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/tools/eval_coco.py -------------------------------------------------------------------------------- /sample/ppYoloe/tools/prepare_npz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/ppYoloe/tools/prepare_npz.py -------------------------------------------------------------------------------- /sample/segformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/README.md -------------------------------------------------------------------------------- /sample/segformer/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/cpp/README.md -------------------------------------------------------------------------------- /sample/segformer/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/python/README.md -------------------------------------------------------------------------------- /sample/segformer/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/segformer/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/scripts/download.sh -------------------------------------------------------------------------------- /sample/segformer/tools/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/segformer/tools/custom.py -------------------------------------------------------------------------------- /sample/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/README.md -------------------------------------------------------------------------------- /sample/yolact/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/cpp/README.md -------------------------------------------------------------------------------- /sample/yolact/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/python/README.md -------------------------------------------------------------------------------- /sample/yolact/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/python/utils.py -------------------------------------------------------------------------------- /sample/yolact/python/yolact_bmcv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/python/yolact_bmcv.py -------------------------------------------------------------------------------- /sample/yolact/python/yolact_opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/python/yolact_opencv.py -------------------------------------------------------------------------------- /sample/yolact/scripts/auto_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/scripts/auto_test.sh -------------------------------------------------------------------------------- /sample/yolact/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/scripts/download.sh -------------------------------------------------------------------------------- /sample/yolact/tools/eval_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/sample/yolact/tools/eval_coco.py -------------------------------------------------------------------------------- /scripts/auto_test_regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/scripts/auto_test_regression.sh -------------------------------------------------------------------------------- /scripts/demo_jenkins_review.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/scripts/demo_jenkins_review.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /tutorial/DPU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DPU/README.md -------------------------------------------------------------------------------- /tutorial/DPU/cpp/dpu_bmcv/dpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DPU/cpp/dpu_bmcv/dpu.cpp -------------------------------------------------------------------------------- /tutorial/DPU/cpp/dpu_bmcv/dpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DPU/cpp/dpu_bmcv/dpu.hpp -------------------------------------------------------------------------------- /tutorial/DPU/cpp/dpu_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DPU/cpp/dpu_bmcv/main.cpp -------------------------------------------------------------------------------- /tutorial/DPU/cpp/dpu_bmcv/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DPU/cpp/dpu_bmcv/utils.hpp -------------------------------------------------------------------------------- /tutorial/DWA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DWA/README.md -------------------------------------------------------------------------------- /tutorial/DWA/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DWA/cpp/README.md -------------------------------------------------------------------------------- /tutorial/DWA/cpp/dwa_bmcv/dwa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DWA/cpp/dwa_bmcv/dwa.cpp -------------------------------------------------------------------------------- /tutorial/DWA/cpp/dwa_bmcv/dwa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DWA/cpp/dwa_bmcv/dwa.hpp -------------------------------------------------------------------------------- /tutorial/DWA/cpp/dwa_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/DWA/cpp/dwa_bmcv/main.cpp -------------------------------------------------------------------------------- /tutorial/avframe_ocv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/avframe_ocv/README.md -------------------------------------------------------------------------------- /tutorial/avframe_ocv/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/avframe_ocv/cpp/README.md -------------------------------------------------------------------------------- /tutorial/avframe_ocv/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/avframe_ocv/cpp/main.cpp -------------------------------------------------------------------------------- /tutorial/blend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/blend/README.md -------------------------------------------------------------------------------- /tutorial/crop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/README.md -------------------------------------------------------------------------------- /tutorial/crop/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/cpp/README.md -------------------------------------------------------------------------------- /tutorial/crop/cpp/crop_bmcv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/cpp/crop_bmcv/main.cpp -------------------------------------------------------------------------------- /tutorial/crop/cpp/crop_sail/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/cpp/crop_sail/main.cpp -------------------------------------------------------------------------------- /tutorial/crop/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/python/README.md -------------------------------------------------------------------------------- /tutorial/crop/python/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/crop/python/crop.py -------------------------------------------------------------------------------- /tutorial/mmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/mmap/README.md -------------------------------------------------------------------------------- /tutorial/mmap/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/mmap/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /tutorial/mmap/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/mmap/cpp/README.md -------------------------------------------------------------------------------- /tutorial/mmap/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/mmap/cpp/main.cpp -------------------------------------------------------------------------------- /tutorial/ocv_avframe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_avframe/README.md -------------------------------------------------------------------------------- /tutorial/ocv_avframe/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_avframe/cpp/README.md -------------------------------------------------------------------------------- /tutorial/ocv_avframe/cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_avframe/cpp/main.cpp -------------------------------------------------------------------------------- /tutorial/ocv_jpubasic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_jpubasic/README.md -------------------------------------------------------------------------------- /tutorial/ocv_jpubasic/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_jpubasic/cpp/README.md -------------------------------------------------------------------------------- /tutorial/ocv_vidbasic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_vidbasic/README.md -------------------------------------------------------------------------------- /tutorial/ocv_vidbasic/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/ocv_vidbasic/cpp/README.md -------------------------------------------------------------------------------- /tutorial/resize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/resize/README.md -------------------------------------------------------------------------------- /tutorial/resize/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/resize/cpp/README.md -------------------------------------------------------------------------------- /tutorial/resize/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/resize/python/README.md -------------------------------------------------------------------------------- /tutorial/resize/python/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/resize/python/resize.py -------------------------------------------------------------------------------- /tutorial/stitch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/stitch/README.md -------------------------------------------------------------------------------- /tutorial/video_encode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/video_encode/README.md -------------------------------------------------------------------------------- /tutorial/video_encode/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophgo/sophon-demo/HEAD/tutorial/video_encode/cpp/README.md --------------------------------------------------------------------------------