Giter VIP home page Giter VIP logo

trice's People

Contributors

gooodte avatar zxlzr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

zxlzr

trice's Issues

Experimental Setup in HotpotQA

Hi,

I came across your blog post (https://www.zjukg.org/project/TRICE/) and noticed that you conducted experiments using the HotpotQA dataset. I have a question regarding the experimental setup.

In the results table, it mentions "Unseen Tool". Does this mean that a different search engine was used compared to the WikiSearch used for datasets like WebQuestion and NaturalQuestion? If so, could you please specify which search engine was used?

Thank you!

Ryoma Obara

bugs in math evaluation

there are some bugs in the math evaluation:

this is the code to postprocess answers without calculator usage.

            sentences = response.split(".")
            sentences = [s for s in sentences if s != ""]
            pred_sentence = sentences[-1] if len(sentences) > 0 else ""
            pattern = re.compile(r"-?[1-9]\d*")
            pred = pattern.findall(pred_sentence)
            pred = int(pred[-1].replace(",", "")) if len(pred) > 0 else None
  1. The regex does parse large number with comma incorrectly, e.g. 100,000 as 100. So even if the model produces the correct answer, it would not match against the gold answer. Out of the 1785 dev instances, 14 have a comma in them.
  2. The "pred" number is casted to int such that the model without calculator can never be correct if the gold answer is a float (9/1785).

If the numbers in Table 1 for the Alpaca-LoRA-7B baseline without calculator are computed with this script they are not accurate and should be higher.

EDIT:
Just saw that most of the gold answers with float have a 0 decimal. Only (9/1785) are affected, so the numbers in Table 1 would change only a little.

What version of vicuna-7b

What version of vicuna-7b is it exactly that you provide the lora weights for? In the adapter config it only says "/data/qiaoshuofei/PLMs/vicuna-7b", but it is not clear if this is v1.1 v1.3 etc

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.