File size: 8,309 Bytes
2796429 | 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | # guided_test_hand.py
# Real-time accuracy test for prosthetic hand model
import asyncio
import myo
from myo import ClassifierMode, EMGMode, IMUMode
import torch
import torch.nn as nn
import numpy as np
from scipy import signal
from collections import deque, Counter
import time
import json
FS = 200
WIN_SAMPLES = 150
GESTURE_NAMES = {
0: 'rest',
1: 'fist',
2: 'grasp',
3: 'index',
4: 'middle',
5: 'ring',
6: 'pinky',
7: 'thumb',
8: 'wrist_rotate_out',
9: 'wrist_rotate_in',
}
GESTURE_INSTRUCTIONS = {
0: 'Relax your hand completely β do not move anything',
1: 'Close ALL fingers into a tight fist',
2: 'Curl fingers into a C-shape β like holding a cup',
3: 'Extend INDEX finger only β others closed',
4: 'Extend MIDDLE finger only β others closed',
5: 'Extend RING finger only β others closed',
6: 'Extend PINKY finger only β others closed',
7: 'Extend THUMB only β others closed',
8: 'Rotate wrist so palm faces DOWN toward table',
9: 'Rotate wrist so palm faces UP toward you',
}
TEST_SEQUENCE = [
0, 1, 0, 2, 0, 3, 0, 4, 0, 5,
0, 6, 0, 7, 0, 8, 0, 9, 0, 1,
0, 3, 0, 5, 0, 7, 0, 2, 0, 4,
]
HOLD_SECONDS = 5
COUNTDOWN_SECONDS = 3
class EMG_CNN_LSTM(nn.Module):
def __init__(self, n_channels=8, n_classes=10):
super().__init__()
self.cnn = nn.Sequential(
nn.Conv1d(n_channels, 64, kernel_size=3, padding=1),
nn.BatchNorm1d(64), nn.ReLU(),
nn.Conv1d(64, 128, kernel_size=3, padding=1),
nn.BatchNorm1d(128), nn.ReLU(),
nn.MaxPool1d(2), nn.Dropout(0.3),
nn.Conv1d(128, 256, kernel_size=3, padding=1),
nn.BatchNorm1d(256), nn.ReLU(),
nn.MaxPool1d(2), nn.Dropout(0.3),
)
self.lstm = nn.LSTM(
input_size=256, hidden_size=128,
num_layers=2, batch_first=True,
dropout=0.3, bidirectional=True
)
self.fc = nn.Sequential(
nn.Linear(256, 128), nn.ReLU(),
nn.Dropout(0.4),
nn.Linear(128, 10)
)
def forward(self, x):
x = self.cnn(x)
x = x.permute(0, 2, 1)
x, _ = self.lstm(x)
x = x[:, -1, :]
return self.fc(x)
DEVICE = torch.device('mps' if torch.backends.mps.is_available() else 'cpu')
model = EMG_CNN_LSTM().to(DEVICE)
model.load_state_dict(torch.load('hand_module/models/best_model_hand.pt',
map_location=DEVICE))
model.eval()
NORM_MEAN = np.load('hand_module/models/hand_norm_mean.npy')
NORM_STD = np.load('hand_module/models/hand_norm_std.npy')
print(f"β
Model + normalization loaded")
nyq = FS / 2
b, a = signal.butter(4, [20/nyq, 90/nyq], btype='band')
bn, an = signal.iirnotch(50, Q=30, fs=FS)
class State:
emg_buffer = deque(maxlen=WIN_SAMPLES)
current_truth = None
predictions_log = []
is_recording = False
STATE = State()
def predict():
if len(STATE.emg_buffer) < WIN_SAMPLES:
return None, 0.0
window = np.array(STATE.emg_buffer, dtype=np.float32)
window = signal.filtfilt(b, a, window, axis=0)
window = signal.filtfilt(bn, an, window, axis=0)
window = (window - NORM_MEAN) / NORM_STD
window = window.T.copy()
x = torch.tensor(window, dtype=torch.float32).unsqueeze(0).to(DEVICE)
with torch.no_grad():
probs = torch.softmax(model(x), dim=1)[0]
confidence = probs.max().item()
pred_label = probs.argmax().item()
return pred_label, confidence
class TestClassifier(myo.MyoClient):
async def on_emg_data(self, emg: myo.EMGData):
for sample in [emg.sample1, emg.sample2]:
STATE.emg_buffer.append(list(sample))
if not STATE.is_recording:
return
pred_label, confidence = predict()
if pred_label is None:
return
STATE.predictions_log.append({
'truth': STATE.current_truth,
'pred': pred_label,
'conf': confidence,
})
async def on_imu_data(self, _): pass
async def on_classifier_event(self, _): pass
async def on_aggregated_data(self, _): pass
async def on_emg_data_aggregated(self, _): pass
async def on_fv_data(self, _): pass
async def on_motion_event(self, _): pass
async def countdown(seconds, message):
for i in range(seconds, 0, -1):
print(f"\r β³ {message} β {i}s ", end='', flush=True)
await asyncio.sleep(1)
print(f"\r β
GO! ")
async def run_test():
print("\n" + "β" * 64)
print(" GUIDED TEST β Prosthetic Hand Model")
print("β" * 64)
print(f"\n {len(TEST_SEQUENCE)} gestures | {HOLD_SECONDS}s each")
print(f" Keep your arm still β only hand/wrist moves\n")
print(" Starting in 5 seconds...")
await asyncio.sleep(5)
all_results = []
for idx, gesture_id in enumerate(TEST_SEQUENCE, 1):
name = GESTURE_NAMES[gesture_id]
instruction = GESTURE_INSTRUCTIONS[gesture_id]
print("\n" + "β" * 64)
print(f" [{idx}/{len(TEST_SEQUENCE)}] {name.upper()}")
print(f" π {instruction}")
await countdown(COUNTDOWN_SECONDS, f"Prepare for {name}")
print(f"\n π’ Hold steady!\n")
STATE.current_truth = gesture_id
STATE.predictions_log = []
STATE.is_recording = True
start = time.time()
last_shown = None
while time.time() - start < HOLD_SECONDS:
await asyncio.sleep(0.1)
if STATE.predictions_log:
latest = STATE.predictions_log[-1]
pred = latest['pred']
if pred != last_shown:
correct = "β
" if pred == gesture_id else "β"
print(f" {correct} {GESTURE_NAMES[pred]:<20} "
f"(conf: {latest['conf']:.0%})")
last_shown = pred
STATE.is_recording = False
preds = [p['pred'] for p in STATE.predictions_log]
if preds:
correct_count = sum(1 for p in preds if p == gesture_id)
acc = correct_count / len(preds) * 100
top3 = Counter(preds).most_common(3)
print(f"\n π Accuracy: {acc:.0f}% ({correct_count}/{len(preds)})")
print(f" π Top predictions: "
f"{[(GESTURE_NAMES[k], v) for k,v in top3]}")
all_results.append({'gesture': name, 'id': gesture_id, 'predictions': preds})
# ββ Final Summary ββ
print("\n" + "β" * 64)
print(" FINAL SUMMARY")
print("β" * 64)
gesture_stats = {}
for r in all_results:
g = r['gesture']
gid = r['id']
if g not in gesture_stats:
gesture_stats[g] = {'correct': 0, 'total': 0, 'confusions': []}
for p in r['predictions']:
gesture_stats[g]['total'] += 1
if p == gid:
gesture_stats[g]['correct'] += 1
else:
gesture_stats[g]['confusions'].append(GESTURE_NAMES[p])
print(f"\n {'Gesture':<22} {'Accuracy':<12} {'Most Confused With'}")
print(" " + "β" * 55)
for g, stats in gesture_stats.items():
acc = stats['correct'] / stats['total'] * 100 if stats['total'] else 0
confusion = Counter(stats['confusions']).most_common(1)
conf_str = f"{confusion[0][0]} ({confusion[0][1]}x)" if confusion else "β"
print(f" {g:<22} {acc:>5.0f}% {conf_str}")
with open('hand_module/test_results_hand.json', 'w') as f:
json.dump(all_results, f, indent=2)
print(f"\n πΎ Saved: hand_module/test_results_hand.json")
print("β" * 64)
async def main():
print("π Scanning for Myo Armband...")
client = await TestClassifier.with_device()
print(f"β
Connected: {client.device.name}")
await client.setup(
classifier_mode=ClassifierMode.DISABLED,
emg_mode=EMGMode.SEND_EMG,
imu_mode=IMUMode.SEND_DATA,
)
await client.start()
await run_test()
await client.stop()
await client.disconnect()
if __name__ == "__main__":
asyncio.run(main())
|