|
99 | 99 | from torchhd.datasets.post_operative import PostOperative |
100 | 100 | from torchhd.datasets.primary_tumor import PrimaryTumor |
101 | 101 | from torchhd.datasets.ringnorm import Ringnorm |
| 102 | +from torchhd.datasets.seeds import Seeds |
| 103 | +from torchhd.datasets.semeion import Semeion |
| 104 | +from torchhd.datasets.soybean import Soybean |
| 105 | +from torchhd.datasets.spambase import Spambase |
| 106 | +from torchhd.datasets.spect import Spect |
| 107 | +from torchhd.datasets.spectf import Spectf |
| 108 | +from torchhd.datasets.statlog_australian_credit import StatlogAustralianCredit |
| 109 | +from torchhd.datasets.statlog_german_credit import StatlogGermanCredit |
| 110 | +from torchhd.datasets.statlog_heart import StatlogHeart |
| 111 | +from torchhd.datasets.statlog_image import StatlogImage |
| 112 | +from torchhd.datasets.statlog_landsat import StatlogLandsat |
| 113 | +from torchhd.datasets.statlog_shuttle import StatlogShuttle |
| 114 | +from torchhd.datasets.statlog_vehicle import StatlogVehicle |
| 115 | +from torchhd.datasets.steel_plates import SteelPlates |
| 116 | +from torchhd.datasets.synthetic_control import SyntheticControl |
| 117 | +from torchhd.datasets.teaching import Teaching |
| 118 | +from torchhd.datasets.thyroid import Thyroid |
| 119 | +from torchhd.datasets.tic_tac_toe import TicTacToe |
| 120 | +from torchhd.datasets.titanic import Titanic |
| 121 | +from torchhd.datasets.trains import Trains |
| 122 | +from torchhd.datasets.twonorm import Twonorm |
| 123 | +from torchhd.datasets.vertebral_column_2clases import VertebralColumn2Clases |
| 124 | +from torchhd.datasets.vertebral_column_3clases import VertebralColumn3Clases |
| 125 | +from torchhd.datasets.wall_following import WallFollowing |
| 126 | +from torchhd.datasets.waveform import Waveform |
| 127 | +from torchhd.datasets.waveform_noise import WaveformNoise |
| 128 | +from torchhd.datasets.wine import Wine |
| 129 | +from torchhd.datasets.wine_quality_red import WineQualityRed |
| 130 | +from torchhd.datasets.wine_quality_white import WineQualityWhite |
| 131 | +from torchhd.datasets.yeast import Yeast |
| 132 | +from torchhd.datasets.zoo import Zoo |
102 | 133 |
|
103 | 134 | __all__ = [ |
104 | 135 | "BeijingAirQuality", |
|
202 | 233 | "PostOperative", |
203 | 234 | "PrimaryTumor", |
204 | 235 | "Ringnorm", |
| 236 | + "Seeds", |
| 237 | + "Semeion", |
| 238 | + "Soybean", |
| 239 | + "Spambase", |
| 240 | + "Spect", |
| 241 | + "Spectf", |
| 242 | + "StatlogAustralianCredit", |
| 243 | + "StatlogGermanCredit", |
| 244 | + "StatlogHeart", |
| 245 | + "StatlogImage", |
| 246 | + "StatlogLandsat", |
| 247 | + "StatlogShuttle", |
| 248 | + "StatlogVehicle", |
| 249 | + "SteelPlates", |
| 250 | + "SyntheticControl", |
| 251 | + "Teaching", |
| 252 | + "Thyroid", |
| 253 | + "TicTacToe", |
| 254 | + "Titanic", |
| 255 | + "Trains", |
| 256 | + "Twonorm", |
| 257 | + "VertebralColumn2Clases", |
| 258 | + "VertebralColumn3Clases", |
| 259 | + "WallFollowing", |
| 260 | + "Waveform", |
| 261 | + "WaveformNoise", |
| 262 | + "Wine", |
| 263 | + "WineQualityRed", |
| 264 | + "WineQualityWhite", |
| 265 | + "Yeast", |
| 266 | + "Zoo", |
205 | 267 | ] |
0 commit comments