Skip to content

Instantly share code, notes, and snippets.

View Daethyra's full-sized avatar
🤍
Vibing<3

Daethyra

🤍
Vibing<3
  • Cyberspace
  • 23:15 (UTC -07:00)
View GitHub Profile
@Daethyra
Daethyra / fine-tuning-a-masked-language-model-pytorch.ipynb
Last active October 5, 2023 00:34
Fine-tuning Distilbert (PyTorch)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Daethyra
Daethyra / fine-tuning-bert-token-classification-pytorch.ipynb
Last active October 5, 2023 00:33
Fine-tuning BERT | Token classification (PyTorch)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Daethyra
Daethyra / Py31011_PSAI.ps1
Created August 19, 2023 00:51
Python 3.10.11 PowerShell Auto-Installation
# PowerShell Script to Download and Install Python 3.10.11
# This script automates the process of downloading and installing Python 3.10.11.
# It includes error handling, version checking, admin privilege checking, installer validation, and post-installation cleanup.
# Check if Python 3.10.11 is already installed
$installedVersion = & python --version 2>&1
if ($installedVersion -match "Python 3.10.11") {
Write-Host "Python 3.10.11 is already installed. Exiting..."
exit
}