hf_ez_conversational_local_inference: Conversational Local Inference

View source: R/ez.R

hf_ez_conversational_local_inferenceR Documentation

Conversational Local Inference

Description

Conversational Local Inference

Usage

hf_ez_conversational_local_inference(
  text,
  generated_responses = NULL,
  past_user_inputs = NULL,
  min_length = NULL,
  max_length = NULL,
  top_k = NULL,
  top_p = NULL,
  temperature = 1,
  max_time = NULL,
  tidy = TRUE,
  ...
)

Arguments

text

The last input from the user in the conversation.

generated_responses

A list of strings corresponding to the earlier replies from the model.

past_user_inputs

A list of strings corresponding to the earlier replies from the user. Should be of the same length of generated_responses.

min_length

(Default: None). Integer to define the minimum length in tokens of the output summary.

max_length

(Default: None). Integer to define the maximum length in tokens of the output summary.

top_k

(Default: None). Integer to define the top tokens considered within the sample operation to create new text.

top_p

(Default: None). Float to define the tokens that are within the sample operation of text generation. Add tokens in the sample for more probable to least probable until the sum of the probabilities is greater than top_p.

temperature

(Default: 1.0). Float (0.0-100.0). The temperature of the sampling operation. 1 means regular sampling, 0 means always take the highest score, 100.0 is getting closer to uniform probability.

max_time

(Default: None). Float (0-120.0). The amount of time in seconds that the query should take maximum. Network can cause some overhead so it will be a soft limit.

repetition_penalty

(Default: None). Float (0.0-100.0). The more a token is used within generation the more it is penalized to not be picked in successive generation passes.

Value

The results of the inference

See Also

https://huggingface.co/docs/transformers/main/en/pipeline_tutorial


farach/huggingfaceR documentation built on Feb. 4, 2023, 10:31 p.m.