Datasets:
Updates `nist_lpbf_scan_tracks.py`.
Browse files- .gitignore +1 -0
- nist_lpbf_scan_tracks.py +2 -2
.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
|
|
1 |
venv
|
|
|
1 |
+
__pycache__
|
2 |
venv
|
nist_lpbf_scan_tracks.py
CHANGED
@@ -59,7 +59,7 @@ _URLS = {
|
|
59 |
|
60 |
|
61 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|
62 |
-
class
|
63 |
"""TODO: Short description of my dataset."""
|
64 |
|
65 |
VERSION = datasets.Version("0.0.1")
|
@@ -118,7 +118,7 @@ class AMDataset(datasets.GeneratorBasedBuilder):
|
|
118 |
),
|
119 |
]
|
120 |
|
121 |
-
DEFAULT_CONFIG_NAME = "
|
122 |
|
123 |
def _info(self):
|
124 |
return datasets.DatasetInfo(
|
|
|
59 |
|
60 |
|
61 |
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
|
62 |
+
class Dataset(datasets.GeneratorBasedBuilder):
|
63 |
"""TODO: Short description of my dataset."""
|
64 |
|
65 |
VERSION = datasets.Version("0.0.1")
|
|
|
118 |
),
|
119 |
]
|
120 |
|
121 |
+
DEFAULT_CONFIG_NAME = "powder_single_track_radiant_temperature" # It's not mandatory to have a default configuration. Just use one if it make sense.
|
122 |
|
123 |
def _info(self):
|
124 |
return datasets.DatasetInfo(
|