Giter VIP home page Giter VIP logo

Comments (2)

matteo-grella avatar matteo-grella commented on August 25, 2024

Hey @bonedaddy,

thanks for your time experimenting with spaGO!

For now, I implemented the BERT server to work with a single model:

type Server struct {
	model *bert.Model
	port  int
}

The server structure may be modified to support multiple models simultaneously. For example, using a map whose keys are the names of loaded models. Something like:

type Server struct {
	models map[string]*bert.Model
	port  int
}

However, this would complicate the loading phase and especially the routes.

This

http://127.0.0.1:1987/answer

would become something like

http://127.0.0.1:1987/MODEL_NAME/answer

I'm not sure adding this functionality is worth it. What do you think?

from spago.

bonedaddy avatar bonedaddy commented on August 25, 2024

Ah I see. Is there any reason why it wouldn't be advantageous to run the requests made to the BERT server against multiple models, and in cases like answer requests, the client-side application could then use whatever response has the highest confidence score.

It would allow you to either initiate the BERT server with one model, or more than one model and have pseudocode like this:

var answers []answerStruct
for _, model := range Server::models {
   result := model.askQuestion
   answers = append(answers, result)
}

I'm not sure if this would be useful at all, but it might allow more accurate results to a wider variety of questions and answers, at the cost of lower performance

from spago.

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.