tfnn commited on
Commit
6d16450
1 Parent(s): a7099cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -84,7 +84,7 @@ np.save("train_y.npy", train_y)
84
  ```
85
 
86
  The basic premise of how this network is trained and thus how the dataset is generated in the C program is:
87
- 1. All models are scaled to a normal cubic scale and then scaled again by 0.55 so that they all fit within a unit sphere.
88
  2. All model vertices are reverse traced from the vertex position to the perimeter of the unit sphere using the vertex normal.
89
  3. The nearest position on a 10,242 vertex icosphere is found and the network is trained to output the model vertex position and vertex color (6 components) at the index of the icosphere vertex.
90
  4. The icosphere vertex index is scaled to a 0-1 range before being input to the network.
 
84
  ```
85
 
86
  The basic premise of how this network is trained and thus how the dataset is generated in the C program is:
87
+ 1. All models are pre-scaled to a normal cubic scale and then scaled again by 0.55 so that they all fit within a unit sphere.
88
  2. All model vertices are reverse traced from the vertex position to the perimeter of the unit sphere using the vertex normal.
89
  3. The nearest position on a 10,242 vertex icosphere is found and the network is trained to output the model vertex position and vertex color (6 components) at the index of the icosphere vertex.
90
  4. The icosphere vertex index is scaled to a 0-1 range before being input to the network.