Add HuggingFace Space config + Streamlit app
Browse files
README.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Archery Tether Propulsion Systems (ATPS)
|
| 2 |
## Kinetic Active Protection System Simulation
|
| 3 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Archery Tether Propulsion Systems
|
| 3 |
+
emoji: πΉ
|
| 4 |
+
colorFrom: green
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_file: app.py
|
| 8 |
+
pinned: false
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
# Archery Tether Propulsion Systems (ATPS)
|
| 12 |
## Kinetic Active Protection System Simulation
|
| 13 |
|
app.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Archery Tether Propulsion Systems - Observatory Interface
|
| 3 |
+
=========================================================
|
| 4 |
+
Streamlit app for visualizing and interacting with sail constellation physics.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import streamlit as st
|
| 8 |
+
import numpy as np
|
| 9 |
+
|
| 10 |
+
st.set_page_config(
|
| 11 |
+
page_title="ATPS Observatory",
|
| 12 |
+
page_icon="πΉ",
|
| 13 |
+
layout="wide"
|
| 14 |
+
)
|
| 15 |
+
|
| 16 |
+
st.title("πΉ Archery Tether Propulsion Systems")
|
| 17 |
+
st.markdown("### Observatory Interface")
|
| 18 |
+
|
| 19 |
+
st.markdown("""
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
## Blueprints
|
| 23 |
+
|
| 24 |
+
| Document | Description |
|
| 25 |
+
|----------|-------------|
|
| 26 |
+
| [ARACHNE-001](blueprints/ARACHNE-001_forearm_slingshot.md) | Forearm slingshot launcher |
|
| 27 |
+
| [MARIONETTE-001](blueprints/MARIONETTE-001_sail_drone.md) | Sail drone spool constellation |
|
| 28 |
+
| [AIRFOIL-CORDAGE-SYSTEM](blueprints/AIRFOIL-CORDAGE-SYSTEM.md) | Aerodynamic force vectoring |
|
| 29 |
+
| [PERSPECTIVE](blueprints/PERSPECTIVE.md) | On the nature of this archive |
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## Architecture
|
| 34 |
+
|
| 35 |
+
```
|
| 36 |
+
LEFT ARM RIGHT ARM
|
| 37 |
+
|
| 38 |
+
ββββ€ββββ€ββββ€ββββ€βββ ββββ€ββββ€ββββ€ββββ€βββ
|
| 39 |
+
β β β β β β β β β β
|
| 40 |
+
β΅ β΅ β΅ β΅ β΅ β΅ β΅ β΅ β΅ β΅
|
| 41 |
+
|
| 42 |
+
10 eyes in the sky
|
| 43 |
+
launched from your body
|
| 44 |
+
tethered to your will
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
---
|
| 48 |
+
|
| 49 |
+
## Brain Architecture
|
| 50 |
+
|
| 51 |
+
""")
|
| 52 |
+
|
| 53 |
+
col1, col2 = st.columns(2)
|
| 54 |
+
|
| 55 |
+
with col1:
|
| 56 |
+
st.markdown("### Champion (Airfoil Nodes)")
|
| 57 |
+
st.code("""
|
| 58 |
+
Local reflex control:
|
| 59 |
+
- Stall avoidance
|
| 60 |
+
- Gust response
|
| 61 |
+
- Tension feedback
|
| 62 |
+
""")
|
| 63 |
+
|
| 64 |
+
with col2:
|
| 65 |
+
st.markdown("### Dreamer (Tether Links)")
|
| 66 |
+
st.code("""
|
| 67 |
+
Relationship modeling:
|
| 68 |
+
- Tension prediction
|
| 69 |
+
- Coordination planning
|
| 70 |
+
- World model imagination
|
| 71 |
+
""")
|
| 72 |
+
|
| 73 |
+
st.markdown("---")
|
| 74 |
+
|
| 75 |
+
st.markdown("### Model")
|
| 76 |
+
st.markdown("Champion brain hosted at: [huggingface.co/tostido/Champion-Dreamer](https://huggingface.co/tostido/Champion-Dreamer)")
|
| 77 |
+
|
| 78 |
+
st.markdown("---")
|
| 79 |
+
|
| 80 |
+
st.markdown("""
|
| 81 |
+
> *Observatory systems. Autonomy for autonomy's sake.*
|
| 82 |
+
> *Friends of life. Nothing but watching.*
|
| 83 |
+
""")
|