├── .github └── workflows │ ├── CI.yml │ └── deploy-docs.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── demo ├── app │ ├── convert-time-data-to-json.f90 │ ├── histogram-plot.gnu │ ├── infer-aerosol.f90 │ ├── tensor-statistics.F90 │ ├── train-cloud-microphysics.F90 │ └── unified-histogram-plot.gnu ├── fpm.toml ├── include ├── setup.sh ├── src │ ├── NetCDF_file_m.f90 │ ├── NetCDF_file_s.F90 │ ├── NetCDF_variable_m.f90 │ ├── NetCDF_variable_s.F90 │ ├── default_m.f90 │ ├── default_s.f90 │ ├── histogram_m.f90 │ ├── histogram_s.F90 │ ├── occupancy_m.f90 │ ├── occupancy_s.F90 │ ├── phase_space_bin_m.f90 │ ├── run-fpm.sh-header │ ├── time_data_m.F90 │ └── time_data_s.F90 ├── test │ ├── driver.f90 │ ├── histogram_test_m.f90 │ ├── netCDF_file_test_m.f90 │ └── time_data_test_m.f90 ├── train.sh ├── training_configuration.json └── training_data_files.json ├── doc └── uml │ └── class-diagram.md ├── example ├── concurrent-inferences.f90 ├── learn-addition.F90 ├── learn-exponentiation.F90 ├── learn-multiplication.F90 ├── learn-power-series.F90 ├── learn-saturated-mixing-ratio.F90 ├── print-training-configuration.F90 ├── read-query-infer.f90 ├── supporting-modules │ └── saturated_mixing_ratio_m.f90 ├── train-and-write.F90 └── write-read-infer.F90 ├── ford.md ├── fpm.toml ├── include ├── compound_assertions.h └── language-support.F90 ├── scripts └── create-single-source-file-programs.sh ├── src ├── fiats │ ├── activation_m.f90 │ ├── activation_s.F90 │ ├── double_precision_file_m.f90 │ ├── double_precision_file_s.f90 │ ├── double_precision_string_m.f90 │ ├── double_precision_string_s.f90 │ ├── hyperparameters_m.f90 │ ├── hyperparameters_s.F90 │ ├── input_output_pair_m.f90 │ ├── input_output_pair_s.f90 │ ├── kind_parameters_m.f90 │ ├── layer_m.f90 │ ├── layer_s.F90 │ ├── metadata_m.f90 │ ├── metadata_s.F90 │ ├── mini_batch_m.f90 │ ├── mini_batch_s.f90 │ ├── network_configuration_m.f90 │ ├── network_configuration_s.F90 │ ├── neural_network_m.f90 │ ├── neural_network_s.F90 │ ├── neuron_m.f90 │ ├── neuron_s.F90 │ ├── tensor_m.f90 │ ├── tensor_map_m.f90 │ ├── tensor_map_s.F90 │ ├── tensor_names_m.f90 │ ├── tensor_names_s.F90 │ ├── tensor_s.f90 │ ├── trainable_network_m.f90 │ ├── trainable_network_s.F90 │ ├── training_configuration_m.f90 │ ├── training_configuration_s.F90 │ ├── training_data_files_m.f90 │ ├── training_data_files_s.F90 │ ├── unmapped_network_s.F90 │ └── workspace_s.F90 └── fiats_m.f90 └── test ├── asymmetric_network_test_m.F90 ├── driver.f90 ├── hyperparameters_test_m.F90 ├── metadata_test_m.F90 ├── network_configuration_test_m.F90 ├── neural_network_test_m.F90 ├── tensor_map_test_m.F90 ├── tensor_names_test.f90 ├── tensor_test_m.f90 ├── trainable_network_test_m.F90 ├── training_configuration_test_m.F90 └── training_data_files_test_m.F90 /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/README.md -------------------------------------------------------------------------------- /demo/app/convert-time-data-to-json.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/convert-time-data-to-json.f90 -------------------------------------------------------------------------------- /demo/app/histogram-plot.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/histogram-plot.gnu -------------------------------------------------------------------------------- /demo/app/infer-aerosol.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/infer-aerosol.f90 -------------------------------------------------------------------------------- /demo/app/tensor-statistics.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/tensor-statistics.F90 -------------------------------------------------------------------------------- /demo/app/train-cloud-microphysics.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/train-cloud-microphysics.F90 -------------------------------------------------------------------------------- /demo/app/unified-histogram-plot.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/app/unified-histogram-plot.gnu -------------------------------------------------------------------------------- /demo/fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/fpm.toml -------------------------------------------------------------------------------- /demo/include: -------------------------------------------------------------------------------- 1 | ../include -------------------------------------------------------------------------------- /demo/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/setup.sh -------------------------------------------------------------------------------- /demo/src/NetCDF_file_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/NetCDF_file_m.f90 -------------------------------------------------------------------------------- /demo/src/NetCDF_file_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/NetCDF_file_s.F90 -------------------------------------------------------------------------------- /demo/src/NetCDF_variable_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/NetCDF_variable_m.f90 -------------------------------------------------------------------------------- /demo/src/NetCDF_variable_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/NetCDF_variable_s.F90 -------------------------------------------------------------------------------- /demo/src/default_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/default_m.f90 -------------------------------------------------------------------------------- /demo/src/default_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/default_s.f90 -------------------------------------------------------------------------------- /demo/src/histogram_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/histogram_m.f90 -------------------------------------------------------------------------------- /demo/src/histogram_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/histogram_s.F90 -------------------------------------------------------------------------------- /demo/src/occupancy_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/occupancy_m.f90 -------------------------------------------------------------------------------- /demo/src/occupancy_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/occupancy_s.F90 -------------------------------------------------------------------------------- /demo/src/phase_space_bin_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/phase_space_bin_m.f90 -------------------------------------------------------------------------------- /demo/src/run-fpm.sh-header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/run-fpm.sh-header -------------------------------------------------------------------------------- /demo/src/time_data_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/time_data_m.F90 -------------------------------------------------------------------------------- /demo/src/time_data_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/src/time_data_s.F90 -------------------------------------------------------------------------------- /demo/test/driver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/test/driver.f90 -------------------------------------------------------------------------------- /demo/test/histogram_test_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/test/histogram_test_m.f90 -------------------------------------------------------------------------------- /demo/test/netCDF_file_test_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/test/netCDF_file_test_m.f90 -------------------------------------------------------------------------------- /demo/test/time_data_test_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/test/time_data_test_m.f90 -------------------------------------------------------------------------------- /demo/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/train.sh -------------------------------------------------------------------------------- /demo/training_configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/training_configuration.json -------------------------------------------------------------------------------- /demo/training_data_files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/demo/training_data_files.json -------------------------------------------------------------------------------- /doc/uml/class-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/doc/uml/class-diagram.md -------------------------------------------------------------------------------- /example/concurrent-inferences.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/concurrent-inferences.f90 -------------------------------------------------------------------------------- /example/learn-addition.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/learn-addition.F90 -------------------------------------------------------------------------------- /example/learn-exponentiation.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/learn-exponentiation.F90 -------------------------------------------------------------------------------- /example/learn-multiplication.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/learn-multiplication.F90 -------------------------------------------------------------------------------- /example/learn-power-series.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/learn-power-series.F90 -------------------------------------------------------------------------------- /example/learn-saturated-mixing-ratio.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/learn-saturated-mixing-ratio.F90 -------------------------------------------------------------------------------- /example/print-training-configuration.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/print-training-configuration.F90 -------------------------------------------------------------------------------- /example/read-query-infer.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/read-query-infer.f90 -------------------------------------------------------------------------------- /example/supporting-modules/saturated_mixing_ratio_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/supporting-modules/saturated_mixing_ratio_m.f90 -------------------------------------------------------------------------------- /example/train-and-write.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/train-and-write.F90 -------------------------------------------------------------------------------- /example/write-read-infer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/example/write-read-infer.F90 -------------------------------------------------------------------------------- /ford.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/ford.md -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/fpm.toml -------------------------------------------------------------------------------- /include/compound_assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/include/compound_assertions.h -------------------------------------------------------------------------------- /include/language-support.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/include/language-support.F90 -------------------------------------------------------------------------------- /scripts/create-single-source-file-programs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/scripts/create-single-source-file-programs.sh -------------------------------------------------------------------------------- /src/fiats/activation_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/activation_m.f90 -------------------------------------------------------------------------------- /src/fiats/activation_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/activation_s.F90 -------------------------------------------------------------------------------- /src/fiats/double_precision_file_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/double_precision_file_m.f90 -------------------------------------------------------------------------------- /src/fiats/double_precision_file_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/double_precision_file_s.f90 -------------------------------------------------------------------------------- /src/fiats/double_precision_string_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/double_precision_string_m.f90 -------------------------------------------------------------------------------- /src/fiats/double_precision_string_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/double_precision_string_s.f90 -------------------------------------------------------------------------------- /src/fiats/hyperparameters_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/hyperparameters_m.f90 -------------------------------------------------------------------------------- /src/fiats/hyperparameters_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/hyperparameters_s.F90 -------------------------------------------------------------------------------- /src/fiats/input_output_pair_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/input_output_pair_m.f90 -------------------------------------------------------------------------------- /src/fiats/input_output_pair_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/input_output_pair_s.f90 -------------------------------------------------------------------------------- /src/fiats/kind_parameters_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/kind_parameters_m.f90 -------------------------------------------------------------------------------- /src/fiats/layer_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/layer_m.f90 -------------------------------------------------------------------------------- /src/fiats/layer_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/layer_s.F90 -------------------------------------------------------------------------------- /src/fiats/metadata_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/metadata_m.f90 -------------------------------------------------------------------------------- /src/fiats/metadata_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/metadata_s.F90 -------------------------------------------------------------------------------- /src/fiats/mini_batch_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/mini_batch_m.f90 -------------------------------------------------------------------------------- /src/fiats/mini_batch_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/mini_batch_s.f90 -------------------------------------------------------------------------------- /src/fiats/network_configuration_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/network_configuration_m.f90 -------------------------------------------------------------------------------- /src/fiats/network_configuration_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/network_configuration_s.F90 -------------------------------------------------------------------------------- /src/fiats/neural_network_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/neural_network_m.f90 -------------------------------------------------------------------------------- /src/fiats/neural_network_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/neural_network_s.F90 -------------------------------------------------------------------------------- /src/fiats/neuron_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/neuron_m.f90 -------------------------------------------------------------------------------- /src/fiats/neuron_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/neuron_s.F90 -------------------------------------------------------------------------------- /src/fiats/tensor_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_m.f90 -------------------------------------------------------------------------------- /src/fiats/tensor_map_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_map_m.f90 -------------------------------------------------------------------------------- /src/fiats/tensor_map_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_map_s.F90 -------------------------------------------------------------------------------- /src/fiats/tensor_names_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_names_m.f90 -------------------------------------------------------------------------------- /src/fiats/tensor_names_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_names_s.F90 -------------------------------------------------------------------------------- /src/fiats/tensor_s.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/tensor_s.f90 -------------------------------------------------------------------------------- /src/fiats/trainable_network_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/trainable_network_m.f90 -------------------------------------------------------------------------------- /src/fiats/trainable_network_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/trainable_network_s.F90 -------------------------------------------------------------------------------- /src/fiats/training_configuration_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/training_configuration_m.f90 -------------------------------------------------------------------------------- /src/fiats/training_configuration_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/training_configuration_s.F90 -------------------------------------------------------------------------------- /src/fiats/training_data_files_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/training_data_files_m.f90 -------------------------------------------------------------------------------- /src/fiats/training_data_files_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/training_data_files_s.F90 -------------------------------------------------------------------------------- /src/fiats/unmapped_network_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/unmapped_network_s.F90 -------------------------------------------------------------------------------- /src/fiats/workspace_s.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats/workspace_s.F90 -------------------------------------------------------------------------------- /src/fiats_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/src/fiats_m.f90 -------------------------------------------------------------------------------- /test/asymmetric_network_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/asymmetric_network_test_m.F90 -------------------------------------------------------------------------------- /test/driver.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/driver.f90 -------------------------------------------------------------------------------- /test/hyperparameters_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/hyperparameters_test_m.F90 -------------------------------------------------------------------------------- /test/metadata_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/metadata_test_m.F90 -------------------------------------------------------------------------------- /test/network_configuration_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/network_configuration_test_m.F90 -------------------------------------------------------------------------------- /test/neural_network_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/neural_network_test_m.F90 -------------------------------------------------------------------------------- /test/tensor_map_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/tensor_map_test_m.F90 -------------------------------------------------------------------------------- /test/tensor_names_test.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/tensor_names_test.f90 -------------------------------------------------------------------------------- /test/tensor_test_m.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/tensor_test_m.f90 -------------------------------------------------------------------------------- /test/trainable_network_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/trainable_network_test_m.F90 -------------------------------------------------------------------------------- /test/training_configuration_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/training_configuration_test_m.F90 -------------------------------------------------------------------------------- /test/training_data_files_test_m.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BerkeleyLab/fiats/HEAD/test/training_data_files_test_m.F90 --------------------------------------------------------------------------------