mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 05:26:36 +00:00
fb5191a66374e1f8df01a3842d65b70ed2a0fa58
.cursor/rules/coderule.mdc and .cursor/rules/meta-rule.mdc
- Added a guideline to delete unused files, classes, or functions to prevent dead code accumulation in `coderule.mdc`. - Introduced a critical thinking guideline in `meta-rule.mdc` to encourage careful evaluation of user inputs and task specifications. These updates aim to improve code quality and maintainability by promoting the removal of obsolete code and fostering critical assessment of instructions.
1. Install necessary libs and drivers
https://www.python.org/downloads/
Windows
Linux
-
sudo apt install nvidia-driver-535 wget https://developer.download.nvidia.com/compute/cudnn/9.2.0/local_installers/cudnn-local-repo-ubuntu2204-9.2.0_1.0-1_amd64.deb sudo dpkg -i cudnn-local-repo-ubuntu2204-9.2.0_1.0-1_amd64.deb sudo cp /var/cudnn-local-repo-ubuntu2204-9.2.0/cudnn-*-keyring.gpg /usr/share/keyrings/ sudo apt-get update sudo apt-get -y install cudnn nvidia-cuda-toolkit -y nvcc --version
2. Install dependencies
- (Optional) Install virtual env:
pip install virtualenv python -m venv env env\Scripts\activate pip install -r requirements.txt pip uninstall -y torch pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126
3. Fix possible problems
- cv2.error: OpenCV(4.10.0) ...\window.cpp:1301: error: (-2:Unspecified error)
pip uninstall -y opencv-python pip install opencv-python - fbgemm.dll error (Windows specific)
copypaste tests\libomp140.x86_64.dll to C:\Windows\System32
Description
Languages
Python
83.7%
Shell
16.3%