--- license: openrail language: - en pipeline_tag: text-generation library_name: transformers --- ## Original model card Buy me a coffee if you like this project ;) #### Description GGML Format model files for [This project](https://huggingface.co/heegyu/WizardVicuna-Uncensored-3B-0719). ### inference ```python import ctransformers from ctransformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained(output_dir, ggml_file, gpu_layers=32, model_type="llama") manual_input: str = "Tell me about your last dream, please." llm(manual_input, max_new_tokens=256, temperature=0.9, top_p= 0.7) ``` Base Model: togethercomputer/RedPajama-INCITE-Base-3B-v1 Usage ``` ### Human: your instruction ### ASSISANT: output will be generated and ended with <|endoftext|> ```