add license
Browse files- NASA_OSDR.py +4 -1
NASA_OSDR.py
CHANGED
|
@@ -42,7 +42,7 @@ _URL = "https://raw.githubusercontent.com/AnzorGozalishvili/NASA_ODSR_DATA/main"
|
|
| 42 |
class NasaOsdrConfig(datasets.BuilderConfig):
|
| 43 |
"""BuilderConfig for NASA_OSDR."""
|
| 44 |
|
| 45 |
-
def __init__(self, features, data_url, citation, url, **kwargs):
|
| 46 |
"""BuilderConfig for SuperGLUE.
|
| 47 |
|
| 48 |
Args:
|
|
@@ -60,6 +60,7 @@ class NasaOsdrConfig(datasets.BuilderConfig):
|
|
| 60 |
self.features = features
|
| 61 |
self.data_url = data_url
|
| 62 |
self.citation = citation
|
|
|
|
| 63 |
self.url = url
|
| 64 |
|
| 65 |
|
|
@@ -75,6 +76,7 @@ class NasaOsdr(datasets.GeneratorBasedBuilder):
|
|
| 75 |
features=["experiment_id", "version", "all_studies", "metadata_file_extensions", "metadata_filename",
|
| 76 |
"metadata_path", "metadata_filenames", "study_metadata_filenames", "metadata_sample_filename"],
|
| 77 |
data_url=_DATA_URL,
|
|
|
|
| 78 |
url=_HOMEPAGE,
|
| 79 |
),
|
| 80 |
NasaOsdrConfig(
|
|
@@ -484,6 +486,7 @@ class NasaOsdr(datasets.GeneratorBasedBuilder):
|
|
| 484 |
"characteristics[antibiotic]", "factor value[antibiotic concentration]",
|
| 485 |
"comment[source name- channel 2]", "factor value[radiation, ionzing]"],
|
| 486 |
data_url=_DATA_URL,
|
|
|
|
| 487 |
url=_HOMEPAGE,
|
| 488 |
),
|
| 489 |
]
|
|
|
|
| 42 |
class NasaOsdrConfig(datasets.BuilderConfig):
|
| 43 |
"""BuilderConfig for NASA_OSDR."""
|
| 44 |
|
| 45 |
+
def __init__(self, features, data_url, citation, license, url, **kwargs):
|
| 46 |
"""BuilderConfig for SuperGLUE.
|
| 47 |
|
| 48 |
Args:
|
|
|
|
| 60 |
self.features = features
|
| 61 |
self.data_url = data_url
|
| 62 |
self.citation = citation
|
| 63 |
+
self.license = license
|
| 64 |
self.url = url
|
| 65 |
|
| 66 |
|
|
|
|
| 76 |
features=["experiment_id", "version", "all_studies", "metadata_file_extensions", "metadata_filename",
|
| 77 |
"metadata_path", "metadata_filenames", "study_metadata_filenames", "metadata_sample_filename"],
|
| 78 |
data_url=_DATA_URL,
|
| 79 |
+
license=_LICENSE,
|
| 80 |
url=_HOMEPAGE,
|
| 81 |
),
|
| 82 |
NasaOsdrConfig(
|
|
|
|
| 486 |
"characteristics[antibiotic]", "factor value[antibiotic concentration]",
|
| 487 |
"comment[source name- channel 2]", "factor value[radiation, ionzing]"],
|
| 488 |
data_url=_DATA_URL,
|
| 489 |
+
license=_LICENSE,
|
| 490 |
url=_HOMEPAGE,
|
| 491 |
),
|
| 492 |
]
|