Giter VIP home page Giter VIP logo

Comments (4)

houten11 avatar houten11 commented on August 11, 2024

If you want to reuse your custom function or operators, they'll have to accept Expression as a input parameter.

func WordSimilarity(word1, word2 StringExpression) FloatExpression {
	return FloatExp(Func("word_similarity", word1, word2))
}

Note the use of Func - https://github.com/go-jet/jet/wiki/FAQ#how-to-call-custom-or-currently-unsupported-sql-function

Now you can call this function as:

WordSimilarity(String("John"), Actor.LastName)
WordSimilarity(String("James"), LTRIM(Actor.FirstName, String("A")))
etc...

For CosineDistance operator you can use the new CustomExpression function - #355 (comment)
This method is merged to the master branch but is not yet part of the latest release.

func CosineDistance(vector1, vector2 Expression) FloatExpression {
	return FloatExp(CustomExpression(vector1, Token("<=>"), vector2))
}

Since pgvector is currently unsupported, you'll have to add it yourself:

func PgVector(array ...string) Expression {
	return Raw("#1", RawArgs{"#1": <your pgvector type>})
}

Finally, you should be able to write:

CosineDistance(PgVector("john", "doe"), PgVector("mike", "jones", "jim", "nate"))
CosineDistance(PgVector("john"), Actor.PgVectorColumn)
etc...

from jet.

aghchan avatar aghchan commented on August 11, 2024

thanks for the suggestion @houten11! I should have clarified further in my example. I want to be able to be able to sum the two functions together without writing a new function altogether (going to use this in the select clause) e.g. CosineDistance() + WordSimilarity()

my current workaround is not wrapping the raw queries into the expression types and then wrapping it after appending them together

from jet.

houten11 avatar houten11 commented on August 11, 2024

Both functions returns FloatExpression, meaning you can write:

WordSimilarity(String("John"), Actor.LastName).ADD(
    CosineDistance(PgVector("john", "doe"), PgVector("mike", "jones", "jim", "nate")))

from jet.

aghchan avatar aghchan commented on August 11, 2024

ahhh I totally goofed on that. Just need to use the FloatExpression instead of the generic Expression. thanks!

from jet.

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.