Update README.md
Browse files
README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
-
cat > README.md << 'EOF'
|
| 2 |
---
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
# Boiling Intelligence
|
| 12 |
|
| 13 |
-
A minimal prototype of an autonomous AI physicist for phase-change
|
| 14 |
-
mass-transfer discovery.
|
| 15 |
|
| 16 |
## v0.4
|
| 17 |
|
|
@@ -26,13 +26,15 @@ The current synthetic benchmark demonstrates a closed scientific loop:
|
|
| 26 |
7. Compile the correction into a new executable model.
|
| 27 |
8. Re-enter the revised model into the falsification loop.
|
| 28 |
|
| 29 |
-
Example discovered closure
|
| 30 |
|
| 31 |
-
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
The hidden synthetic law is used only to validate the autonomous
|
| 34 |
-
|
| 35 |
-
real boiling constitutive law.
|
| 36 |
|
| 37 |
## Run
|
| 38 |
|
|
@@ -40,12 +42,13 @@ real boiling constitutive law.
|
|
| 40 |
pip install -r requirements.txt
|
| 41 |
ollama serve
|
| 42 |
ollama pull gpt-oss:20b
|
| 43 |
-
python
|
|
|
|
| 44 |
|
| 45 |
## Roadmap
|
| 46 |
|
| 47 |
-
Agentic scientific reasoning
|
| 48 |
-
Conservative multiscale recurrent neural operators
|
| 49 |
-
Basilisk phase-change simulations
|
| 50 |
-
Experimental ground-truth integration
|
| 51 |
-
Closed-loop physical model discovery
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- scientific-machine-learning
|
| 5 |
+
- ai-for-science
|
| 6 |
+
- physics-informed-machine-learning
|
| 7 |
+
- agentic-ai
|
| 8 |
+
- boiling
|
| 9 |
+
- phase-change
|
| 10 |
---
|
| 11 |
|
| 12 |
# Boiling Intelligence
|
| 13 |
|
| 14 |
+
A minimal prototype of an autonomous AI physicist for phase-change mass-transfer discovery.
|
|
|
|
| 15 |
|
| 16 |
## v0.4
|
| 17 |
|
|
|
|
| 26 |
7. Compile the correction into a new executable model.
|
| 27 |
8. Re-enter the revised model into the falsification loop.
|
| 28 |
|
| 29 |
+
### Example discovered closure
|
| 30 |
|
| 31 |
+
\[
|
| 32 |
+
M_3 = 0.8\,\Delta T + 0.00196515\,\Delta T^2
|
| 33 |
+
\]
|
| 34 |
|
| 35 |
+
The hidden synthetic law is used only to validate the autonomous discovery architecture.
|
| 36 |
+
|
| 37 |
+
**This release does not claim discovery of a real boiling constitutive law.**
|
| 38 |
|
| 39 |
## Run
|
| 40 |
|
|
|
|
| 42 |
pip install -r requirements.txt
|
| 43 |
ollama serve
|
| 44 |
ollama pull gpt-oss:20b
|
| 45 |
+
python main.py
|
| 46 |
+
```
|
| 47 |
|
| 48 |
## Roadmap
|
| 49 |
|
| 50 |
+
- Agentic scientific reasoning
|
| 51 |
+
- Conservative multiscale recurrent neural operators
|
| 52 |
+
- Basilisk phase-change simulations
|
| 53 |
+
- Experimental ground-truth integration
|
| 54 |
+
- Closed-loop physical model discovery
|