Uh oh!
There was an error while loading. Please reload this page.
Conversation
This commit replaces the inference_engine_t type-bound, generic subtraction operator(-) with an user-defined approximate equivalence operator(==), which simplifies comparisons by eliminating the diffence_t type. The new operator is used in inference_engine_test_m instead of the difference_t, operator(-), and the norm() function.
This commit sets up for adding double-precision support by making the activation and activation-derivative bindings generic.
This commit adds double-precision versions of all tensor_map_t type-bound and constructor procedures except the default_real_from_json constructor function.
…ed-types' into parameterized-derived-types
This commit adds a generic "predict" binding to follow PyTorch nomenclature. For now, the equivalent "infer" generic binding remains to support existing code.
also make bindings generic
also update julienne dependency to 1.2.0 for double-precsion value extraction from JSON files.
also adjust demo/app/infer-aerosol.f90 to reflect the renaming of unmapped_engine_t to unmapped_network_t
Simplify class relationships
This commit 1. Renames the project from inference-engine to fiats. 2. Renames inference_engine_t to neural_network_t.
This commit renames "acceptable_engine_tag" to "minimum_acceptable_tag" in the network JSON file format.
This reverts commit 31ecd59.
Rename Inference-Engine to Fiats
rouson
commented
Oct 16, 2024
Based on correspondences with |
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Katherine Rasmussen <krasmussen@lbl.gov>
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: Katherine Rasmussen <krasmussen@lbl.gov>
This PR is will be ready to merge either when
gfortran's support for parameterized derived types (PDTs) has been fixed or we have decided to drop support forgfortran.The
developbranch that this PR will merge intomainresulted from merging three significant development branches:parallelbranch added support for automatic parallelization of training viado concurrent.parameterized-derived-typesbranch added the ability to support both default-realanddouble precisioninference without requiring recompiling.rename-inference-engine_tbranch, which globally renames the project from "Inference-Engine" to Fiats and correspondingly renames numerous program entities (files, modules, procedures, documentation, etc.)The latter three branches have been deleted in order to clarify the path forward. Starting now, new work should branch off of
develop.