Code Monkey home page Code Monkey logo

Comments (5)

lewtun avatar lewtun commented on May 29, 2024 2

Thanks for the snippet!

Yes, SetFitModel isn't (yet) compatible with the pipeline() function from transformers. Instead you can run inference as follows:

# Save trained model to disk
trainer.model.save_pretrained("tuned-model")
# Load SetFit model
tuned_model = SetFitModel.from_pretrained("tuned-model")
# Run inference
tuned_model(["i didnt feel humiliated", "i feel romantic too", "im grabbing a minute to post i feel greedy wrong"])

from setfit.

lewtun avatar lewtun commented on May 29, 2024

Hey @jrivd thanks for reporting the issue! Could you please share a code snippet with how the error is being generated?

from setfit.

jrivd avatar jrivd commented on May 29, 2024

Sure, there it is:

tokenizer = AutoTokenizer.from_pretrained("sentence-transformers/paraphrase-mpnet-base-v2")
model = SetFitModel.from_pretrained("sentence-transformers/paraphrase-mpnet-base-v2")

trainer = SetFitTrainer(
    model=model,
    train_dataset=hg_dataset_train,
    eval_dataset=hg_dataset_test,
    loss_class=CosineSimilarityLoss,
    batch_size=16,
    num_epochs=1,
    num_iterations=2,
)

!echo CUDA_VISIBLE_DEVICES

trainer.train()

metrics = trainer.evaluate()

torch.save(trainer, 'model.pt')

saved_model = torch.load('model.pt')

pipe = pipeline(task="sentiment-analysis", model=saved_model, tokenizer=tokenizer)

>>>'SetFitTrainer' object has no attribute 'config'

from setfit.

jrivd avatar jrivd commented on May 29, 2024

from setfit.

lewtun avatar lewtun commented on May 29, 2024

Great! Closing this issue for now - feel free to reopen if needed :)

from setfit.

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.