我正在为text-generation
模型使用python huggingface transformers
库,我需要知道如何实现我正在使用的generator()
函数中的stopping_criteria
参数。
我在此文档中找到了stopping_criteria
参数:https://huggingface.co/transformers/main_classes/pipelines.html#transformers.TextGenerationPipeline
问题是,我只是不知道如何实施它。
我的代码:
from transformers import pipeline
generator = pipeline('text-generation', model='EleutherAI/gpt-neo-125M')
stl = StoppingCriteria(['###'])
res = generator(prompt, do_sample=True,stopping_criteria = stl)
1条答案
按热度按时间6jjcrrmo1#
这两种方法对我很有效。当你想停止时,
your_condition
为True。或