Datasets¶
Base Classes¶
flyvision.datasets.datasets.SequenceDataset ¶
Bases: Dataset
Base class for all sequence datasets.
All sequence datasets can subclass this class. They are expected to implement the following attributes and methods.
Attributes:
Name | Type | Description |
---|---|---|
framerate |
int
|
Framerate of the original sequences. |
dt |
float
|
Sampling and integration time constant. |
t_pre |
float
|
Warmup time. |
t_post |
float
|
Cooldown time. |
arg_df |
DataFrame
|
required DataFrame containing the dataset parameters. |
Source code in flyvision/datasets/datasets.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
get_item ¶
get_item(key)
Return an item of the dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the item to retrieve. |
required |
Returns:
Type | Description |
---|---|
Any
|
The dataset item at the specified index. |
Source code in flyvision/datasets/datasets.py
36 37 38 39 40 41 42 43 44 |
|
__len__ ¶
__len__()
Size of the dataset.
Source code in flyvision/datasets/datasets.py
46 47 48 |
|
__getitem__ ¶
__getitem__(key)
Implements advanced indexing.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
Union[slice, Iterable, int, int_]
|
Index, slice, or iterable of indices. |
required |
Returns:
Type | Description |
---|---|
Any
|
The dataset item(s) at the specified index/indices. |
Raises:
Type | Description |
---|---|
IndexError
|
If the index is out of range. |
TypeError
|
If the key type is invalid. |
Source code in flyvision/datasets/datasets.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
|
get_temporal_sample_indices ¶
get_temporal_sample_indices(
n_frames, total_seq_length, augment=None
)
Returns temporal indices to sample from a sequence.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_frames |
int
|
Number of sequence frames to sample from. |
required |
total_seq_length |
int
|
Total sequence length. |
required |
augment |
bool
|
If True, picks the start frame at random. If False, starts at 0. |
None
|
Returns:
Type | Description |
---|---|
Tensor
|
Tensor of temporal indices. |
Note
Interpolates between start_index and start_index + n_frames and rounds the resulting float values to integer to create indices. This can lead to irregularities in terms of how many times each raw data frame is sampled.
Source code in flyvision/datasets/datasets.py
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
flyvision.datasets.datasets.StimulusDataset ¶
Bases: SequenceDataset
Base class for stimulus datasets.
Source code in flyvision/datasets/datasets.py
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
get_stimulus_index ¶
get_stimulus_index(kwargs)
Get the sequence id for a set of arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kwargs |
Dict[str, Any]
|
Dictionary containing independent arguments or parameters describing the sample of the dataset. |
required |
Returns:
Type | Description |
---|---|
int
|
The sequence id for the given arguments. |
Raises:
Type | Description |
---|---|
ValueError
|
If arg_df attribute is not specified. |
Note
The child dataset implements the specific method:
def get_stimulus_index(self, arg1, arg2, ...):
return StimulusDataset.get_stimulus_index(locals())
arg1
, arg2
, …
to index arg_df.
Source code in flyvision/datasets/datasets.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
flyvision.datasets.datasets.MultiTaskDataset ¶
Bases: SequenceDataset
Base class for all (multi-)task sequence datasets.
All (multi-)task sequence datasets can subclass this class. They are expected to implement the following additional attributes and methods.
Attributes:
Name | Type | Description |
---|---|---|
tasks |
List[str]
|
A list of all tasks. |
augment |
bool
|
Turns augmentation on and off. |
Source code in flyvision/datasets/datasets.py
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
|
augmentation ¶
augmentation(abool)
Contextmanager to turn augmentation on or off in a code block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
abool |
bool
|
Boolean value to set augmentation. |
required |
Example
with dataset.augmentation(True):
for i, data in enumerate(dataloader):
... # all data is augmented
Source code in flyvision/datasets/datasets.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
|
get_random_data_split ¶
get_random_data_split(fold, n_folds, shuffle=True, seed=0)
Returns a random data split.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fold |
int
|
Current fold number. |
required |
n_folds |
int
|
Total number of folds. |
required |
shuffle |
bool
|
Whether to shuffle the data. |
True
|
seed |
int
|
Random seed for reproducibility. |
0
|
Returns:
Type | Description |
---|---|
ndarray
|
Array of indices for the data split. |
Source code in flyvision/datasets/datasets.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
|
Flashes¶
flyvision.datasets.flashes.Flashes ¶
Bases: SequenceDataset
Flashes dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
boxfilter |
Dict[str, int]
|
Parameters for the BoxEye filter. |
dict(extent=15, kernel_size=13)
|
dynamic_range |
List[float]
|
Range of intensities. E.g. [0, 1] renders flashes with decrement 0.5->0 and increment 0.5->1. |
[0, 1]
|
t_stim |
float
|
Duration of the stimulus. |
1.0
|
t_pre |
float
|
Duration of the grey stimulus. |
1.0
|
dt |
float
|
Timesteps. |
1 / 200
|
radius |
List[int]
|
Radius of the stimulus. |
[-1, 6]
|
alternations |
Tuple[int, ...]
|
Sequence of alternations between lower or upper intensity and baseline of the dynamic range. |
(0, 1, 0)
|
Attributes:
Name | Type | Description |
---|---|---|
dt |
Union[float, None]
|
Timestep. |
t_post |
float
|
Post-stimulus time. |
flashes_dir |
Directory containing rendered flashes. |
|
config |
Configuration object. |
|
baseline |
Baseline intensity. |
|
arg_df |
DataFrame containing flash parameters. |
Note
Zero alternation is the prestimulus and baseline. One alternation is the
central stimulus. Has to start with zero alternation. t_pre
is the
duration of the prestimulus and t_stim
is the duration of the stimulus.
Source code in flyvision/datasets/flashes.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
get_item ¶
get_item(key)
Index the dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the item to retrieve. |
required |
Returns:
Type | Description |
---|---|
Tensor
|
Flash sequence at the given index. |
Source code in flyvision/datasets/flashes.py
205 206 207 208 209 210 211 212 213 214 |
|
__repr__ ¶
__repr__()
Return a string representation of the dataset.
Source code in flyvision/datasets/flashes.py
216 217 218 |
|
Moving Bar¶
flyvision.datasets.moving_bar.MovingBar ¶
Bases: StimulusDataset
Moving bar stimulus.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
widths |
list[int]
|
Width of the bar in half ommatidia. |
[1, 2, 4]
|
offsets |
tuple[int, int]
|
First and last offset to the central column in half ommatidia. |
(-10, 11)
|
intensities |
list[float]
|
Intensity of the bar. |
[0, 1]
|
speeds |
list[float]
|
Speed of the bar in half ommatidia per second. |
[2.4, 4.8, 9.7, 13, 19, 25]
|
height |
int
|
Height of the bar in half ommatidia. |
9
|
dt |
float
|
Time step in seconds. |
1 / 200
|
device |
str
|
Device to store the stimulus. |
device
|
bar_loc_horizontal |
float
|
Horizontal location of the bar in radians from left to right of image plane. np.radians(90) is the center. |
radians(90)
|
post_pad_mode |
Literal['continue', 'value', 'reflect']
|
Padding mode after the stimulus. One of ‘continue’, ‘value’,
‘reflect’. If ‘value’ the padding is filled with |
'value'
|
t_pre |
float
|
Time before the stimulus in seconds. |
1.0
|
t_post |
float
|
Time after the stimulus in seconds. |
1.0
|
build_stim_on_init |
bool
|
Build the stimulus on initialization. |
True
|
shuffle_offsets |
bool
|
Shuffle the offsets to remove spatio-temporal correlation. |
False
|
seed |
int
|
Seed for the random state. |
0
|
angles |
list[int]
|
List of angles in degrees. |
[0, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300, 330]
|
Attributes:
Name | Type | Description |
---|---|---|
config |
Namespace
|
Configuration parameters. |
omm_width |
float
|
Width of ommatidium in radians. |
led_width |
float
|
Width of LED in radians. |
angles |
ndarray
|
Array of angles in degrees. |
widths |
ndarray
|
Array of widths in half ommatidia. |
offsets |
ndarray
|
Array of offsets in half ommatidia. |
intensities |
ndarray
|
Array of intensities. |
speeds |
ndarray
|
Array of speeds in half ommatidia per second. |
bg_intensity |
float
|
Background intensity. |
n_bars |
int
|
Number of bars. |
bar_loc_horizontal |
float
|
Horizontal location of bar in radians. |
t_stim |
ndarray
|
Stimulation times for each speed. |
t_stim_max |
float
|
Maximum stimulation time. |
height |
float
|
Height of bar in radians. |
post_pad_mode |
str
|
Padding mode after the stimulus. |
arg_df |
DataFrame
|
DataFrame of stimulus parameters. |
arg_group_df |
DataFrame
|
Grouped DataFrame of stimulus parameters. |
device |
str
|
Device for storing stimuli. |
shuffle_offsets |
bool
|
Whether to shuffle offsets. |
randomstate |
RandomState
|
Random state for shuffling. |
Source code in flyvision/datasets/moving_bar.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 |
|
get_sequence_id_from_arguments ¶
get_sequence_id_from_arguments(
angle, width, intensity, speed
)
Get sequence ID from stimulus arguments.
Source code in flyvision/datasets/moving_bar.py
365 366 367 368 369 |
|
get ¶
get(angle, width, intensity, speed)
Get stimulus for specific parameters.
Source code in flyvision/datasets/moving_bar.py
385 386 387 388 389 390 |
|
get_item ¶
get_item(key)
Get stimulus for a specific key.
Source code in flyvision/datasets/moving_bar.py
392 393 394 395 |
|
mask ¶
mask(
angle=None,
width=None,
intensity=None,
speed=None,
t_stim=None,
)
Create a mask for specific stimulus parameters.
Source code in flyvision/datasets/moving_bar.py
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
|
stimulus ¶
stimulus(
angle=None,
width=None,
intensity=None,
speed=None,
pre_stim=True,
post_stim=True,
)
Get stimulus for specific parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
angle |
Optional[float]
|
Angle of the bar. |
None
|
width |
Optional[float]
|
Width of the bar. |
None
|
intensity |
Optional[float]
|
Intensity of the bar. |
None
|
speed |
Optional[float]
|
Speed of the bar. |
None
|
pre_stim |
bool
|
Include pre-stimulus period. |
True
|
post_stim |
bool
|
Include post-stimulus period. |
True
|
Returns:
Type | Description |
---|---|
ndarray
|
Stimulus array. |
Source code in flyvision/datasets/moving_bar.py
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
|
stimulus_parameters ¶
stimulus_parameters(
angle=None, width=None, intensity=None, speed=None
)
Get stimulus parameters.
Source code in flyvision/datasets/moving_bar.py
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 |
|
sample_shape ¶
sample_shape(
angle=None, width=None, intensity=None, speed=None
)
Get shape of stimulus sample for given parameters.
Source code in flyvision/datasets/moving_bar.py
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
|
time_to_center ¶
time_to_center(speed)
Calculate time for bar to reach center at given speed.
Source code in flyvision/datasets/moving_bar.py
522 523 524 525 526 527 |
|
get_time_with_origin_at_onset ¶
get_time_with_origin_at_onset()
Get time array with origin at stimulus onset.
Source code in flyvision/datasets/moving_bar.py
529 530 531 532 533 534 535 536 537 |
|
get_time_with_origin_at_center ¶
get_time_with_origin_at_center(speed)
Get time array with origin where bar reaches central column.
Source code in flyvision/datasets/moving_bar.py
539 540 541 542 543 544 545 546 547 548 549 550 551 |
|
stimulus_cartoon ¶
stimulus_cartoon(
angle,
width,
intensity,
speed,
time_after_stimulus_onset=0.5,
fig=None,
ax=None,
facecolor="#000000",
cmap=plt.cm.bone,
alpha=0.5,
vmin=0,
vmax=1,
edgecolor="none",
central_hex_color="#2f7cb9",
**kwargs
)
Create a cartoon representation of the stimulus.
Source code in flyvision/datasets/moving_bar.py
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 |
|
Impulses¶
flyvision.datasets.dots.Dots ¶
Bases: StimulusDataset
Render flashes aka dots per ommatidia.
Note
Renders directly in receptor space, does not use BoxEye or HexEye as eye-model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dot_column_radius |
int
|
Radius of the dot column. |
0
|
max_extent |
int
|
Maximum extent of the stimulus. |
15
|
bg_intensity |
float
|
Background intensity. |
0.5
|
t_stim |
float
|
Stimulus duration. |
5
|
dt |
float
|
Time step. |
1 / 200
|
t_impulse |
Optional[float]
|
Impulse duration. |
None
|
n_ommatidia |
int
|
Number of ommatidia. |
721
|
t_pre |
float
|
Pre-stimulus duration. |
2.0
|
t_post |
float
|
Post-stimulus duration. |
0
|
intensity |
float
|
Stimulus intensity. |
1
|
mode |
Literal['sustained', 'impulse']
|
Stimulus mode (‘sustained’ or ‘impulse’). |
'sustained'
|
device |
device
|
Torch device for computations. |
device
|
Attributes:
Name | Type | Description |
---|---|---|
dt |
Optional[float]
|
Time step. |
arg_df |
Optional[DataFrame]
|
DataFrame containing stimulus parameters. |
config |
Namespace containing configuration parameters. |
|
t_stim |
Stimulus duration. |
|
n_ommatidia |
Number of ommatidia. |
|
offsets |
Array of ommatidia offsets. |
|
u |
U-coordinates of the hexagonal grid. |
|
v |
V-coordinates of the hexagonal grid. |
|
extent_condition |
Boolean mask for the extent condition. |
|
max_extent |
Maximum extent of the stimulus. |
|
bg_intensity |
Background intensity. |
|
intensities |
List of stimulus intensities. |
|
device |
Torch device for computations. |
|
mode |
Stimulus mode (‘sustained’ or ‘impulse’). |
|
params |
List of stimulus parameters. |
|
t_impulse |
Impulse duration. |
Raises:
Type | Description |
---|---|
ValueError
|
If dot_column_radius is greater than max_extent. |
Source code in flyvision/datasets/dots.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
get_item ¶
get_item(key)
Get a stimulus item for a specific key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the item to retrieve. |
required |
Returns:
Type | Description |
---|---|
Tensor
|
Tensor representing the stimulus sequence. |
Source code in flyvision/datasets/dots.py
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
|
get_stimulus_index ¶
get_stimulus_index(u, v, intensity)
Get sequence ID from given arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
u |
float
|
U-coordinate. |
required |
v |
float
|
V-coordinate. |
required |
intensity |
float
|
Stimulus intensity. |
required |
Returns:
Type | Description |
---|---|
int
|
Sequence ID. |
Source code in flyvision/datasets/dots.py
228 229 230 231 232 233 234 235 236 237 238 239 |
|
flyvision.datasets.dots.SpatialImpulses ¶
Bases: StimulusDataset
Spatial flashes for spatial receptive field mapping.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
impulse_durations |
List[float]
|
List of impulse durations. |
[0.005, 0.02]
|
max_extent |
int
|
Maximum extent of the stimulus. |
4
|
dot_column_radius |
int
|
Radius of the dot column. |
0
|
bg_intensity |
float
|
Background intensity. |
0.5
|
t_stim |
float
|
Stimulus duration. |
5
|
dt |
float
|
Time step. |
0.005
|
n_ommatidia |
int
|
Number of ommatidia. |
721
|
t_pre |
float
|
Pre-stimulus duration. |
2.0
|
t_post |
float
|
Post-stimulus duration. |
0
|
intensity |
float
|
Stimulus intensity. |
1
|
mode |
str
|
Stimulus mode. |
'impulse'
|
device |
device
|
Torch device for computations. |
device
|
Attributes:
Name | Type | Description |
---|---|---|
arg_df |
Optional[DataFrame]
|
DataFrame containing stimulus parameters. |
dt |
Optional[float]
|
Time step. |
dots |
Instance of the Dots class. |
|
impulse_durations |
List of impulse durations. |
|
config |
Configuration namespace. |
|
params |
List of stimulus parameters. |
Source code in flyvision/datasets/dots.py
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 |
|
get_item ¶
get_item(key)
Get a stimulus item for a specific key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the item to retrieve. |
required |
Returns:
Type | Description |
---|---|
Tensor
|
Tensor representing the stimulus sequence. |
Source code in flyvision/datasets/dots.py
461 462 463 464 465 466 467 468 469 470 471 472 |
|
__repr__ ¶
__repr__()
Get string representation of the dataset.
Source code in flyvision/datasets/dots.py
474 475 476 |
|
flyvision.datasets.dots.CentralImpulses ¶
Bases: StimulusDataset
Flashes at the center of the visual field for temporal receptive field mapping.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
impulse_durations |
List[float]
|
List of impulse durations. |
[0.005, 0.02, 0.05, 0.1, 0.2, 0.3]
|
dot_column_radius |
int
|
Radius of the dot column. |
0
|
bg_intensity |
float
|
Background intensity. |
0.5
|
t_stim |
float
|
Stimulus duration. |
5
|
dt |
float
|
Time step. |
0.005
|
n_ommatidia |
int
|
Number of ommatidia. |
721
|
t_pre |
float
|
Pre-stimulus duration. |
2.0
|
t_post |
float
|
Post-stimulus duration. |
0
|
intensity |
float
|
Stimulus intensity. |
1
|
mode |
str
|
Stimulus mode. |
'impulse'
|
device |
device
|
Torch device for computations. |
device
|
Attributes:
Name | Type | Description |
---|---|---|
arg_df |
Optional[DataFrame]
|
DataFrame containing stimulus parameters. |
dt |
Optional[float]
|
Time step. |
dots |
Instance of the Dots class. |
|
impulse_durations |
List of impulse durations. |
|
config |
Configuration namespace. |
|
params |
List of stimulus parameters. |
Source code in flyvision/datasets/dots.py
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
|
__init__ ¶
__init__(
impulse_durations=[0.005, 0.02, 0.05, 0.1, 0.2, 0.3],
dot_column_radius=0,
bg_intensity=0.5,
t_stim=5,
dt=0.005,
n_ommatidia=721,
t_pre=2.0,
t_post=0,
intensity=1,
mode="impulse",
device=flyvision.device,
)
Initialize the CentralImpulses dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
impulse_durations |
List[float]
|
List of impulse durations. |
[0.005, 0.02, 0.05, 0.1, 0.2, 0.3]
|
dot_column_radius |
int
|
Radius of the dot column. |
0
|
bg_intensity |
float
|
Background intensity. |
0.5
|
t_stim |
float
|
Stimulus duration. |
5
|
dt |
float
|
Time step. |
0.005
|
n_ommatidia |
int
|
Number of ommatidia. |
721
|
t_pre |
float
|
Pre-stimulus duration. |
2.0
|
t_post |
float
|
Post-stimulus duration. |
0
|
intensity |
float
|
Stimulus intensity. |
1
|
mode |
str
|
Stimulus mode. |
'impulse'
|
device |
device
|
Torch device for computations. |
device
|
Source code in flyvision/datasets/dots.py
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
get_item ¶
get_item(key)
Get a stimulus item for a specific key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the item to retrieve. |
required |
Returns:
Type | Description |
---|---|
Tensor
|
Tensor representing the stimulus sequence. |
Source code in flyvision/datasets/dots.py
343 344 345 346 347 348 349 350 351 352 353 354 |
|
__repr__ ¶
__repr__()
Get string representation of the dataset.
Source code in flyvision/datasets/dots.py
366 367 368 |
|
Sintel¶
flyvision.datasets.sintel.MultiTaskSintel ¶
Bases: MultiTaskDataset
Sintel dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tasks |
List[str]
|
List of tasks to include. May include ‘flow’, ‘lum’, or ‘depth’. |
['flow']
|
boxfilter |
Dict[str, int]
|
Key word arguments for the BoxEye filter. |
dict(extent=15, kernel_size=13)
|
vertical_splits |
int
|
Number of vertical splits of each frame. |
3
|
n_frames |
int
|
Number of frames to render for each sequence. |
19
|
center_crop_fraction |
float
|
Fraction of the image to keep after cropping. |
0.7
|
dt |
float
|
Sampling and integration time constant. |
1 / 50
|
augment |
bool
|
Turns augmentation on and off. |
True
|
random_temporal_crop |
bool
|
Randomly crops a temporal window of length |
True
|
all_frames |
bool
|
If True, all frames are returned. If False, only |
False
|
resampling |
bool
|
If True, piecewise-constant resamples the input sequence to the target framerate (1/dt). |
True
|
interpolate |
bool
|
If True, linearly interpolates the target sequence to the target framerate (1/dt). |
True
|
p_flip |
float
|
Probability of flipping the sequence across hexagonal axes. |
0.5
|
p_rot |
float
|
Probability of rotating the sequence by n*60 degrees. |
5 / 6
|
contrast_std |
float
|
Standard deviation of the contrast augmentation. |
0.2
|
brightness_std |
float
|
Standard deviation of the brightness augmentation. |
0.1
|
gaussian_white_noise |
float
|
Standard deviation of the pixel-wise gaussian white noise. |
0.08
|
gamma_std |
Optional[float]
|
Standard deviation of the gamma augmentation. |
None
|
_init_cache |
bool
|
If True, caches the dataset in memory. |
True
|
unittest |
bool
|
If True, only renders a single sequence. |
False
|
flip_axes |
List[int]
|
List of axes to flip over. |
[0, 1]
|
Attributes:
Name | Type | Description |
---|---|---|
dt |
float
|
Sampling and integration time constant. |
t_pre |
float
|
Warmup time. |
t_post |
float
|
Cooldown time. |
tasks |
List[str]
|
List of all tasks. |
valid_tasks |
List[str]
|
List of valid task names. |
Raises:
Type | Description |
---|---|
ValueError
|
If any element in tasks is invalid. |
Source code in flyvision/datasets/sintel.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 |
|
init_cache ¶
init_cache()
Initialize the cache with preprocessed sequences.
Source code in flyvision/datasets/sintel.py
337 338 339 340 341 342 343 344 345 346 |
|
__setattr__ ¶
__setattr__(name, value)
Custom attribute setter to handle special cases and update augmentation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Name of the attribute to set. |
required |
value |
Any
|
Value to set the attribute to. |
required |
Raises:
Type | Description |
---|---|
AttributeError
|
If trying to change framerate or rendered initialization attributes. |
Source code in flyvision/datasets/sintel.py
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
|
init_augmentation ¶
init_augmentation()
Initialize augmentation callables.
Source code in flyvision/datasets/sintel.py
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
|
update_augmentation ¶
update_augmentation(name, value)
Update augmentation parameters based on attribute changes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Name of the attribute that changed. |
required |
value |
Any
|
New value of the attribute. |
required |
Source code in flyvision/datasets/sintel.py
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 |
|
set_augmentation_params ¶
set_augmentation_params(
n_rot=None,
flip_axis=None,
contrast_factor=None,
brightness_factor=None,
gaussian_white_noise=None,
gamma=None,
start_frame=None,
total_sequence_length=None,
)
Set augmentation callable parameters.
Info
Called for each call of get_item.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_rot |
Optional[int]
|
Number of rotations to apply. |
None
|
flip_axis |
Optional[int]
|
Axis to flip over. |
None
|
contrast_factor |
Optional[float]
|
Contrast factor for jitter augmentation. |
None
|
brightness_factor |
Optional[float]
|
Brightness factor for jitter augmentation. |
None
|
gaussian_white_noise |
Optional[float]
|
Standard deviation for noise augmentation. |
None
|
gamma |
Optional[float]
|
Gamma value for gamma correction. |
None
|
start_frame |
Optional[int]
|
Starting frame for temporal crop. |
None
|
total_sequence_length |
Optional[int]
|
Total length of the sequence. |
None
|
Source code in flyvision/datasets/sintel.py
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 |
|
get_item ¶
get_item(key)
Return a dataset sample.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the sample to retrieve. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Tensor]
|
Dictionary containing the augmented sample data. |
Source code in flyvision/datasets/sintel.py
461 462 463 464 465 466 467 468 469 470 |
|
augmentation ¶
augmentation(abool)
Context manager to turn augmentation on or off in a code block.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
abool |
bool
|
Boolean value to set augmentation state. |
required |
Example
with dataset.augmentation(True):
for i, data in enumerate(dataloader):
... # all data is augmented
Source code in flyvision/datasets/sintel.py
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 |
|
apply_augmentation ¶
apply_augmentation(
data,
n_rot=None,
flip_axis=None,
contrast_factor=None,
brightness_factor=None,
gaussian_white_noise=None,
gamma=None,
)
Apply augmentation to a sample from the dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
Dict[str, Tensor]
|
Dictionary containing the sample data. |
required |
n_rot |
Optional[int]
|
Number of rotations to apply. |
None
|
flip_axis |
Optional[int]
|
Axis to flip over. |
None
|
contrast_factor |
Optional[float]
|
Contrast factor for jitter augmentation. |
None
|
brightness_factor |
Optional[float]
|
Brightness factor for jitter augmentation. |
None
|
gaussian_white_noise |
Optional[float]
|
Standard deviation for noise augmentation. |
None
|
gamma |
Optional[float]
|
Gamma value for gamma correction. |
None
|
Returns:
Type | Description |
---|---|
Dict[str, Tensor]
|
Dictionary containing the augmented sample data. |
Source code in flyvision/datasets/sintel.py
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 |
|
original_sequence_index ¶
original_sequence_index(key)
Get the original sequence index from an index of the split.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the split. |
required |
Returns:
Type | Description |
---|---|
int
|
Original sequence index. |
Raises:
Type | Description |
---|---|
ValueError
|
If the key is not found in splits. |
Source code in flyvision/datasets/sintel.py
597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 |
|
cartesian_sequence ¶
cartesian_sequence(
key,
vertical_splits=None,
outwidth=716,
center_crop_fraction=None,
sampling=slice(1, None, None),
)
Return the cartesian sequence of a fly eye rendered sequence.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the sequence. |
required |
vertical_splits |
Optional[int]
|
Number of vertical splits to apply. |
None
|
outwidth |
int
|
Output width of the sequence. |
716
|
center_crop_fraction |
Optional[float]
|
Fraction of the image to keep after cropping. |
None
|
sampling |
slice
|
Slice object for sampling frames. |
slice(1, None, None)
|
Returns:
Type | Description |
---|---|
ndarray
|
Numpy array containing the cartesian sequence. |
Source code in flyvision/datasets/sintel.py
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 |
|
cartesian_flow ¶
cartesian_flow(
key,
vertical_splits=None,
outwidth=417,
center_crop_fraction=None,
sampling=slice(None, None, None),
)
Return the cartesian flow of a fly eye rendered flow.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the sequence. |
required |
vertical_splits |
Optional[int]
|
Number of vertical splits to apply. |
None
|
outwidth |
int
|
Output width of the flow. |
417
|
center_crop_fraction |
Optional[float]
|
Fraction of the image to keep after cropping. |
None
|
sampling |
slice
|
Slice object for sampling frames. |
slice(None, None, None)
|
Returns:
Type | Description |
---|---|
ndarray
|
Numpy array containing the cartesian flow. |
Source code in flyvision/datasets/sintel.py
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 |
|
cartesian_depth ¶
cartesian_depth(
key,
vertical_splits=None,
outwidth=417,
center_crop_fraction=None,
sampling=slice(1, None, None),
)
Return the cartesian depth of a fly eye rendered depth.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int
|
Index of the sequence. |
required |
vertical_splits |
Optional[int]
|
Number of vertical splits to apply. |
None
|
outwidth |
int
|
Output width of the depth. |
417
|
center_crop_fraction |
Optional[float]
|
Fraction of the image to keep after cropping. |
None
|
sampling |
slice
|
Slice object for sampling frames. |
slice(1, None, None)
|
Returns:
Type | Description |
---|---|
ndarray
|
Numpy array containing the cartesian depth. |
Source code in flyvision/datasets/sintel.py
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 |
|
original_train_and_validation_indices ¶
original_train_and_validation_indices()
Get original training and validation indices for the dataloader.
Returns:
Type | Description |
---|---|
Tuple[List[int], List[int]]
|
Tuple containing lists of train and validation indices. |
Source code in flyvision/datasets/sintel.py
714 715 716 717 718 719 720 |
|