TheLartians /
ModernCppStarter
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
93/100 healthLoading repository data…
PRITHIVSAKTHIUR / repository
A C++ project wrapper around a rich Web App for Qwen3.5 and Qwen3-VL models. Powered by pybind11 and an embedded native C++ HTTP server (httplib).
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A C++ project wrapper around a rich Web App for Qwen3.5 and Qwen3-VL models. Powered by pybind11 and an embedded native C++ HTTP server (httplib).
It provides a modern GUI for:

mkdir build
cd build
cmake ..
cmake --build . --config Release
# By default runs Qwen3_5ForConditionalGeneration model: prithivMLmods/Qwen3.5-0.8B-Unredacted-MAX
./build/Release/visionapp.exe
# Or use specific architectures
./build/Release/visionapp.exe --model_name Qwen/Qwen3-VL-2B-Instruct --arch Qwen3VLForConditionalGeneration --port 7860
You can easily run this C++ application in Google Colab. Colab already provides the essential tools (Python 3, GCC, and CMake).
# Clone the repository
!git clone https://github.com/PRITHIVSAKTHIUR/Qwen3.5-Vision.cpp.git
%cd Qwen3.5-Vision.cpp
# Install dependencies (Python dev headers & libraries)
!apt-get update && apt-get install -y python3-dev
!pip install pybind11 torch transformers pillow torchvision
# Build the project
!mkdir build
%cd build
!cmake ..
!cmake --build . --config Release
# Run the executable (replace arguments with your specific model details)
!./visionapp --model_name prithivMLmods/Qwen3.5-0.8B-Unredacted-MAX \
--arch Qwen3_5ForConditionalGeneration \
--port 7860
Selected from shared topics, language and repository description—not editorial ratings.
TheLartians /
🚀 Kick-start your C++! A template for modern C++ projects using CMake, CI, code coverage, clang-format, reproducible dependency management and much more.
93/100 healthfilipdutescu /
A template for modern C++ projects using CMake, Clang-Format, CI, unit testing and more, with support for downstream inclusion.
88/100 healthabdes /
A modern cmake starter project for C++ with a complete build lifecycle, testing, dependency management, etc. Portable across Linux, OS X and Windows.
79/100 healththreeal /
A minimalistic GitHub repository template to kickstart your C++ project
54/100 healthelibroftw /
A C++ project that is platform and IDE agnostic made possible by using vcpkg and cmake.
50/100 healthAstrodynamic /
This project implements substring search and sequence alignment algorithms for molecular sequences analysis. It includes the Rabin-Karp algorithm for substring search and the Needleman-Wunsch algorithm for sequence alignment. Developed in C++17, the code follows Google Style and includes a Makefile for building and testing the program.
50/100 health