You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. in terminal, go to project directory, ```git clone {url}```
5
-
2. to make minor edits in same branch,
6
-
1.```git pull```
7
-
2. (make edits)
8
-
3.```git add .```
9
-
4.```git commit -m'{a_useful_message}'```
10
-
5.```git push```
11
-
3. to add new feature by creating a new branch,
12
-
1. go to branch A
13
-
2. create new branch B ```git branch {B}```
14
-
3. go to branch: ```git checkout {B}```
15
-
4. follow step 3
16
-
4. merge {B} to {A} then to main
17
-
1.```git checkout {B}```
18
-
2.```git pull```, fix conflicts then commit and push
19
-
3.```git checkout {A}```
20
-
4.```git pull```, fix conflicts then commit and push
21
-
5.```git merge --no-ff --no-commit {B}```
22
-
6.```git push```
1
+
# Generative Site Plans with URA
2
+
## 60.006 2023 Spatial Design Studio
3
+
Yen Ching Phua, Zenton Yam, Raymond Harrison
4
+
5
+
### Background
6
+
Explorative dive into generative site plans using Pix2Pix. This project aims to train a model to learn the development constraints of a private development site using URA guidelines.
7
+
8
+
### HTML Site Quickstart
9
+
In ```Constraints```, run ```app.py```. Ensure that models have been loaded to ```Models/{model_name}/{model_file.h5}```
10
+
11
+
### Other resources
12
+
Google Drive link to models and data: https://drive.google.com/drive/folders/1JVr-BwDxwJ5cU9aEYr_IvZPglIcuK80z?usp=share_link
0 commit comments