Allanatrix commited on
Commit
8f73c06
·
verified ·
1 Parent(s): 3643d86

chore: publish safetensors NexaMat stack artifacts

Browse files
Files changed (1) hide show
  1. README.md +31 -22
README.md CHANGED
@@ -1,36 +1,45 @@
1
  ---
2
- library_name: transformers
3
- pipeline_tag: text-generation
4
  tags:
5
  - materials-science
6
  - crystal-generation
7
  - diffusion
8
- - controller
9
- - nexamat
 
 
10
  ---
11
 
12
- # NexaMat2
13
 
14
- NexaMat2 is the rollout artifact hub for the NexaMat stack. It is not a single monolithic model.
15
- It binds a frozen physics encoder, a constrained diffusion decoder, and a partially fine-tuned Qwen3-14B
16
- controller into one auditable materials-discovery workflow.
17
 
18
- ## Current Controller
19
 
20
- ```text
21
- model_id: AethronPhantom/Nexa_Mat2
22
- subfolder: multimodal/controller/nexa_mat_controller_fft_pilot_20260518T234148Z/final_model_merged
23
- base_model: Qwen/Qwen3-14B
24
- state: partial FFT pilot, not full-dataset FFT
25
- ```
26
 
27
- ## Stack Contract
 
 
 
 
 
 
 
 
28
 
29
- - Encoder: physics grounding and plausibility scoring.
30
- - Decoder: best-of-N constrained candidate proposal.
31
- - Controller: ranking, rejection, evidence routing, and explanation.
32
- - Cross-attention bridge: adapter surface for text, encoder, decoder, task, and evidence streams.
33
 
34
- See `stack_manifest.json` for the machine-readable rollout contract.
35
 
36
- Status: `rollout_partial_controller`.
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ library_name: pytorch
 
3
  tags:
4
  - materials-science
5
  - crystal-generation
6
  - diffusion
7
+ - encoder
8
+ - multimodal
9
+ - gradio
10
+ license: mit
11
  ---
12
 
13
+ # Nexa_Mat2
14
 
15
+ `AethronPhantom/Nexa_Mat2` is the public artifact repository for the Nexa_Mat Gen Stack. It contains the frozen physics encoder, the constrained diffusion decoder, the experimental multimodal/controller pilot, and the stack manifest consumed by the public Space.
 
 
16
 
17
+ Space: https://huggingface.co/spaces/AethronPhantom/nexamat-crystal-viewer
18
 
19
+ ## Artifacts
 
 
 
 
 
20
 
21
+ | Component | Path | Status |
22
+ |---|---|---|
23
+ | Encoder V1 | `encoder/v1/nexa_mat_V1_final.safetensors` | Frozen downstream handoff checkpoint. |
24
+ | Encoder manifest | `encoder/v1/manifest.json` | Architecture, source URI, checksum, and training metadata. |
25
+ | Diffusion V1 | `decoder/diffusion_v1/final_checkpoint.safetensors` | Production diffusion/checkpoint handoff for constrained sampling. |
26
+ | Diffusion manifest | `decoder/diffusion_v1/manifest.json` | Architecture, eval, checksum, and operating-mode metadata. |
27
+ | Controller pilot | `multimodal/controller/nexa_mat_controller_fft_pilot_20260518T234148Z/final_model_merged/model.safetensors` | Experimental Qwen-based controller pilot. |
28
+ | Cross-attention contract | `cross_attention_contract.json` | Interface contract joining encoder, decoder, controller, evidence, and task-head lanes. |
29
+ | Stack manifest | `stack_manifest.json` | Canonical manifest for the public Space and downstream tooling. |
30
 
31
+ ## Intended Use
 
 
 
32
 
33
+ The stack is intended for materials candidate triage. Forward mode proposes constrained candidate structures from a design intent. Reverse mode ranks a candidate pool against a target use case. Generated candidates should be treated as hypotheses for DFT and downstream validation, not as confirmed stable materials.
34
 
35
+ ## Component Roles
36
+
37
+ The encoder is the physics-grounding layer. It learned a periodic materials manifold from the Nexa_Mat V1 training surface and is frozen for downstream generative experiments.
38
+
39
+ The diffusion decoder is the proposal layer. It repairs and proposes structures under constraints, but should be used as a best-of-N sampler with filtering instead of a one-shot oracle.
40
+
41
+ The multimodal/controller layer is the semantic/evidence layer. It connects model outputs to use cases, evidence packets, explanations, and reverse-pool ranking. The published controller checkpoint is a pilot, not a final full fine-tune.
42
+
43
+ ## Limitations
44
+
45
+ These artifacts do not replace DFT, relaxation, experimental validation, or synthesis review. The decoder is strongest in constrained sampling and weaker in unconditional high-yield generation. The controller should not be trusted for unsupported literature claims unless paired with an evidence retrieval layer.