Views
No views yet
1from llama_cpp import Llama 2 3llm = Llama( 4 model_path="your-model-path.gguf", 5 n_ctx=2048, 6 n_threads=4 7) 8 9response = llm("분석: 군중 밀집 감지", max_tokens=256)