├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── images ├── Rectangle-1.png ├── demo_cli.gif ├── llava_example_cmp.png ├── llava_logo.png └── llava_v1_5_radar.jpg └── src ├── clip.rs ├── clip_image_processor.rs ├── config.rs ├── constants.rs ├── conversation.rs ├── llama.rs ├── main.rs ├── model.rs └── utils.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/README.md -------------------------------------------------------------------------------- /images/Rectangle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/images/Rectangle-1.png -------------------------------------------------------------------------------- /images/demo_cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/images/demo_cli.gif -------------------------------------------------------------------------------- /images/llava_example_cmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/images/llava_example_cmp.png -------------------------------------------------------------------------------- /images/llava_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/images/llava_logo.png -------------------------------------------------------------------------------- /images/llava_v1_5_radar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/images/llava_v1_5_radar.jpg -------------------------------------------------------------------------------- /src/clip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/clip.rs -------------------------------------------------------------------------------- /src/clip_image_processor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/clip_image_processor.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/conversation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/conversation.rs -------------------------------------------------------------------------------- /src/llama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/llama.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/model.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwanqq/candle-llava/HEAD/src/utils.rs --------------------------------------------------------------------------------