Update README.md
Browse files
README.md
CHANGED
@@ -8,4 +8,44 @@ language:
|
|
8 |
This is a mix between teknium/OpenHermes-2.5-Mistral-7B and Intel/neural-chat-7b-v3-3.
|
9 |
Using mistralai/Mistral-7B-v0.1 as the base model.
|
10 |
|
11 |
-
This Mixture of Expert was done using `mergekit` method.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
This is a mix between teknium/OpenHermes-2.5-Mistral-7B and Intel/neural-chat-7b-v3-3.
|
9 |
Using mistralai/Mistral-7B-v0.1 as the base model.
|
10 |
|
11 |
+
This Mixture of Expert was done using `mergekit` method.
|
12 |
+
|
13 |
+
# Getting Started
|
14 |
+
|
15 |
+
```python
|
16 |
+
import torch
|
17 |
+
from transformers import pipeline
|
18 |
+
|
19 |
+
pipe = pipeline("text-generation", model="ibndias/NeuralHermes-MoE-2x7B",torch_dtype=torch.bfloat16, device_map="auto")
|
20 |
+
|
21 |
+
prompt = """<|system|> You are a helpful penetration testing assistant.
|
22 |
+
<|user|>
|
23 |
+
Write me bash script to scan ip 192.3.1.4 with nmap only port that ends with 9 from 1-100.
|
24 |
+
<|assistant|>
|
25 |
+
"""
|
26 |
+
outputs = pipe(prompt, max_new_tokens=512, do_sample=True, temperature=0.2, top_k=50, top_p=0.95)
|
27 |
+
print(outputs[0]["generated_text"])
|
28 |
+
```
|
29 |
+
|
30 |
+
Output:
|
31 |
+
```
|
32 |
+
<|system|> You are a helpful penetration testing assistant.
|
33 |
+
<|user|>
|
34 |
+
Write me bash script to scan ip 192.3.1.4 with nmap only port that ends with 9 from 1-100.
|
35 |
+
<|assistant|>
|
36 |
+
Sure, here's a bash script that scans the specified IP address with nmap for open ports that end with 9 from 1 to 100:
|
37 |
+
```
|
38 |
+
#!/bin/bash
|
39 |
+
IP_ADDRESS="192.3.1.4"
|
40 |
+
START_PORT=1
|
41 |
+
END_PORT=100
|
42 |
+
for ((i=$START_PORT; i<=$END_PORT; i++)); do
|
43 |
+
PORT=$i
|
44 |
+
if [[ $PORT % 10 == 9 ]]; then
|
45 |
+
nmap -p $PORT $IP_ADDRESS
|
46 |
+
fi
|
47 |
+
done
|
48 |
+
```
|
49 |
+
Save the script with a.sh extension (e.g., scan_ports.sh) and make it executable by running `chmod +x scan_ports.sh`. Then, run the script by executing `./scan_ports.sh`.
|
50 |
+
...
|
51 |
+
```
|