hbinney commited on
Commit
f342e60
·
verified ·
1 Parent(s): b43a92d

Update README with Project 8 metadata

Browse files
Files changed (1) hide show
  1. README.md +26 -1
README.md CHANGED
@@ -39,5 +39,30 @@ This data in each hdf5 file includes the following
39
 
40
 
41
  ## Project 8
42
-
 
 
 
 
 
 
 
43
  ### Project 8 Dataset Field Description
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
 
41
  ## Project 8
42
+ The Project 8 dataset is broken into training, validation, and test datasets which are identically constructed.
43
+ All contain a set of electron events with randomized energy, pitch angle, and radius parameters.
44
+ The data are divided into hdf5 files with ~5000 electrons per file; each file is about 5 GB, with the exception of one, which has fewer electrons and is smaller.
45
+ There are about 50,000 electrons total in the dataset. The total dataset size is about 50 GB.
46
+ The train dataset contains 8 hdf5 files, the validation dataset has 1 hdf5 file, and the test dataset has 2 (including the smaller file).
47
+ The experiments presented in the publication use `output_ts_I + output_ts_I_cav_noise` and `output_ts_Q + output_ts_Q_cav_noise` as inputs (noisy in-phase and quadrature time series).
48
+ The target for regression is `energy_eV` (truth value for energy of the electron, in eV).
49
+ This data in each hdf5 file includes the following
50
  ### Project 8 Dataset Field Description
51
+
52
+ | Parameter | Type / Size | Description |
53
+ |-----------|-------------|-------------|
54
+ | `output_ts_I` | size=(24576,1), dtype=float32 | In-phase signal time series |
55
+ | `output_ts_Q` | size=(24576,1), dtype=float32 | Quadrature signal time series |
56
+ | `output_ts_I_cav_noise` | size=(24576,1), dtype=float32 | In-phase cavity (frequency-dependent) noise time series |
57
+ | `output_ts_Q_cav_noise` | size=(24576,1), dtype=float32 | Quadrature cavity (frequency-dependent) noise time series |
58
+ | `output_ts_I_gauss_noise` | size=(24576,1), dtype=float32 | In-phase Gaussian noise time series |
59
+ | `output_ts_Q_gauss_noise` | size=(24576,1), dtype=float32 | Quadrature Gaussian noise time series |
60
+ | `energy_eV` | dtype=float32 | Truth value for energy of the electron (target for regression), in eV |
61
+ | `avg_carrier_frequency_Hz` | dtype=float32 | Truth value for average cyclotron frequency of the electron, in Hz |
62
+ | `start_carrier_frequency_Hz` | dtype=float32 | Truth value for starting cyclotron frequency of the electron, in Hz |
63
+ | `avg_axial_frequency_Hz` | dtype=float32 | Truth value for average axial frequency of the electron, in Hz |
64
+ | `pitch_angle_deg` | dtype=float32 | Truth value for pitch angle (direction of the electron’s momentum with respect to the magnetic field) of the electron, in degrees |
65
+ | `radius_input_m` | dtype=float32 | Truth value for starting radius of the electron before one trajectory step (input value), in meters |
66
+ | `radius_m` | dtype=float32 | Truth value for starting radius of the electron after one trajectory step, in meters |
67
+ | `radius_phase` | dtype=float32 | Truth value for instantaneous polar angle in the X-Y plane of the electron’s starting position, in meters |
68
+ | `slope_Hz` | dtype=float32 | Truth value for slope of the track in spectrogram space, in Hz/s |