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
Copy file name to clipboardExpand all lines: docs/generator.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
# Pixels Data Generator
2
-
A [DataGenerator](https://github.com/tesselo/pixels/blob/main/pixels/generator/generator.py) is used to feed pixels data to our AI models. This generator transforms the raw imagery stacks from the pixels collection into a format that can be passed to an AI model.
2
+
A [Generator](https://github.com/tesselo/pixels/blob/main/pixels/generator/generator.py) is used to feed pixels data to our AI models. This generator transforms the raw imagery stacks from the pixels collection into a format that can be passed to an AI model.
3
3
4
4
For super-resolution models, the generator is able to change the resolution of the imagery data.
5
5
@@ -195,7 +195,7 @@ Path to for the downloaded data directory. If `download_dir` is not set and
195
195
## Supporting arguments
196
196
This section documents a number of arguments that can be set as generator
197
197
arguments in the stac training algorithm, that are not direct arguments of the
198
-
DataGenerator. These additional arguments are related with formatting the input
198
+
Generator. These additional arguments are related with formatting the input
199
199
and output of the models, as well as handling special cases during prediction.
Copy file name to clipboardExpand all lines: docs/how-to-guides/running_the_generator.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,13 @@ The arguments definitions can be seen here:[Pixels Data Generator](../generator.
7
7
When running the generator locally multiple times, it can make sense to download the data so that subsequent runs are faster. To do so, use the following additional parameters: ```download_data``` and ```download_dir```.
8
8
9
9
```python
10
-
from pixels.stac_generator.generator importDataGenerator
10
+
from pixels.stac_generator.generator importGenerator
11
11
12
12
# Path to Collection dictionary.
13
13
# It can be on s3 or locally, it has to be a catalogs_dict.json representing the collection.
0 commit comments