Giter Club home page Giter Club logo

Comments (3)

hhjin avatar hhjin commented on June 12, 2024 2

Thanks. I can get desired output after adding the tokenizer type. The 7B world cpp-q8_0 model runs with about 10 tokens/sec speed on my 16GB M1 mac book.


python rwkv/generate_completions.py  rwkv-cpp-readflow-7B-ctx32k-q8_0.bin  world
Loading world tokenizer
System info: AVX=0 AVX2=0 AVX512=0 FMA=0 NEON=1 ARM_FMA=1 F16C=0 FP16_VA=1 WASM_SIMD=0 BLAS=1 SSE3=0 VSX=0
Loading RWKV model
91 tokens in prompt

--- Generation 0 ---

#  rwkv.cpp

This is a port of [BlinkDL/RWKV-LM](https://github.com/BlinkDL/RWKV-LM) to [ggerganov/ggml](https://github.com/ggerganov/ggml).

Besides usual **FP32**, it supports **FP16** and **quantized INT4** inference on CPU. This project is **CPU only**.[

# Example

```cpp
#include "ggml.h"
#include "common.h"
#include "logger.h"

int main()
{
    // Load model
    model::Ptr model = model::load("E:/workspace/ggml/examples/yolo/yolo.onnx");
    // Convert input to float
    real input_data = 1.0;
    real input_data_f = model->input_to_float]

Took 9.785 sec, 97 ms per token

from rwkv.cpp.

schamane avatar schamane commented on June 12, 2024

Looks like you use wrong tokenizer...
Or wrong model. Try with raven.
Also use bigger one, maybe 3B

from rwkv.cpp.

saharNooby avatar saharNooby commented on June 12, 2024

Hi!

You are using RWKV World model, which uses world tokenizer. By default, generate_completions.py/ chat_with_bot.py uses 20B tokenizer, which will give garbage output when using it with the RWKV World model.

You need to explicitly specify world tokenizer when running the script:

python rwkv/chat_with_bot.py rwkv-cpp-world-1.5B-q8_0.bin world


Or wrong model. Try with raven.
Also use bigger one, maybe 3B

From my experience, even 1B5 models are fluent and (when used with the correct tokenizer) generate okay texts.

from rwkv.cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.