Coder Social home page Coder Social logo

Comments (5)

avaz avatar avaz commented on June 23, 2024 3

From my experience what the load_from_checkpoint downloads extra is the models--xlm-roberta-large. You can download it yourself and save alongside the wmt20-comet-da model and set the environment variable TRANSFORMERS_CACHE to point to where the models--xlm-roberta-large is. This will avoid the download.
I'm using comet version 1.1.3.

from comet.

ricardorei avatar ricardorei commented on June 23, 2024 2

Yep exactly, The downloads you are observing are the hugging face XLM-R weights. You can also cache those weights to avoid download them multiple times.

from comet.

ricardorei avatar ricardorei commented on June 23, 2024

hmmm thats strange because the load_from_checkpoint function does not perform any download. Can you provide more information? for example a snipped of the script?

from comet.

ymoslem avatar ymoslem commented on June 23, 2024

Thanks, Ricardo!

Here is the whole script that I use:

# Calculate COMET
df = pd.DataFrame({"src":source_sentences, "mt":translations, "ref":references})
data = df.to_dict('records')
model_path = "/content/drive/MyDrive/models/wmt20-comet-da/checkpoints/model.ckpt"
model = load_from_checkpoint(model_path)
seg_scores, sys_score = model.predict(data, batch_size=128, gpus=1)
print("COMET:", round(sys_score*100, 2))

Here is a screenshot of what I see.

I think it does not download wmt20-comet-da, but it downloads that 2.24GB every time, and I am not sure what it is. Thanks!

from comet.

ymoslem avatar ymoslem commented on June 23, 2024

Thanks, @avaz and @ricardorei! This worked.

First, download XLM-RoBERTa.

from transformers import AutoModelForMaskedLM 
model = AutoModelForMaskedLM.from_pretrained("xlm-roberta-large", cache_dir="/content/drive/MyDrive/models/")

Then, set the cache folder for Transformers:

import os
os.environ['TRANSFORMERS_CACHE'] = "/content/drive/MyDrive/models/"

OR

export TRANSFORMERS_CACHE="/content/drive/MyDrive/models/"

Finally, install COMET

pip3 install unbabel-comet -q

from comet.

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.