-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_gen_avtr.bat
47 lines (32 loc) · 1007 Bytes
/
run_gen_avtr.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@echo off
REM Activate first conda environment
call conda activate torch
REM Run first python 3D geom generation
python shap-e\main.py
REM Deactivate first envrironment
call conda deactivate
REM Run the maya API utils
"C:\Program Files\Autodesk\Maya2024\bin\mayapy" shap-e\maya_geom_fixes.py
REM Activate second conda environment
call conda activate paper
REM Run yaml config creator
python TEXTurePaper\scripts\create_config.py
REM cd inside TEXTurePaper
cd TEXTurePaper\
REM Run texture painter
python -m scripts.run_texture --config_path=configs\text_guided\an_astronaut_in_a_banana_suit.yaml
REM return to main root
cd ..
call conda deactivate
REM Activate third conda environment
call conda activate opencv
REM cd inside super res ESRGAN
cd super_resolution\ESRGAN\
REM Run super resolution framework
python test.py
REM return to main root
cd ..\..
call conda deactivate
REM run cleanup script
python cleanup.py
echo ALL steps completed!!