Skip to content

Instantly share code, notes, and snippets.

@TenteEEEE
TenteEEEE / stylegan2-image2latent.ipynb
Last active January 27, 2021 10:08
StyleGAN2でImage2Latent
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@TenteEEEE
TenteEEEE / install.bat
Last active December 27, 2023 04:59
Pantie patch installer for Windows
@echo off
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
choco install git.install -y
choco install miniconda3 --params="/InstallationType:JustMe /AddToPath:1 /RegisterPython:1" -y
call refreshenv
cd %homedrive%%homepath%/documents
git clone https://temp@github.com/TenteEEEE/quiche_pantie_patch.git
cd quiche_pantie_patch
FOR /F "delims=~" %%f in (requirements.txt) DO conda install --yes "%%f" || pip install "%%f"
echo Pantie patch setup is completed!!
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->