eqcctpro 0.4.7__py3-none-any.whl → 0.4.8__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.2
|
|
2
2
|
Name: eqcctpro
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.8
|
|
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/
|
|
@@ -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
|
|
59
|
-
|
|
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
|
-
|
|
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:
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
+
eqcctpro-0.4.8.dist-info/METADATA,sha256=LGJ-8Ybjlqz6JK9O_2zDj0XcV3AifWl1oSlSy52y6g0,23016
|
|
3
|
+
eqcctpro-0.4.8.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
4
|
+
eqcctpro-0.4.8.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
+
eqcctpro-0.4.8.dist-info/RECORD,,
|
eqcctpro-0.4.7.dist-info/RECORD
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
eqcctpro/__init__.py,sha256=JK27ZrLxVDNHsdorp7UAislI8haH23rZhnEivVM7hgA,141
|
|
2
|
-
eqcctpro-0.4.7.dist-info/METADATA,sha256=Qjzli5w8XTma5poz8X8lYOoTE9eSGwAhcJrBLqIusHE,21567
|
|
3
|
-
eqcctpro-0.4.7.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
4
|
-
eqcctpro-0.4.7.dist-info/top_level.txt,sha256=u0cu2JdF7Z0ob7y4XdUCLoSGp_xOudAYz-fbsQ-B1yY,9
|
|
5
|
-
eqcctpro-0.4.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|