Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 419 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 419 Bytes

GGML Examples

Examples of inference of popular networks like DNN, RNN, LSTM, etc implemented in GGML.

Models

  • RNN Text Generation: Model is trained with Tensorflow, then exported to binary file. A GRU cell is implemented with GGML with the graph contains only the single GRU Cell. A simple for-loop is used to generate token by token.
  • MobileVit: This is the conversion of huggingface.co's TFMobileViT to GGML.