eqcctpro 0.6.2__tar.gz → 0.6.3__tar.gz

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.

Potentially problematic release.


This version of eqcctpro might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eqcctpro
3
- Version: 0.6.2
3
+ Version: 0.6.3
4
4
  Summary: EQCCTPro: A powerful seismic event detection toolkit
5
5
  Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
6
6
  Project-URL: Homepage, https://pypi.org/project/eqcctpro/
@@ -13,7 +13,6 @@ Requires-Dist: numpy==1.26.4
13
13
  Requires-Dist: pandas==2.2.3
14
14
  Requires-Dist: matplotlib==3.10.0
15
15
  Requires-Dist: obspy==1.4.1
16
- Requires-Dist: progress==1.6
17
16
  Requires-Dist: psutil==6.1.1
18
17
  Requires-Dist: ray==2.42.1
19
18
  Requires-Dist: schedule==1.2.2
@@ -72,7 +71,7 @@ After activating your new conda environment, run the following command:
72
71
  ```sh
73
72
  pip install eqcctpro
74
73
  ```
75
- You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. Youcan pull the waveform data either by downloading the .zip file from the repository or by following step 3.
74
+ You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. You can pull the waveform data either by downloading the .zip file from the repository or by following step 3.
76
75
 
77
76
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
78
77
  Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
@@ -107,18 +106,8 @@ conda env create -f environment.yml
107
106
  conda activate eqcctpro
108
107
  ```
109
108
 
110
- ### **Step 3: Install EQCCTPro**
111
- After activating the environment, install the EQCCTPro package:
112
- ```sh
113
- pip install eqcctpro
114
- ```
115
-
116
- This will install any remaining dependencies needed for **EQCCTPro**.
117
-
118
- ---
119
-
120
109
  ## **More Information**
121
- For additional details and package updates, visit the **EQCCTPro PyPI page**:
110
+ For additional package updates, continue to check either this repository or visit the **EQCCTPro PyPI page**:
122
111
  🔗 [EQCCTPro on PyPI](https://pypi.org/project/eqcctpro/)
123
112
 
124
113
  ---
@@ -385,7 +374,7 @@ the trial data will be available and can be used to identify the optimal input p
385
374
 
386
375
  The following input parameters need to be configurated for **EvaluateSystem** to evaluate your system based on your desired utilization of EQCCTPro:
387
376
 
388
- - **`mode (str)`**
377
+ - **`eval_mode (str)`**
389
378
  - Can be either `cpu` or `gpu`
390
379
  - Tells `EvaluateSystem` which computing approach the trials should it iterate with
391
380
  - **`intra_threads (int)`: default = 1**
@@ -434,7 +423,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
434
423
  - **`station_list_step_size (int)`: default = 1**
435
424
  - You can set a step size for the station list that is generated
436
425
  - For example if the stepsize is set to 10 and you start with 50 stations with a max of 100, then your list would be: [50, 60, 70, 80, 80, 100]
437
- - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
426
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to stations2use
438
427
  - **`min_conc_stations (int)`: default = 1**
439
428
  - Is the minimum amount of concurrent stations predictions you want each trial iteration to start with
440
429
  - By default, if `min_conc_predictions` and `conc_predictions_step_size` are set to 1, a custom step size iteration will be applied to test the 50 sample waveforms. The sequence follows: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, n+5, 50].
@@ -466,8 +455,9 @@ The following input parameters need to be configurated for **EvaluateSystem** to
466
455
  - A temporary directory to store all temp files produced by EQCCTPro
467
456
  - Used to help ease system cleanup and to not write to system's default temporary directory
468
457
  - **`set_vram_mb (float)`**
469
- - Value of the maximum amount of VRAM EQCCTPro can use
470
- - Must be a real value that is based on your hardware's physical memory space, if it exceeds the space the code will break due to OutOfMemoryError
458
+ - Maximum amount of VRAM each Raylet can use (float).
459
+ - Must be a real value that is based on your GPU's physical VRAM space, if it exceeds the space the code will break due to OutOfMemoryError
460
+ - Good rule of thumb for calculating `set_vram_mb` = (GPU VRAM * .90 (to be safe)) / number_of_concurrent_station_predictions * number_of_concurrent_timechunk_predictions
471
461
  - **`selected_gpus (list)`: default = None**
472
462
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
473
463
  - Non-existing GPU IDs will cause the code to exit
@@ -39,7 +39,7 @@ After activating your new conda environment, run the following command:
39
39
  ```sh
40
40
  pip install eqcctpro
41
41
  ```
42
- You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. Youcan pull the waveform data either by downloading the .zip file from the repository or by following step 3.
42
+ You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. You can pull the waveform data either by downloading the .zip file from the repository or by following step 3.
43
43
 
44
44
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
45
45
  Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
@@ -74,18 +74,8 @@ conda env create -f environment.yml
74
74
  conda activate eqcctpro
75
75
  ```
76
76
 
77
- ### **Step 3: Install EQCCTPro**
78
- After activating the environment, install the EQCCTPro package:
79
- ```sh
80
- pip install eqcctpro
81
- ```
82
-
83
- This will install any remaining dependencies needed for **EQCCTPro**.
84
-
85
- ---
86
-
87
77
  ## **More Information**
88
- For additional details and package updates, visit the **EQCCTPro PyPI page**:
78
+ For additional package updates, continue to check either this repository or visit the **EQCCTPro PyPI page**:
89
79
  🔗 [EQCCTPro on PyPI](https://pypi.org/project/eqcctpro/)
90
80
 
91
81
  ---
@@ -352,7 +342,7 @@ the trial data will be available and can be used to identify the optimal input p
352
342
 
353
343
  The following input parameters need to be configurated for **EvaluateSystem** to evaluate your system based on your desired utilization of EQCCTPro:
354
344
 
355
- - **`mode (str)`**
345
+ - **`eval_mode (str)`**
356
346
  - Can be either `cpu` or `gpu`
357
347
  - Tells `EvaluateSystem` which computing approach the trials should it iterate with
358
348
  - **`intra_threads (int)`: default = 1**
@@ -401,7 +391,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
401
391
  - **`station_list_step_size (int)`: default = 1**
402
392
  - You can set a step size for the station list that is generated
403
393
  - For example if the stepsize is set to 10 and you start with 50 stations with a max of 100, then your list would be: [50, 60, 70, 80, 80, 100]
404
- - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
394
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to stations2use
405
395
  - **`min_conc_stations (int)`: default = 1**
406
396
  - Is the minimum amount of concurrent stations predictions you want each trial iteration to start with
407
397
  - By default, if `min_conc_predictions` and `conc_predictions_step_size` are set to 1, a custom step size iteration will be applied to test the 50 sample waveforms. The sequence follows: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, n+5, 50].
@@ -433,8 +423,9 @@ The following input parameters need to be configurated for **EvaluateSystem** to
433
423
  - A temporary directory to store all temp files produced by EQCCTPro
434
424
  - Used to help ease system cleanup and to not write to system's default temporary directory
435
425
  - **`set_vram_mb (float)`**
436
- - Value of the maximum amount of VRAM EQCCTPro can use
437
- - Must be a real value that is based on your hardware's physical memory space, if it exceeds the space the code will break due to OutOfMemoryError
426
+ - Maximum amount of VRAM each Raylet can use (float).
427
+ - Must be a real value that is based on your GPU's physical VRAM space, if it exceeds the space the code will break due to OutOfMemoryError
428
+ - Good rule of thumb for calculating `set_vram_mb` = (GPU VRAM * .90 (to be safe)) / number_of_concurrent_station_predictions * number_of_concurrent_timechunk_predictions
438
429
  - **`selected_gpus (list)`: default = None**
439
430
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
440
431
  - Non-existing GPU IDs will cause the code to exit
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: eqcctpro
3
- Version: 0.6.2
3
+ Version: 0.6.3
4
4
  Summary: EQCCTPro: A powerful seismic event detection toolkit
5
5
  Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
6
6
  Project-URL: Homepage, https://pypi.org/project/eqcctpro/
@@ -13,7 +13,6 @@ Requires-Dist: numpy==1.26.4
13
13
  Requires-Dist: pandas==2.2.3
14
14
  Requires-Dist: matplotlib==3.10.0
15
15
  Requires-Dist: obspy==1.4.1
16
- Requires-Dist: progress==1.6
17
16
  Requires-Dist: psutil==6.1.1
18
17
  Requires-Dist: ray==2.42.1
19
18
  Requires-Dist: schedule==1.2.2
@@ -72,7 +71,7 @@ After activating your new conda environment, run the following command:
72
71
  ```sh
73
72
  pip install eqcctpro
74
73
  ```
75
- You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. Youcan pull the waveform data either by downloading the .zip file from the repository or by following step 3.
74
+ You will have access to EQCCTPro and its functionality. However you will not have immediate access to the provided sample waveform data to use for testing. You can pull the waveform data either by downloading the .zip file from the repository or by following step 3.
76
75
 
77
76
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
78
77
  Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
@@ -107,18 +106,8 @@ conda env create -f environment.yml
107
106
  conda activate eqcctpro
108
107
  ```
109
108
 
110
- ### **Step 3: Install EQCCTPro**
111
- After activating the environment, install the EQCCTPro package:
112
- ```sh
113
- pip install eqcctpro
114
- ```
115
-
116
- This will install any remaining dependencies needed for **EQCCTPro**.
117
-
118
- ---
119
-
120
109
  ## **More Information**
121
- For additional details and package updates, visit the **EQCCTPro PyPI page**:
110
+ For additional package updates, continue to check either this repository or visit the **EQCCTPro PyPI page**:
122
111
  🔗 [EQCCTPro on PyPI](https://pypi.org/project/eqcctpro/)
123
112
 
124
113
  ---
@@ -385,7 +374,7 @@ the trial data will be available and can be used to identify the optimal input p
385
374
 
386
375
  The following input parameters need to be configurated for **EvaluateSystem** to evaluate your system based on your desired utilization of EQCCTPro:
387
376
 
388
- - **`mode (str)`**
377
+ - **`eval_mode (str)`**
389
378
  - Can be either `cpu` or `gpu`
390
379
  - Tells `EvaluateSystem` which computing approach the trials should it iterate with
391
380
  - **`intra_threads (int)`: default = 1**
@@ -434,7 +423,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
434
423
  - **`station_list_step_size (int)`: default = 1**
435
424
  - You can set a step size for the station list that is generated
436
425
  - For example if the stepsize is set to 10 and you start with 50 stations with a max of 100, then your list would be: [50, 60, 70, 80, 80, 100]
437
- - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
426
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to stations2use
438
427
  - **`min_conc_stations (int)`: default = 1**
439
428
  - Is the minimum amount of concurrent stations predictions you want each trial iteration to start with
440
429
  - By default, if `min_conc_predictions` and `conc_predictions_step_size` are set to 1, a custom step size iteration will be applied to test the 50 sample waveforms. The sequence follows: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, n+5, 50].
@@ -466,8 +455,9 @@ The following input parameters need to be configurated for **EvaluateSystem** to
466
455
  - A temporary directory to store all temp files produced by EQCCTPro
467
456
  - Used to help ease system cleanup and to not write to system's default temporary directory
468
457
  - **`set_vram_mb (float)`**
469
- - Value of the maximum amount of VRAM EQCCTPro can use
470
- - Must be a real value that is based on your hardware's physical memory space, if it exceeds the space the code will break due to OutOfMemoryError
458
+ - Maximum amount of VRAM each Raylet can use (float).
459
+ - Must be a real value that is based on your GPU's physical VRAM space, if it exceeds the space the code will break due to OutOfMemoryError
460
+ - Good rule of thumb for calculating `set_vram_mb` = (GPU VRAM * .90 (to be safe)) / number_of_concurrent_station_predictions * number_of_concurrent_timechunk_predictions
471
461
  - **`selected_gpus (list)`: default = None**
472
462
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
473
463
  - Non-existing GPU IDs will cause the code to exit
@@ -2,7 +2,6 @@ numpy==1.26.4
2
2
  pandas==2.2.3
3
3
  matplotlib==3.10.0
4
4
  obspy==1.4.1
5
- progress==1.6
6
5
  psutil==6.1.1
7
6
  ray==2.42.1
8
7
  schedule==1.2.2
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eqcctpro"
7
- version = "0.6.2"
7
+ version = "0.6.3"
8
8
  description = "EQCCTPro: A powerful seismic event detection toolkit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10.14"
@@ -18,7 +18,6 @@ dependencies = [
18
18
  "pandas==2.2.3",
19
19
  "matplotlib==3.10.0",
20
20
  "obspy==1.4.1",
21
- "progress==1.6",
22
21
  "psutil==6.1.1",
23
22
  "ray==2.42.1",
24
23
  "schedule==1.2.2",
File without changes
File without changes