Coder Social home page Coder Social logo

`filter` score about alfred-workflow HOT 4 CLOSED

deanishe avatar deanishe commented on May 20, 2024
`filter` score

from alfred-workflow.

Comments (4)

deanishe avatar deanishe commented on May 20, 2024

That makes a lot of sense. The ranking maths in filter definitely needs improvement.

Could you rebase your fork first, however? Should make a merge easier/possible.

from alfred-workflow.

fractaledmind avatar fractaledmind commented on May 20, 2024

I'm working on rebasing. Also, testing some other elements of filter. Will pull after.

from alfred-workflow.

fractaledmind avatar fractaledmind commented on May 20, 2024

I've found another bug. It relates to the scoring, so instead of starting a new Issue, I'm posting here.

Essentially, filter will chop the results list when multiple items have the same score and same value:

if score > 0:
    results[(100.0 / score, value.lower())] = (item, score, rule)

With ZotQuery this is actually a common occurrence. For example, whenever the scope is simply creators' last names, any items written only by "Smith" will have the value.lower() = "smith". If the query was "smith", then each result will have the same score and same value, so whenever the filter sorts on keys:

# sort on keys, then discard the keys
keys = sorted(results.keys(), reverse=ascending)
results = [results.get(k) for k in keys]

only one item will remain.

Proposed Solution
Use enumeration to make sort keys item unique. So, for example, at the opening of the for block:

for i, item in enumerate(items):
    rule = None
    score = 0
    value = key(item)

This would allow for change in the key function like so:

if score > 0:
    results[(100.0 / score, value.lower(), i)] = (item, score, rule)

from alfred-workflow.

deanishe avatar deanishe commented on May 20, 2024

The solution was included in your other pull request.

from alfred-workflow.

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.