File size: 1,276 Bytes
5ae71ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
    library_name: flax
    tags:
    - chemistry
    - ionic-conductivity
    - polymer-electrolytes
    - jax
    pipeline_tag: tabular-regression
    ---

    # Arrhenius Predictor for Polymer Electrolytes
    Paper: https://pubs.acs.org/doi/10.1021/acscentsci.2c01123
    This model predicts ionic conductivity ($\ln \sigma$), activation energy ($E_a$), and the Arrhenius prefactor ($\ln A$) for polymer electrolytes. It uses a physics-informed architecture where the output is constrained by the Arrhenius equation:

    $$ \ln \sigma = \ln A - \frac{E_a}{RT} $$

    ## Usage

    This model expects inputs processed via `MolGraphizer` and `expand_polymer_smiles`.
    It requires the following features:
    - **Molecular Graph**: Nodes, Edges, Connectivity.
    - **Auxiliary Features**: Temperature (K), Log Molecular Weight, Molality.

    To use this model for screening new candidates, use the `screen_from_hub.py` script provided in the repository.

    ```python
    # Pseudo-code for loading
    import flax.serialization
    from huggingface_hub import hf_hub_download

    path = hf_hub_download(repo_id="eamag/chemarr", filename="model.msgpack")
    with open(path, "rb") as f:
        artifact = flax.serialization.from_bytes(dummy_state, f.read())