Skip to content

Commit

Permalink
FIX-AND-REWORK
Browse files Browse the repository at this point in the history
  • Loading branch information
Dartvauder committed Oct 27, 2024
1 parent ee3159c commit ca7a713
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ sleep 2
clear

echo "Creating virtual environment..."
python3 -m venv "$CURRENT_DIR/venv"
python -m venv "$CURRENT_DIR/venv"
source "$CURRENT_DIR/venv/bin/activate"
clear

Expand All @@ -33,7 +33,7 @@ mkdir -p "$CURRENT_DIR/pip_cache"
export PIP_CACHE_DIR="$CURRENT_DIR/pip_cache"

echo "Upgrading pip, setuptools and wheel..."
python3 -m pip install --upgrade pip setuptools
python -m pip install --upgrade pip setuptools
pip install wheel
sleep 3
clear
Expand Down Expand Up @@ -68,7 +68,7 @@ sleep 3
clear

echo "Post-installing patches..."
python3 "$CURRENT_DIR/RequirementsFiles/post_install.py"
python "$CURRENT_DIR/RequirementsFiles/post_install.py"
sleep 3
clear

Expand Down
2 changes: 1 addition & 1 deletion LaunchFile/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ def get_languages():
}


styles_filepath = "styles.csv"
styles_filepath = "inputs/image/styles.csv"


def load_styles_from_csv(filepath):
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Start.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set CURRENT_DIR=%~dp0

call "%CURRENT_DIR%venv\Scripts\activate.bat"

py first_setup.py
py "%CURRENT_DIR%RequirementsFiles\first_setup.py"

echo Attempting to read Settings.json...
if not exist Settings.json (
Expand Down
2 changes: 1 addition & 1 deletion Start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"

source "$CURRENT_DIR/venv/bin/activate"

python first_setup.py
python "$CURRENT_DIR/RequirementsFiles/first_setup.py"

echo "Attempting to read Settings.json..."
if [ ! -f Settings.json ]; then
Expand Down
6 changes: 3 additions & 3 deletions styles.csv → inputs/image/styles.csv
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name,prompt,negative_prompt
Cinematic,"cinematic lighting, depth of field, professional photography, movie still, dramatic atmosphere, color grading, high budget, 8k uhd, high production value","blurry, overexposed, underexposed, amateur, low quality, grainy, noisy, distorted, pixelated"
Fantasy,"magical atmosphere, ethereal lighting, mystical creatures, enchanted forest, glowing particles, floating elements, magical effects, fantasy landscape, otherworldly","modern elements, urban setting, mundane objects, realistic style, contemporary, mundane"
Fantastic,"surreal atmosphere, dreamlike quality, floating islands, impossible architecture, cosmic elements, prismatic colors, fantasy creatures, otherworldly scene","realistic, mundane, ordinary, simple composition, basic lighting"
Action,"dynamic pose, motion blur, intense lighting, action scene, explosive effects, dramatic angle, high energy, power pose, epic moment","static pose, boring composition, flat lighting, peaceful scene, calm atmosphere"
Fantasy,"mystical atmosphere, ethereal lighting, glowing particles, floating elements, magical effects, fantasy landscape, otherworldly","modern elements, urban setting, mundane objects, realistic style, contemporary, mundane"
Fantastic,"surreal atmosphere, dreamlike quality, impossible architecture, cosmic elements, prismatic colors, otherworldly scene","realistic, mundane, ordinary, simple composition, basic lighting"
Action,"dynamic and power pose, motion blur, intense lighting, action scene, explosive effects, dramatic angle, high energy, epic moment","static pose, boring composition, flat lighting, peaceful scene, calm atmosphere"
Portrait,"professional studio lighting, bokeh background, sharp focus, perfect composition, detailed facial features, professional retouching, fashion photography","blurry, bad lighting, noisy background, overexposed, amateur look, unfocused"
Anime,"anime art style, cel shading, vibrant colors, dramatic lighting, expressive eyes, detailed hair, clean lines, manga influence","photorealistic, western art style, 3d rendering, realistic textures, noisy"
Vintage,"retro style, film grain, muted colors, nostalgic atmosphere, old photo effect, analog film, classic composition, aged texture","modern look, sharp digital, clean edges, vivid colors, contemporary style"
Expand Down

0 comments on commit ca7a713

Please sign in to comment.