GithubHelp home page GithubHelp logo

Comments (2)

yorkie avatar yorkie commented on May 28, 2024

Interesting working with TF_StringEncode and TF_StringDecode function, also find the calls to TF_StringEncodedSize is 2 for normal usage. Anyway, it works by this commit 74e2426.

from tensorflow-nodejs.

yorkie avatar yorkie commented on May 28, 2024

Oh 74e2426 just are the partial of this issue, reopening this.

The full design of this string tensor is: a string tensor is an array of strings, and every elements are encoded with the function TF_StringEncode, and the whole buffer structure are: elements offsets + elements buffer.

For example, if we want to encode a string: [ "foobar" ], it's:

offsets[1] + [ encode("foobar") ]

and [ "foobar", "beep" ]:

offsets[1, x] + [ encode("foobar"), encode("beep") ]

In offsets part, it's an array, too. every element is an uint64 to represent the offset of its elements in the whole buffer. That means the offsets length is the elements number.

from tensorflow-nodejs.

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.