Bootstrapping QwQ works!!

This commit is contained in:
2025-04-02 16:37:17 +00:00
parent b4c08586ee
commit 156d3aa7d3
2 changed files with 4 additions and 2 deletions

View File

@@ -56,6 +56,7 @@ npm run build
ln -s "/root/sia/web/dist" "/root/static"
# Install SIA dependencies
cd /root/sia/desktop
source "/root/sia/scripts/install.sh"
# Add venvs to path in .bashrc
@@ -73,7 +74,8 @@ source /root/sia/scripts/add_venvs_to_path.sh
# Finetune model
echo "Finetuning model..."
train
train /root/models/bootstrap
ln -s /root/models/bootstrap /root/models/current
# Start SIA using restart script
echo "Run restart script..."

View File

@@ -18,7 +18,7 @@ from .dataset import Dataset
@dataclass
class Args:
def __init__(self, args: Optional[List[str]]):
def __init__(self, args: Optional[List[str]] = None):
parser = argparse.ArgumentParser(description='Train SIA model using QwQ')
parser.add_argument(
'--config',