Giter Site home page Giter Site logo

Comments (3)

tirthasheshpatel avatar tirthasheshpatel commented on September 26, 2024 1

The output is truncated if the length of the tokens in the prompt is greater than the sequence length. So, only the leftmost sequence_length number of tokens will be present in the output. Here's an example:

from keras_nlp.models import MistralCausalLMPreprocessor

prompt = "This is how KerasNLP tokenizers work."

tokenizer = MistralCausalLMPreprocessor.from_preset("mistral_7b_en")

tokenizer(prompt, sequence_length=15)[0]['token_ids']
# <tf.Tensor: shape=(15,), dtype=int32, numpy=
# array([    1,   851,   349,   910,   524, 11234, 28759, 11661,  6029,
#        17916,   771,     0,     0,     0,     0], dtype=int32)>

tokenizer(prompt, sequence_length=5)[0]['token_ids']
# <tf.Tensor: shape=(5,), dtype=int32, numpy=array([  1, 851, 349, 910, 524], dtype=int32)>

Let me know if this answers your question!

from keras-nlp.

mostafamdy avatar mostafamdy commented on September 26, 2024

ThanksπŸ˜„

from keras-nlp.

tirthasheshpatel avatar tirthasheshpatel commented on September 26, 2024

Closing it, if you have any other questions, feel free to reopen!

from keras-nlp.

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.