Text Generator

免费增值
通过 lee101 | 已更新 한 달 전 | Text Analysis
Health Check

N/A

关注者:0
资源:
产品网站 使用条款
API 创建者:
Rapid account: Lee 101
lee101
lee101
登录并给 API 打分
打分:5 - 投票:1

README

Generate text, create chat bots, perform question answering, classification, language translation, sentiment analysis, autocomplete, prediction across a variety of domains via ‘prompt engineering’, asking questions in a familiar way to human conversation.

Under the hood we use very large language models trained on broad human language.

  • control stopping criteria and cost
  • max_length for a maximum amount of tokens
  • max_sentences for setting a max number of sentences, good for conversational agents or when you know how many sentences should be generated
  • stopping_sequences a list of sequences that once generated signal the end of text generation, give some examples of when these should appear in your prompt, these wont be output at the end if used to stop.
  • control the variety of results
  • get more results with number_of_results
  • higher top_p, lower top_k for high variety/creativity
  • low top_p and high top_k for consistency
  • low temperature for consistency, high for creativity
  • when generating shorter sequences you may want to choose settings that give higher consistency and are more likely, when generating long sequences you may want to use settings that are give more surprise/creativity, defaults should work well for both.