forked from nerfstudio-project/nerfstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclone_missing_methods.bat
More file actions
52 lines (42 loc) · 1.26 KB
/
Copy pathclone_missing_methods.bat
File metadata and controls
52 lines (42 loc) · 1.26 KB
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
48
49
50
51
52
@echo off
set ROOT=%CD%
echo ==============================
echo Cloning missing Nerfstudio methods
echo ==============================
REM ---- splatfacto-w ----
if not exist "%ROOT%\splatfacto-w" (
echo Cloning splatfacto-w...
git clone https://github.com/your-fork/splatfacto-w.git
)
REM ---- zipnerf ----
if not exist "%ROOT%\zipnerf-pytorch" (
echo Cloning zipnerf-pytorch...
git clone https://github.com/SuLvXiangXin/zipnerf-pytorch.git
)
REM ---- instruct-gs2gs ----
if not exist "%ROOT%\instruct-gs2gs" (
echo Cloning instruct-gs2gs...
git clone https://github.com/ashawkey/instruct-gs2gs.git
)
REM ---- tetra-nerf ----
if not exist "%ROOT%\tetra-nerf" (
echo Cloning tetra-nerf...
git clone https://github.com/jkulhanek/tetra-nerf.git
)
REM ---- opennerf ----
if not exist "%ROOT%\opennerf" (
echo Cloning opennerf...
git clone https://github.com/opennerf/opennerf.git
)
REM ---- OPTIONAL / PRESENT IN YOUR ROOT ----
if not exist "%ROOT%\sdfstudio" (
echo Cloning sdfstudio...
git clone https://github.com/autonomousvision/sdfstudio.git
)
if not exist "%ROOT%\relationfield" (
echo Cloning relationfield...
git clone https://github.com/nerfstudio-project/relationfield.git
)
echo.
echo ✅ Clone step completed
pause