shared.py 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. import argparse
  2. model = None
  3. tokenizer = None
  4. model_name = "None"
  5. lora_name = "None"
  6. soft_prompt_tensor = None
  7. soft_prompt = False
  8. is_RWKV = False
  9. # Chat variables
  10. history = {'internal': [], 'visible': []}
  11. character = 'None'
  12. stop_everything = False
  13. processing_message = '*Is typing...*'
  14. # UI elements (buttons, sliders, HTML, etc)
  15. gradio = {}
  16. # Generation input parameters
  17. input_params = []
  18. # For restarting the interface
  19. need_restart = False
  20. settings = {
  21. 'max_new_tokens': 200,
  22. 'max_new_tokens_min': 1,
  23. 'max_new_tokens_max': 2000,
  24. 'name1': 'Person 1',
  25. 'name2': 'Person 2',
  26. 'context': 'This is a conversation between two people.',
  27. 'stop_at_newline': True,
  28. 'chat_prompt_size': 2048,
  29. 'chat_prompt_size_min': 0,
  30. 'chat_prompt_size_max': 2048,
  31. 'chat_generation_attempts': 1,
  32. 'chat_generation_attempts_min': 1,
  33. 'chat_generation_attempts_max': 5,
  34. 'name1_pygmalion': 'You',
  35. 'name2_pygmalion': 'Kawaii',
  36. 'context_pygmalion': "Kawaii's persona: Kawaii is a cheerful person who loves to make others smile. She is an optimist who loves to spread happiness and positivity wherever she goes.\n<START>",
  37. 'stop_at_newline_pygmalion': False,
  38. 'default_extensions': [],
  39. 'chat_default_extensions': ["gallery"],
  40. 'presets': {
  41. 'default': 'NovelAI-Sphinx Moth',
  42. 'pygmalion-*': 'Pygmalion',
  43. 'RWKV-*': 'Naive',
  44. },
  45. 'prompts': {
  46. 'default': 'Common sense questions and answers\n\nQuestion: \nFactual answer:',
  47. '^(gpt4chan|gpt-4chan|4chan)': '-----\n--- 865467536\nInput text\n--- 865467537\n',
  48. '(rosey|chip|joi)_.*_instruct.*': 'User: \n',
  49. 'oasst-*': '<|prompter|>Write a story about future of AI development<|endoftext|><|assistant|>'
  50. },
  51. 'lora_prompts': {
  52. 'default': 'Common sense questions and answers\n\nQuestion: \nFactual answer:',
  53. 'alpaca-lora-7b': "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n### Instruction:\nWrite a poem about the transformers Python library. \nMention the word \"large language models\" in that poem.\n### Response:\n"
  54. }
  55. }
  56. def str2bool(v):
  57. if isinstance(v, bool):
  58. return v
  59. if v.lower() in ('yes', 'true', 't', 'y', '1'):
  60. return True
  61. elif v.lower() in ('no', 'false', 'f', 'n', '0'):
  62. return False
  63. else:
  64. raise argparse.ArgumentTypeError('Boolean value expected.')
  65. parser = argparse.ArgumentParser(formatter_class=lambda prog: argparse.HelpFormatter(prog,max_help_position=54))
  66. parser.add_argument('--model', type=str, help='Name of the model to load by default.')
  67. parser.add_argument('--lora', type=str, help='Name of the LoRA to apply to the model by default.')
  68. parser.add_argument('--notebook', action='store_true', help='Launch the web UI in notebook mode, where the output is written to the same text box as the input.')
  69. parser.add_argument('--chat', action='store_true', help='Launch the web UI in chat mode.')
  70. parser.add_argument('--cai-chat', action='store_true', help='Launch the web UI in chat mode with a style similar to Character.AI\'s. If the file img_bot.png or img_bot.jpg exists in the same folder as server.py, this image will be used as the bot\'s profile picture. Similarly, img_me.png or img_me.jpg will be used as your profile picture.')
  71. parser.add_argument('--cpu', action='store_true', help='Use the CPU to generate text.')
  72. parser.add_argument('--load-in-8bit', action='store_true', help='Load the model with 8-bit precision.')
  73. parser.add_argument('--load-in-4bit', action='store_true', help='DEPRECATED: use --gptq-bits 4 instead.')
  74. parser.add_argument('--gptq-bits', type=int, default=0, help='Load a pre-quantized model with specified precision. 2, 3, 4 and 8bit are supported. Currently only works with LLaMA and OPT.')
  75. parser.add_argument('--gptq-model-type', type=str, help='Model type of pre-quantized model. Currently only LLaMa and OPT are supported.')
  76. parser.add_argument('--bf16', action='store_true', help='Load the model with bfloat16 precision. Requires NVIDIA Ampere GPU.')
  77. parser.add_argument('--auto-devices', action='store_true', help='Automatically split the model across the available GPU(s) and CPU.')
  78. parser.add_argument('--disk', action='store_true', help='If the model is too large for your GPU(s) and CPU combined, send the remaining layers to the disk.')
  79. parser.add_argument('--disk-cache-dir', type=str, default="cache", help='Directory to save the disk cache to. Defaults to "cache".')
  80. parser.add_argument('--gpu-memory', type=int, nargs="+", help='Maxmimum GPU memory in GiB to be allocated per GPU. Example: --gpu-memory 10 for a single GPU, --gpu-memory 10 5 for two GPUs.')
  81. parser.add_argument('--cpu-memory', type=int, help='Maximum CPU memory in GiB to allocate for offloaded weights. Must be an integer number. Defaults to 99.')
  82. parser.add_argument('--flexgen', action='store_true', help='Enable the use of FlexGen offloading.')
  83. parser.add_argument('--percent', type=int, nargs="+", default=[0, 100, 100, 0, 100, 0], help='FlexGen: allocation percentages. Must be 6 numbers separated by spaces (default: 0, 100, 100, 0, 100, 0).')
  84. parser.add_argument("--compress-weight", action="store_true", help="FlexGen: activate weight compression.")
  85. parser.add_argument("--pin-weight", type=str2bool, nargs="?", const=True, default=True, help="FlexGen: whether to pin weights (setting this to False reduces CPU memory by 20%%).")
  86. parser.add_argument('--deepspeed', action='store_true', help='Enable the use of DeepSpeed ZeRO-3 for inference via the Transformers integration.')
  87. parser.add_argument('--nvme-offload-dir', type=str, help='DeepSpeed: Directory to use for ZeRO-3 NVME offloading.')
  88. parser.add_argument('--local_rank', type=int, default=0, help='DeepSpeed: Optional argument for distributed setups.')
  89. parser.add_argument('--rwkv-strategy', type=str, default=None, help='RWKV: The strategy to use while loading the model. Examples: "cpu fp32", "cuda fp16", "cuda fp16i8".')
  90. parser.add_argument('--rwkv-cuda-on', action='store_true', help='RWKV: Compile the CUDA kernel for better performance.')
  91. parser.add_argument('--no-stream', action='store_true', help='Don\'t stream the text output in real time.')
  92. parser.add_argument('--settings', type=str, help='Load the default interface settings from this json file. See settings-template.json for an example. If you create a file called settings.json, this file will be loaded by default without the need to use the --settings flag.')
  93. parser.add_argument('--extensions', type=str, nargs="+", help='The list of extensions to load. If you want to load more than one extension, write the names separated by spaces.')
  94. parser.add_argument('--listen', action='store_true', help='Make the web UI reachable from your local network.')
  95. parser.add_argument('--listen-port', type=int, help='The listening port that the server will use.')
  96. parser.add_argument('--share', action='store_true', help='Create a public URL. This is useful for running the web UI on Google Colab or similar.')
  97. parser.add_argument('--auto-launch', action='store_true', default=False, help='Open the web UI in the default browser upon launch.')
  98. parser.add_argument('--verbose', action='store_true', help='Print the prompts to the terminal.')
  99. args = parser.parse_args()
  100. # Provisional, this will be deleted later
  101. if args.load_in_4bit:
  102. print("Warning: --load-in-4bit is deprecated and will be removed. Use --gptq-bits 4 instead.\n")
  103. args.gptq_bits = 4