eqcctpro 0.4.7__tar.gz → 0.4.9__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,11 +1,11 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: eqcctpro
3
- Version: 0.4.7
3
+ Version: 0.4.9
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/
7
- Project-URL: Repository, https://github.com/ut-beg-texnet/eqcctpro
8
- Project-URL: Issues, https://github.com/ut-beg-texnet/eqcctpro/issues
7
+ Project-URL: Repository, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro
8
+ Project-URL: Issues, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro/issues
9
9
  Project-URL: Documentation, https://github.com/ut-beg-texnet/eqcct/blob/main/eqcctpro/README.md
10
10
  Requires-Python: >=3.10.14
11
11
  Description-Content-Type: text/markdown
@@ -55,14 +55,8 @@ It is **highly recommended** that first-time users pull the `EQCCTPro` folder, w
55
55
  ## **Method 1: Install EQCCTPro (No Sample Data)**
56
56
  This method installs only the EQCCTPro package **without** the sample waveform data.
57
57
 
58
- ### **Step 1: Install EQCCTPro**
59
- Run the following command:
60
- ```sh
61
- pip install eqcctpro
62
- ```
63
-
64
- ### **Step 2: Ensure Python 3.10.14 is Installed**
65
- EQCCTPro **requires Python 3.10.14 or higher**. If you don’t have it installed, you can create a conda environment with the correct Python version:
58
+ ### **Step 1: Create a Clean Conda Environment for the Install**
59
+ EQCCTPro **requires Python 3.10.14 or higher as well as minimum Tensorflow packages**. If you have a clean working environment, you can simply run `pip install eqcctpro`. However, if you have a nonclean environment, its highly recommended to create a new conda environment so that you can install the necessary packages safely with no issues. You can create a new conda environment with the correct Python version by using the following commands:
66
60
 
67
61
  ```sh
68
62
  [skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
@@ -74,13 +68,14 @@ Expected output:
74
68
  Python 3.10.14
75
69
  ```
76
70
 
77
- Now, reinstall EQCCTPro:
71
+ After activating your new conda environment, run the following command:
78
72
  ```sh
79
73
  [skevofilaxc] pip install eqcctpro
80
74
  ```
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.
81
76
 
82
77
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
83
- Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data.
78
+ Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
84
79
 
85
80
  ```sh
86
81
  [skevofilaxc] mkdir my_work_directory
@@ -350,6 +345,17 @@ The following input parameters need to be configurated for **EvaluateSystem** to
350
345
  - Allows for specific allocation and limitation of CPUs for a given EQCCTPro process
351
346
  - "I want this program to run only on these specific cores."
352
347
  - Must be at least 1 CPU if using GPUs (Ray needs CPUs to manage the Raylets (concurrent tasks), however the processing of the waveform is done on the GPU)
348
+ - **`starting_amount_of_stations (int)`: default = 1**
349
+ - For evaluating your system, you have the option to set a starting amount of stations you want to use in the test
350
+ - By default, the test will start using 1 station but now is configurable
351
+ - **`station_list_step_size (int)`: default = 1**
352
+ - You can set a step size for the station list that is generated
353
+ - 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]
354
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
355
+ - **`min_cpu_amount (int)`: default = 1**
356
+ - Is the minimum amount of CPUs you want to start your trials with
357
+ - By default, trials will start iterating with 1 CPU up to the maximum allocated
358
+ - Can now set a value as the starting point, such as 15 CPUs up to the maximum of for instance 25
353
359
  - **`set_vram_mb (float)`**
354
360
  - Value of the maximum amount of VRAM EQCCTPro can use
355
361
  - 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
@@ -357,6 +363,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
357
363
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
358
364
  - Non-existing GPU IDs will cause the code to exit
359
365
 
366
+
360
367
  ---
361
368
  ### **Finding Optimal CPU/GPU Configurations**
362
369
  After running **EvalutateSystem**, you can use either the **OptimalCPUConfigurationFinder** or the **OptimalGPUConfigurationFinder** determine the best CPU or GPU configurations (respectively) for your specific usecase:
@@ -1,36 +1,3 @@
1
- Metadata-Version: 2.2
2
- Name: eqcctpro
3
- Version: 0.4.7
4
- Summary: EQCCTPro: A powerful seismic event detection toolkit
5
- Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
6
- Project-URL: Homepage, https://pypi.org/project/eqcctpro/
7
- Project-URL: Repository, https://github.com/ut-beg-texnet/eqcctpro
8
- Project-URL: Issues, https://github.com/ut-beg-texnet/eqcctpro/issues
9
- Project-URL: Documentation, https://github.com/ut-beg-texnet/eqcct/blob/main/eqcctpro/README.md
10
- Requires-Python: >=3.10.14
11
- Description-Content-Type: text/markdown
12
- Requires-Dist: numpy==1.26.4
13
- Requires-Dist: pandas==2.2.3
14
- Requires-Dist: matplotlib==3.10.0
15
- Requires-Dist: obspy==1.4.1
16
- Requires-Dist: progress==1.6
17
- Requires-Dist: psutil==6.1.1
18
- Requires-Dist: ray==2.42.1
19
- Requires-Dist: schedule==1.2.2
20
- Requires-Dist: sdnotify==0.3.2
21
- Requires-Dist: tensorflow<2.19,>=2.15
22
- Requires-Dist: tensorflow-estimator<2.19,>=2.15
23
- Requires-Dist: tensorflow-io-gcs-filesystem==0.37.1
24
- Requires-Dist: tensorboard==2.15.2
25
- Requires-Dist: tensorboard-data-server==0.7.2
26
- Requires-Dist: silence-tensorflow==1.2.3
27
- Requires-Dist: scipy==1.15.1
28
- Requires-Dist: protobuf==4.25.6
29
- Requires-Dist: grpcio==1.70.0
30
- Requires-Dist: absl-py==2.1.0
31
- Requires-Dist: h5py==3.12.1
32
- Requires-Dist: pynvml==12.0.0
33
-
34
1
  # **EQCCTPro: powerful seismic event detection toolkit**
35
2
 
36
3
  EQCCTPro is a high-performace seismic event detection and processing framework that leverages DL-pickers, like EQCCT, to process seismic data efficiently. It enables users to fully leverage the computational ability of their computing resources for maximum performance for simultaneous seismic waveform processing, achieving real-time performance by identifying and utilizing the optimal computational configurations for their hardware. More information about the development, capabilities, and real-world applications about EQCCTPro can be read about in our research publication here.
@@ -55,14 +22,8 @@ It is **highly recommended** that first-time users pull the `EQCCTPro` folder, w
55
22
  ## **Method 1: Install EQCCTPro (No Sample Data)**
56
23
  This method installs only the EQCCTPro package **without** the sample waveform data.
57
24
 
58
- ### **Step 1: Install EQCCTPro**
59
- Run the following command:
60
- ```sh
61
- pip install eqcctpro
62
- ```
63
-
64
- ### **Step 2: Ensure Python 3.10.14 is Installed**
65
- EQCCTPro **requires Python 3.10.14 or higher**. If you don’t have it installed, you can create a conda environment with the correct Python version:
25
+ ### **Step 1: Create a Clean Conda Environment for the Install**
26
+ EQCCTPro **requires Python 3.10.14 or higher as well as minimum Tensorflow packages**. If you have a clean working environment, you can simply run `pip install eqcctpro`. However, if you have a nonclean environment, its highly recommended to create a new conda environment so that you can install the necessary packages safely with no issues. You can create a new conda environment with the correct Python version by using the following commands:
66
27
 
67
28
  ```sh
68
29
  [skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
@@ -74,13 +35,14 @@ Expected output:
74
35
  Python 3.10.14
75
36
  ```
76
37
 
77
- Now, reinstall EQCCTPro:
38
+ After activating your new conda environment, run the following command:
78
39
  ```sh
79
40
  [skevofilaxc] pip install eqcctpro
80
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.
81
43
 
82
44
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
83
- Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data.
45
+ Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
84
46
 
85
47
  ```sh
86
48
  [skevofilaxc] mkdir my_work_directory
@@ -350,6 +312,17 @@ The following input parameters need to be configurated for **EvaluateSystem** to
350
312
  - Allows for specific allocation and limitation of CPUs for a given EQCCTPro process
351
313
  - "I want this program to run only on these specific cores."
352
314
  - Must be at least 1 CPU if using GPUs (Ray needs CPUs to manage the Raylets (concurrent tasks), however the processing of the waveform is done on the GPU)
315
+ - **`starting_amount_of_stations (int)`: default = 1**
316
+ - For evaluating your system, you have the option to set a starting amount of stations you want to use in the test
317
+ - By default, the test will start using 1 station but now is configurable
318
+ - **`station_list_step_size (int)`: default = 1**
319
+ - You can set a step size for the station list that is generated
320
+ - 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]
321
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
322
+ - **`min_cpu_amount (int)`: default = 1**
323
+ - Is the minimum amount of CPUs you want to start your trials with
324
+ - By default, trials will start iterating with 1 CPU up to the maximum allocated
325
+ - Can now set a value as the starting point, such as 15 CPUs up to the maximum of for instance 25
353
326
  - **`set_vram_mb (float)`**
354
327
  - Value of the maximum amount of VRAM EQCCTPro can use
355
328
  - 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
@@ -357,6 +330,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
357
330
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
358
331
  - Non-existing GPU IDs will cause the code to exit
359
332
 
333
+
360
334
  ---
361
335
  ### **Finding Optimal CPU/GPU Configurations**
362
336
  After running **EvalutateSystem**, you can use either the **OptimalCPUConfigurationFinder** or the **OptimalGPUConfigurationFinder** determine the best CPU or GPU configurations (respectively) for your specific usecase:
@@ -1,3 +1,36 @@
1
+ Metadata-Version: 2.2
2
+ Name: eqcctpro
3
+ Version: 0.4.9
4
+ Summary: EQCCTPro: A powerful seismic event detection toolkit
5
+ Author-email: Constantinos Skevofilax <constantinos.skevofilax@austin.utexas.edu>, Victor Salles <victor.salles@beg.utexas.edu>
6
+ Project-URL: Homepage, https://pypi.org/project/eqcctpro/
7
+ Project-URL: Repository, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro
8
+ Project-URL: Issues, https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro/issues
9
+ Project-URL: Documentation, https://github.com/ut-beg-texnet/eqcct/blob/main/eqcctpro/README.md
10
+ Requires-Python: >=3.10.14
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: numpy==1.26.4
13
+ Requires-Dist: pandas==2.2.3
14
+ Requires-Dist: matplotlib==3.10.0
15
+ Requires-Dist: obspy==1.4.1
16
+ Requires-Dist: progress==1.6
17
+ Requires-Dist: psutil==6.1.1
18
+ Requires-Dist: ray==2.42.1
19
+ Requires-Dist: schedule==1.2.2
20
+ Requires-Dist: sdnotify==0.3.2
21
+ Requires-Dist: tensorflow<2.19,>=2.15
22
+ Requires-Dist: tensorflow-estimator<2.19,>=2.15
23
+ Requires-Dist: tensorflow-io-gcs-filesystem==0.37.1
24
+ Requires-Dist: tensorboard==2.15.2
25
+ Requires-Dist: tensorboard-data-server==0.7.2
26
+ Requires-Dist: silence-tensorflow==1.2.3
27
+ Requires-Dist: scipy==1.15.1
28
+ Requires-Dist: protobuf==4.25.6
29
+ Requires-Dist: grpcio==1.70.0
30
+ Requires-Dist: absl-py==2.1.0
31
+ Requires-Dist: h5py==3.12.1
32
+ Requires-Dist: pynvml==12.0.0
33
+
1
34
  # **EQCCTPro: powerful seismic event detection toolkit**
2
35
 
3
36
  EQCCTPro is a high-performace seismic event detection and processing framework that leverages DL-pickers, like EQCCT, to process seismic data efficiently. It enables users to fully leverage the computational ability of their computing resources for maximum performance for simultaneous seismic waveform processing, achieving real-time performance by identifying and utilizing the optimal computational configurations for their hardware. More information about the development, capabilities, and real-world applications about EQCCTPro can be read about in our research publication here.
@@ -22,14 +55,8 @@ It is **highly recommended** that first-time users pull the `EQCCTPro` folder, w
22
55
  ## **Method 1: Install EQCCTPro (No Sample Data)**
23
56
  This method installs only the EQCCTPro package **without** the sample waveform data.
24
57
 
25
- ### **Step 1: Install EQCCTPro**
26
- Run the following command:
27
- ```sh
28
- pip install eqcctpro
29
- ```
30
-
31
- ### **Step 2: Ensure Python 3.10.14 is Installed**
32
- EQCCTPro **requires Python 3.10.14 or higher**. If you don’t have it installed, you can create a conda environment with the correct Python version:
58
+ ### **Step 1: Create a Clean Conda Environment for the Install**
59
+ EQCCTPro **requires Python 3.10.14 or higher as well as minimum Tensorflow packages**. If you have a clean working environment, you can simply run `pip install eqcctpro`. However, if you have a nonclean environment, its highly recommended to create a new conda environment so that you can install the necessary packages safely with no issues. You can create a new conda environment with the correct Python version by using the following commands:
33
60
 
34
61
  ```sh
35
62
  [skevofilaxc] conda create --name yourenvironemntname python=3.10.14 -y
@@ -41,13 +68,14 @@ Expected output:
41
68
  Python 3.10.14
42
69
  ```
43
70
 
44
- Now, reinstall EQCCTPro:
71
+ After activating your new conda environment, run the following command:
45
72
  ```sh
46
73
  [skevofilaxc] pip install eqcctpro
47
74
  ```
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.
48
76
 
49
77
  ### **Step 3 (Optional): Pull the EQCCTPro Folder**
50
- Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data.
78
+ Although not required, **it is highly recommended** to pull the `EQCCTPro` folder to gain access to sample waveform data for testing.
51
79
 
52
80
  ```sh
53
81
  [skevofilaxc] mkdir my_work_directory
@@ -317,6 +345,17 @@ The following input parameters need to be configurated for **EvaluateSystem** to
317
345
  - Allows for specific allocation and limitation of CPUs for a given EQCCTPro process
318
346
  - "I want this program to run only on these specific cores."
319
347
  - Must be at least 1 CPU if using GPUs (Ray needs CPUs to manage the Raylets (concurrent tasks), however the processing of the waveform is done on the GPU)
348
+ - **`starting_amount_of_stations (int)`: default = 1**
349
+ - For evaluating your system, you have the option to set a starting amount of stations you want to use in the test
350
+ - By default, the test will start using 1 station but now is configurable
351
+ - **`station_list_step_size (int)`: default = 1**
352
+ - You can set a step size for the station list that is generated
353
+ - 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]
354
+ - Using 1 will use the default step size of 1-10, then step size of 5 up to station2use
355
+ - **`min_cpu_amount (int)`: default = 1**
356
+ - Is the minimum amount of CPUs you want to start your trials with
357
+ - By default, trials will start iterating with 1 CPU up to the maximum allocated
358
+ - Can now set a value as the starting point, such as 15 CPUs up to the maximum of for instance 25
320
359
  - **`set_vram_mb (float)`**
321
360
  - Value of the maximum amount of VRAM EQCCTPro can use
322
361
  - 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
@@ -324,6 +363,7 @@ The following input parameters need to be configurated for **EvaluateSystem** to
324
363
  - List of GPU IDs on your computer you want to use if `mode = 'gpu'`
325
364
  - Non-existing GPU IDs will cause the code to exit
326
365
 
366
+
327
367
  ---
328
368
  ### **Finding Optimal CPU/GPU Configurations**
329
369
  After running **EvalutateSystem**, you can use either the **OptimalCPUConfigurationFinder** or the **OptimalGPUConfigurationFinder** determine the best CPU or GPU configurations (respectively) for your specific usecase:
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "eqcctpro"
7
- version = "0.4.7"
7
+ version = "0.4.9"
8
8
  description = "EQCCTPro: A powerful seismic event detection toolkit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10.14"
@@ -39,8 +39,8 @@ dependencies = [
39
39
 
40
40
  [project.urls]
41
41
  Homepage = "https://pypi.org/project/eqcctpro/"
42
- Repository = "https://github.com/ut-beg-texnet/eqcctpro"
43
- Issues = "https://github.com/ut-beg-texnet/eqcctpro/issues"
42
+ Repository = "https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro"
43
+ Issues = "https://github.com/ut-beg-texnet/eqcct/tree/main/eqcctpro/issues"
44
44
  Documentation = "https://github.com/ut-beg-texnet/eqcct/blob/main/eqcctpro/README.md"
45
45
 
46
46
  [tool.setuptools.packages.find]
File without changes
File without changes
File without changes