# pytorch_playground **Repository Path**: mirrors_jeromeetienne/pytorch_playground ## Basic Information - **Project Name**: pytorch_playground - **Description**: Various experimentation using pytorch - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-03 - **Last Updated**: 2025-10-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # various pytorch examples ## Setup a virtual environment Create a virtual environment ``` python -m venv _my_venv ``` Activate the virtual environment ``` source ./_my_venv/bin/activate ```