import DialogEx from "./DialogEx"; import DialogTitle from "@mui/material/DialogTitle"; import DialogContent from "@mui/material/DialogContent"; import Toolbar from "@mui/material/Toolbar"; import IconButtonEx from "./IconButtonEx"; import ArrowBackIcon from "@mui/icons-material/ArrowBack"; import Typography from "@mui/material/Typography"; import Link from "@mui/material/Link"; function GuitarMlHelpDialog(props: { open: boolean; onClose: () => void; }) { const { open, onClose } = props; return ( { onClose(); }} onClose={() => { onClose(); }} open={open}> { onClose(); }} > TONE3000 Help
The GuitarML Tone Library Project provides a substantial collection of high-quality neural amp models for use in plugins that use the ML model file format. To use GuitarML models with TooB ML, you must first download the collection of models from the Guitar ML website by clicking on the link. This should download a file named "Proteus_Tone_Packs.zip" into your browser's Downloads directory. You must then upload the downloaded zip file, found in your browser's Download directory to the Pipedal server using the Upload button in PiPedal's file browser dialog. PiPedal automatically extracts bundles of model files from zip archives, so manual extraction is unnecessary. Please consider sponsoring the GuitarML project in order to support the ongoing development of the Tone Library.
); } export default GuitarMlHelpDialog;