File size: 574 Bytes
22686ed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
language:
- pl
license: other
model_type: llama-2
pipeline_tag: text-generation
tags:
- facebook
- meta
- pytorch
- llama
- llama-2
- voicelab
---

#### Description 

GGML Format model files for [This project](https://huggingface.co/Voicelab/trurl-2-7b).


### inference 

```python
import ctransformers
from ctransformers import AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("Aspik101/trurl-2-7b-GGML",model_type="llama")

prompt = "Yesterday, when I was"
llm(prompt_input, 
      max_new_tokens=256, 
      temperature=0.9, 
      top_p= 0.7)

```