Views
No views yet
./main -m risk-assessment-gguf-model.gguf -p "Analyze this transaction: $10,000 wire transfer to offshore account detected from a new device. What is the risk level?"1from llama_cpp import Llama
2
3model = Llama(model_path="risk-assessment-gguf-model.gguf")
4prompt = "Analyze this transaction: $10,000 wire transfer to offshore account detected from a new device. What is the risk level?"
5output = model(prompt)
6print(output)1@misc{riskclassifier2024,
2 title={Risk Assessment LLaMA Model (GGUF)},
3 author={Theeseus AI},
4 year={2024},
5 publisher={HuggingFace},
6 url={https://huggingface.co/theeseus-ai/RiskClassifier}
7}