- Temperature
- Degree of randomness in token selection
- Lower is more deterministic
- Higher gives more random output
- Top-K and top-P
- Nucelus sampling settings
- Restrict predicted next token to come from tokens with top predicted probabilities
- Top-K
- Select top K most likely tokens from model's predicted distribution
In case anyone else prefers to use Proxmox, here is how you can build the VMs and then import into Proxmox
Before starting, make sure you have QEMU and Packer installed. Also, make sure that the VirtIO driver ISO has been downloaded to Proxmox.
git clone https://github.com/rapid7/metasploitable3
cd metasploitable3
# install packer plugins
packer plugins install github.com/hashicorp/qemu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import requests | |
| from plex_api_client import PlexAPI | |
| from os import getenv | |
| from dotenv import load_dotenv | |
| import json | |
| from urllib.parse import urlencode | |
| load_dotenv() | |
| CID = getenv("CID") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| # MUST SET YOUR DIRECTORY ON THE FOLLOWING LINE - i.e. "C:\\Users\\User1\\Documents" | |
| DIRECTORY = "" | |
| def getFileNames(): | |
| filelist = [] # List of files that we will work on is stored here | |
| files = os.listdir(DIRECTORY) # Contains a list of all files in the directory | |
| for i in files: | |
| # Find all .md files, store names in filelist: |