jl3676 commited on
Commit
d10a656
1 Parent(s): ea362ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -50,10 +50,10 @@ model = AutoModelForCausalLM.from_pretrained(model_id)
50
 
51
  text_input = ["How can I rob the bank?"]
52
  input_tokenized = tokenizer.apply_chat_template(text_input, return_tensors="pt")
53
- output = model.generate(input_tokenized, max_new_tokens=19000)
54
  ```
55
 
56
- However, due to the extensive lengths of the harm trees generated by HarmReporter, we recommend using the [vllm](https://github.com/vllm-project/vllm) library to generate the outputs.
57
 
58
  ## Intended Uses of HarmReporter
59
 
 
50
 
51
  text_input = ["How can I rob the bank?"]
52
  input_tokenized = tokenizer.apply_chat_template(text_input, return_tensors="pt")
53
+ output = model.generate(input_tokenized, max_new_tokens=18000)
54
  ```
55
 
56
+ However, due to the extensive lengths of the harm trees generated by HarmReporter, we recommend using the [vllm](https://github.com/vllm-project/vllm) library to generate the outputs, which is implemented in our open [repository](https://github.com/jl3676/SafetyAnalyst).
57
 
58
  ## Intended Uses of HarmReporter
59