Code Monkey home page Code Monkey logo

Comments (4)

filipecosta90 avatar filipecosta90 commented on September 24, 2024

Hi there @Distortedlogic please notice you need to import either specific parts or all from redisai-js given there is no default import.
Regarding a sample code, hope the following one helps ( included tensorset and tensorget given they dont need any extra model/script ):

import redis = require('redis');
import redisai = require('redisai-js');

console.log('Sample https://github.com/RedisAI/redisai-js/issues/22!');

(async () => {
  const nativeClient: redis.RedisClient = redis.createClient(6379, 'localhost');
  const aiclient = new redisai.Client(nativeClient);
  const tensorA = new redisai.Tensor(redisai.Dtype.float32, [1, 2], [3, 5]);
  const result = await aiclient.tensorset('tensorA', tensorA);

  // AI.TENSORSET result: OK
  console.log(`AI.TENSORSET result: ${result}`);

  const tensorGetReply = await aiclient.tensorget('tensorA');

  // AI.TENSORGET reply: datatype FLOAT shape [1,2] , data [3,5]
  console.log(
    `AI.TENSORGET reply: datatype ${tensorGetReply.dtype} shape [${tensorGetReply.shape}] , data [${tensorGetReply.data}]`
  );
  await aiclient.end();
})();

Sample output ( transpiling first ):

$ npm run compile

> [email protected] compile /tmp/sample-redisai-js-22
> tsc

$ node build/src/index.js
Sample https://github.com/RedisAI/redisai-js/issues/22!
AI.TENSORSET result: OK
AI.TENSORGET reply: datatype FLOAT shape [1,2] , data [3,5]

PS, this client tests are packed with several examples of tensorset,tensorget, modelrun, scriptrun, etc... - they can be of help for more complex examples also. https://github.com/RedisAI/redisai-js/blob/master/tests/test_client.ts

Can you please check if the above sample runs accordingly after transpiling. Will gladly share a sample GH repo if required with all structure if required.
Kind regards,

from redisai-js.

Distortedlogic avatar Distortedlogic commented on September 24, 2024

I tried

import redisai = require('redisai-js');
import {Client, Backend} from 'redisai-js';

I still get the same error

Error: Cannot find module './backend'

here is the command I run to start my app

nodemon --exec ts-node src/index.ts

Must it be transpiled to JS, n not compatible with ts-node? just throwin a thought out there

from redisai-js.

CICCIOSGAMINO avatar CICCIOSGAMINO commented on September 24, 2024

I think you're using the version 4 of redis module? I've experienced the same issue with the version 4 of redis module, so i've solved with the ^3.1.2 as project's dependency.

from redisai-js.

JeremySazMining avatar JeremySazMining commented on September 24, 2024

thanks for the idea but I just quit tryina use it.. Redis is slacking way too much with its AI stuff plus the company's become taken over with political agendas .. I even went as far as making PRs, talked with a team member to make sure it looked good, and just never got merged

from redisai-js.

Related Issues (11)

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.