eqcctpro 0.6.1__py3-none-any.whl → 0.6.3__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.
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.
|
|
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
|
|
@@ -25,7 +24,7 @@ Requires-Dist: tensorboard==2.15.2
|
|
|
25
24
|
Requires-Dist: tensorboard-data-server==0.7.2
|
|
26
25
|
Requires-Dist: silence-tensorflow==1.2.3
|
|
27
26
|
Requires-Dist: scipy==1.15.1
|
|
28
|
-
Requires-Dist: protobuf==4.25.
|
|
27
|
+
Requires-Dist: protobuf==4.25.8
|
|
29
28
|
Requires-Dist: grpcio==1.70.0
|
|
30
29
|
Requires-Dist: absl-py==2.1.0
|
|
31
30
|
Requires-Dist: h5py==3.12.1
|
|
@@ -59,9 +58,9 @@ This method installs only the EQCCTPro package **without** the sample waveform d
|
|
|
59
58
|
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:
|
|
60
59
|
|
|
61
60
|
```sh
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
conda create --name yourenvironemntname python=3.10.14 -y
|
|
62
|
+
conda activate yourenvironemntname
|
|
63
|
+
python3 --version
|
|
65
64
|
```
|
|
66
65
|
Expected output:
|
|
67
66
|
```
|
|
@@ -70,19 +69,19 @@ Python 3.10.14
|
|
|
70
69
|
|
|
71
70
|
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.
|
|
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.
|
|
79
78
|
|
|
80
79
|
```sh
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
80
|
+
mkdir my_work_directory
|
|
81
|
+
cd my_work_directory
|
|
82
|
+
git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
83
|
+
cd eqcct
|
|
84
|
+
git sparse-checkout set eqcctpro
|
|
86
85
|
```
|
|
87
86
|
|
|
88
87
|
---
|
|
@@ -92,33 +91,23 @@ This method sets up EQCCTPro **with a pre-created conda environment and sample w
|
|
|
92
91
|
|
|
93
92
|
### **Step 1: Clone the EQCCTPro Repository**
|
|
94
93
|
```sh
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
94
|
+
mkdir my_work_directory
|
|
95
|
+
cd my_work_directory
|
|
96
|
+
git clone --depth 1 --filter=tree:0 https://github.com/ut-beg-texnet/eqcct.git --sparse
|
|
97
|
+
cd eqcct
|
|
98
|
+
git sparse-checkout set eqcctpro
|
|
100
99
|
```
|
|
101
100
|
|
|
102
101
|
### **Step 2: Create and Activate the Conda Environment**
|
|
103
102
|
A **pre-configured conda environment** is included in the repository to handle all dependencies.
|
|
104
103
|
|
|
105
104
|
```sh
|
|
106
|
-
|
|
107
|
-
|
|
105
|
+
conda env create -f environment.yml
|
|
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
|
-
[skevofilaxc] 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
|
|
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
|
---
|
|
@@ -131,7 +120,7 @@ To understand how **EQCCTPro** works, it is **highly recommended** to use provid
|
|
|
131
120
|
### **Step 1: Unzip the Sample Wavefrom Data**
|
|
132
121
|
After downloading the `.zip` file through the GitHub methods above, run:
|
|
133
122
|
```sh
|
|
134
|
-
|
|
123
|
+
unzip 230_stations_1_min_dt.zip
|
|
135
124
|
```
|
|
136
125
|
### **Step 2: Check and Understand the Directory Structure**
|
|
137
126
|
The extracted data will contain a timechunk subdirectories, comprised of multiple station directories:
|
|
@@ -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
|
-
- **`
|
|
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
|
|
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
|
-
-
|
|
470
|
-
- Must be a real value that is based on your
|
|
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
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
+
eqcctpro-0.6.3.dist-info/METADATA,sha256=euugKmeVRY_dwODJE8g7no0KXjc4yUSkt9QYi4VSsj8,31566
|
|
3
|
+
eqcctpro-0.6.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
eqcctpro-0.6.3.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
+
eqcctpro-0.6.3.dist-info/RECORD,,
|
eqcctpro-0.6.1.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
-
eqcctpro-0.6.1.dist-info/METADATA,sha256=VCY3roBm7hSF0snfHiL5mMDdgmVK0ky2a1aC8xjmRUQ,31847
|
|
3
|
-
eqcctpro-0.6.1.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
4
|
-
eqcctpro-0.6.1.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
-
eqcctpro-0.6.1.dist-info/RECORD,,
|
|
File without changes
|