simcats-datasets 2.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- simcats_datasets/__init__.py +2 -0
- simcats_datasets/generation/__init__.py +6 -0
- simcats_datasets/generation/_create_dataset.py +221 -0
- simcats_datasets/generation/_create_simulated_dataset.py +372 -0
- simcats_datasets/loading/__init__.py +8 -0
- simcats_datasets/loading/_load_dataset.py +177 -0
- simcats_datasets/loading/load_ground_truth.py +486 -0
- simcats_datasets/loading/pytorch.py +426 -0
- simcats_datasets/support_functions/__init__.py +1 -0
- simcats_datasets/support_functions/_json_encoders.py +51 -0
- simcats_datasets/support_functions/clip_line_to_rectangle.py +191 -0
- simcats_datasets/support_functions/convert_lines.py +110 -0
- simcats_datasets/support_functions/data_preprocessing.py +351 -0
- simcats_datasets/support_functions/get_lead_transition_labels.py +102 -0
- simcats_datasets/support_functions/pytorch_format_output.py +170 -0
- simcats_datasets-2.4.0.dist-info/LICENSE +674 -0
- simcats_datasets-2.4.0.dist-info/METADATA +837 -0
- simcats_datasets-2.4.0.dist-info/RECORD +20 -0
- simcats_datasets-2.4.0.dist-info/WHEEL +5 -0
- simcats_datasets-2.4.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
simcats_datasets/__init__.py,sha256=PoW7XP6y_JF8Dh7_yZkldlityF3uF6K1bYMHt4UdbxA,37
|
|
2
|
+
simcats_datasets/generation/__init__.py,sha256=yjmfaDuZVqAD2EhLkmNIP1HEiuPTXgBIZVhBO8otGTE,344
|
|
3
|
+
simcats_datasets/generation/_create_dataset.py,sha256=Codo2PApUI3D-1yK9fz3PB2ojCXT-BMs6xHmhzl-m6w,13825
|
|
4
|
+
simcats_datasets/generation/_create_simulated_dataset.py,sha256=ELP8Nu35glhF6WDcdi_K5B9e1jnX5erFgMXiUs77Oik,17083
|
|
5
|
+
simcats_datasets/loading/__init__.py,sha256=KiaJAJX0uIBg_bbZ8yYmolanfd6oV8JbOBxnct3U3TQ,287
|
|
6
|
+
simcats_datasets/loading/_load_dataset.py,sha256=R_UE9OBMyDFTG6FnGjgiho4DMsW2fbQHXxglNgx_t8w,9243
|
|
7
|
+
simcats_datasets/loading/load_ground_truth.py,sha256=-uK2Cs0NsaSamh3TSgjEPgHg9GuZcYZ87X9E5M6_fS4,30488
|
|
8
|
+
simcats_datasets/loading/pytorch.py,sha256=Lyj8_GDp5wE9H5UfYaJZNurbkw0_pKpnxs5iZthG1G0,25772
|
|
9
|
+
simcats_datasets/support_functions/__init__.py,sha256=mWmt41IjosziXPd86JiR-O7A_k06IMnYej2h1YsNMUo,73
|
|
10
|
+
simcats_datasets/support_functions/_json_encoders.py,sha256=BZrVXtUqwmqT0ki-jnWraYUnNMy0l18tJWdFjzJSgqg,1435
|
|
11
|
+
simcats_datasets/support_functions/clip_line_to_rectangle.py,sha256=pqIrlr54dfvwyBnUhAhnNVp5LxM3w0NaCFS-m8FwWWY,8458
|
|
12
|
+
simcats_datasets/support_functions/convert_lines.py,sha256=QprEqovIk1DjryT7N85OmAuj9QWyEBzircpDOyuoPBI,5024
|
|
13
|
+
simcats_datasets/support_functions/data_preprocessing.py,sha256=FisceMKR2er8RRs8ighV-vhvkhtnIAI9-Y9XCMdngdA,12633
|
|
14
|
+
simcats_datasets/support_functions/get_lead_transition_labels.py,sha256=-TnTxmJuxokD1Vprb9-IuE62Ys82HvlJ8VEQXCx7tY0,5691
|
|
15
|
+
simcats_datasets/support_functions/pytorch_format_output.py,sha256=UogMzHW804zJAn_JXGC2UdhLZKTyWqfx244ald7rVzc,7786
|
|
16
|
+
simcats_datasets-2.4.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
17
|
+
simcats_datasets-2.4.0.dist-info/METADATA,sha256=aLFco4gneE0H3M9zZqsx24oj-rjU4K767tuj-q7LK9k,48906
|
|
18
|
+
simcats_datasets-2.4.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
19
|
+
simcats_datasets-2.4.0.dist-info/top_level.txt,sha256=6PQ9YF0TvHYNZHES-hfT1RCExihiv4o5J_O2JyYea74,17
|
|
20
|
+
simcats_datasets-2.4.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
simcats_datasets
|