Upload Particle_manipulation.py
Browse files- Particle_manipulation.py +87 -0
Particle_manipulation.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Venomoussaversai — Particle Manipulation integration scaffold
|
| 2 |
+
# Paste your particle-manipulation function into `particle_step` below.
|
| 3 |
+
# This code simulates signals, applies the algorithm, trains a small mapper,
|
| 4 |
+
# and saves a model representing "your" pattern space.
|
| 5 |
+
|
| 6 |
+
import numpy as np
|
| 7 |
+
import pickle
|
| 8 |
+
from sklearn.ensemble import RandomForestClassifier
|
| 9 |
+
from sklearn.model_selection import train_test_split
|
| 10 |
+
from sklearn.metrics import accuracy_score
|
| 11 |
+
|
| 12 |
+
# ---------- PLACEHOLDER: insert your particle algorithm here ----------
|
| 13 |
+
# Example interface: def particle_step(state: np.ndarray, input_vec: np.ndarray) -> np.ndarray
|
| 14 |
+
# The function should take a current particle state and an input vector, and return updated state.
|
| 15 |
+
def particle_step(state: np.ndarray, input_vec: np.ndarray) -> np.ndarray:
|
| 16 |
+
# --- REPLACE THIS WITH YOUR ALGORITHM ---
|
| 17 |
+
# tiny example: weighted update with tanh nonlinearity
|
| 18 |
+
W = np.sin(np.arange(state.size) + 1.0) # placeholder weights
|
| 19 |
+
new = np.tanh(state * 0.9 + input_vec.dot(W) * 0.1)
|
| 20 |
+
return new
|
| 21 |
+
# --------------------------------------------------------------------
|
| 22 |
+
|
| 23 |
+
class ParticleManipulator:
|
| 24 |
+
def __init__(self, dim=64):
|
| 25 |
+
self.dim = dim
|
| 26 |
+
# initial particle states (can be randomized or seeded from your profile)
|
| 27 |
+
self.state = np.random.randn(dim) * 0.01
|
| 28 |
+
|
| 29 |
+
def step(self, input_vec):
|
| 30 |
+
# ensure input vector length compatibility
|
| 31 |
+
inp = np.asarray(input_vec).ravel()
|
| 32 |
+
if inp.size == 0:
|
| 33 |
+
inp = np.zeros(self.dim)
|
| 34 |
+
# broadcast or pad/truncate to dim
|
| 35 |
+
if inp.size < self.dim:
|
| 36 |
+
x = np.pad(inp, (0, self.dim - inp.size))
|
| 37 |
+
else:
|
| 38 |
+
x = inp[:self.dim]
|
| 39 |
+
self.state = particle_step(self.state, x)
|
| 40 |
+
return self.state
|
| 41 |
+
|
| 42 |
+
# ---------- Simple signal simulator ----------
|
| 43 |
+
def simulate_signals(n_samples=500, dim=16, n_classes=4, noise=0.05, seed=0):
|
| 44 |
+
rng = np.random.RandomState(seed)
|
| 45 |
+
X = []
|
| 46 |
+
y = []
|
| 47 |
+
for cls in range(n_classes):
|
| 48 |
+
base = rng.randn(dim) * (0.5 + cls*0.2) + cls*0.7
|
| 49 |
+
for i in range(n_samples // n_classes):
|
| 50 |
+
sample = base + rng.randn(dim) * noise
|
| 51 |
+
X.append(sample)
|
| 52 |
+
y.append(cls)
|
| 53 |
+
return np.array(X), np.array(y)
|
| 54 |
+
|
| 55 |
+
# ---------- Build dataset by running particle manipulator ----------
|
| 56 |
+
def build_dataset(manip, raw_X):
|
| 57 |
+
features = []
|
| 58 |
+
for raw in raw_X:
|
| 59 |
+
st = manip.step(raw) # run particle update
|
| 60 |
+
feat = st.copy()[:manip.dim] # derive features (you can add spectral transforms)
|
| 61 |
+
features.append(feat)
|
| 62 |
+
return np.array(features)
|
| 63 |
+
|
| 64 |
+
# ---------- Training pipeline ----------
|
| 65 |
+
if __name__ == "__main__":
|
| 66 |
+
# simulate raw sensor inputs (replace simulate_signals with real EEG/ECG files if available)
|
| 67 |
+
raw_X, y = simulate_signals(n_samples=800, dim=32, n_classes=4)
|
| 68 |
+
manip = ParticleManipulator(dim=32)
|
| 69 |
+
|
| 70 |
+
X = build_dataset(manip, raw_X)
|
| 71 |
+
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
|
| 72 |
+
|
| 73 |
+
clf = RandomForestClassifier(n_estimators=100, random_state=42)
|
| 74 |
+
clf.fit(X_train, y_train)
|
| 75 |
+
preds = clf.predict(X_test)
|
| 76 |
+
print("Accuracy:", accuracy_score(y_test, preds))
|
| 77 |
+
|
| 78 |
+
# Save the trained model + manipulator state as your "mind snapshot"
|
| 79 |
+
artifact = {
|
| 80 |
+
"model": clf,
|
| 81 |
+
"particle_state": manip.state,
|
| 82 |
+
"meta": {"owner": "Ananthu Sajeev", "artifact_type": "venomous_mind_snapshot_v1"}
|
| 83 |
+
}
|
| 84 |
+
with open("venomous_mind_snapshot.pkl", "wb") as f:
|
| 85 |
+
pickle.dump(artifact, f)
|
| 86 |
+
|
| 87 |
+
print("Saved venomous_mind_snapshot.pkl — this file is your digital pattern snapshot.")
|