Spaces:
Build error
Build error
File size: 12,715 Bytes
8a01471 |
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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 |
import type { NN3DModel, NN3DNode, NN3DEdge } from '@/schema/types';
import { parseNN3DModel, validateModelSemantics } from '@/schema/validator';
import {
detectFormatFromExtension,
detectFormatFromContent,
isSupportedExtension,
getFormatDisplayName,
SUPPORTED_EXTENSIONS,
} from './formats';
import { OnnxParser } from './formats/onnx-parser';
import { SafeTensorsParser } from './formats/safetensors-parser';
import { PyTorchParser } from './formats/pytorch-parser';
import { KerasParser } from './formats/keras-parser';
import {
isBackendAvailable,
analyzeUniversal,
type ModelArchitecture,
type LayerInfo
} from './api-client';
/**
* All supported file extensions
*/
export { SUPPORTED_EXTENSIONS };
/**
* Track backend availability
*/
let backendAvailable: boolean | null = null;
/**
* Check if backend is available (cached)
*/
async function checkBackend(): Promise<boolean> {
if (backendAvailable === null) {
backendAvailable = await isBackendAvailable();
if (backendAvailable) {
console.log('[NN3D] Python backend available - using enhanced model analysis');
} else {
console.log('[NN3D] Python backend unavailable - using JavaScript parsers');
}
}
return backendAvailable;
}
/**
* Convert backend layer type to NN3D type
* Handles both PyTorch and Keras naming conventions
*/
function mapLayerType(layer: LayerInfo): string {
const typeMap: Record<string, string> = {
// PyTorch layers
'Linear': 'linear',
'Conv1d': 'conv1d',
'Conv2d': 'conv2d',
'Conv3d': 'conv3d',
'BatchNorm1d': 'batchNorm1d',
'BatchNorm2d': 'batchNorm2d',
'BatchNorm3d': 'batchNorm3d',
'LayerNorm': 'layerNorm',
'GroupNorm': 'groupNorm',
'ReLU': 'relu',
'LeakyReLU': 'leakyRelu',
'GELU': 'gelu',
'Sigmoid': 'sigmoid',
'Tanh': 'tanh',
'Softmax': 'softmax',
'Dropout': 'dropout',
'MaxPool1d': 'maxPool1d',
'MaxPool2d': 'maxPool2d',
'AvgPool2d': 'avgPool2d',
'AdaptiveAvgPool2d': 'adaptiveAvgPool',
'LSTM': 'lstm',
'GRU': 'gru',
'RNN': 'rnn',
'Embedding': 'embedding',
'MultiheadAttention': 'multiHeadAttention',
'Transformer': 'transformer',
'Flatten': 'flatten',
// Keras/TensorFlow layers
'InputLayer': 'input',
'Dense': 'dense',
'Conv2D': 'conv2d',
'Conv1D': 'conv1d',
'Conv3D': 'conv3d',
'MaxPooling2D': 'maxPool2d',
'MaxPooling1D': 'maxPool1d',
'AveragePooling2D': 'avgPool2d',
'GlobalAveragePooling2D': 'globalAvgPool',
'GlobalMaxPooling2D': 'maxPool2d',
'BatchNormalization': 'batchNorm2d',
'Activation': 'relu',
'Add': 'add',
'Concatenate': 'concat',
'Multiply': 'multiply',
'ZeroPadding2D': 'pad',
'UpSampling2D': 'upsample',
'Reshape': 'reshape',
'Permute': 'reshape',
'SeparableConv2D': 'separableConv2d',
'DepthwiseConv2D': 'depthwiseConv2d',
'Conv2DTranspose': 'convTranspose2d',
'SimpleRNN': 'rnn',
'Bidirectional': 'lstm',
'TimeDistributed': 'custom',
'Lambda': 'custom',
'SpatialDropout2D': 'dropout',
'AlphaDropout': 'dropout',
};
return typeMap[layer.type] || layer.type.toLowerCase().replace(/[0-9]d$/i, (m) => m.toLowerCase());
}
/**
* Convert backend architecture to NN3DModel
*/
function architectureToNN3DModel(arch: ModelArchitecture): NN3DModel {
const nodes: NN3DNode[] = arch.layers.map((layer, index) => {
// Build params object from layer params with proper names
const params: Record<string, unknown> = {};
// Copy all layer params
if (layer.params) {
Object.entries(layer.params).forEach(([key, value]) => {
// Map common param names to display-friendly names
const keyMap: Record<string, string> = {
'in_features': 'inFeatures',
'out_features': 'outFeatures',
'in_channels': 'inChannels',
'out_channels': 'outChannels',
'kernel_size': 'kernelSize',
'hidden_size': 'hiddenSize',
'input_size': 'inputSize',
'num_layers': 'numLayers',
'bidirectional': 'bidirectional',
'batch_first': 'batchFirst',
'dropout': 'dropout',
'bias': 'bias',
};
const displayKey = keyMap[key] || key;
params[displayKey] = value;
});
}
// Add parameter count
if (layer.numParameters > 0) {
params.totalParams = layer.numParameters.toLocaleString();
}
// Build additional attributes - include category from backend!
const attributes: Record<string, unknown> = { ...layer.params };
if (layer.numParameters > 0) {
attributes.parameters = layer.numParameters;
}
// Store the category from the backend so it can be used in visualization
attributes.category = layer.category;
return {
id: layer.id,
name: layer.name,
type: mapLayerType(layer) as NN3DNode['type'],
// Set inputShape and outputShape directly on the node
inputShape: layer.inputShape || undefined,
outputShape: layer.outputShape || undefined,
params,
attributes,
position: {
x: index * 3,
y: 0,
z: 0
}
};
});
const edges: NN3DEdge[] = arch.connections.map((conn, index) => ({
id: `edge_${index}`,
source: conn.source,
target: conn.target,
attributes: conn.tensorShape ? { tensorShape: conn.tensorShape } : undefined
}));
// Map framework string to valid type
const frameworkMap: Record<string, 'pytorch' | 'tensorflow' | 'keras' | 'onnx' | 'jax' | 'custom'> = {
'pytorch': 'pytorch',
'tensorflow': 'tensorflow',
'keras': 'keras',
'onnx': 'onnx',
'jax': 'jax',
};
const framework = frameworkMap[arch.framework] || 'custom';
return {
version: '1.0.0',
metadata: {
name: arch.name,
description: `${arch.framework} model with ${arch.totalParameters.toLocaleString()} parameters (${arch.trainableParameters.toLocaleString()} trainable)`,
framework,
created: new Date().toISOString(),
totalParams: arch.totalParameters,
trainableParams: arch.trainableParameters,
inputShape: arch.inputShape || undefined,
outputShape: arch.outputShape || undefined,
},
graph: {
nodes,
edges
},
visualization: {
layout: 'layered',
layerSpacing: 2.5,
}
};
}
/**
* Registered format parsers (fallback)
*/
const FORMAT_PARSERS = [
OnnxParser,
SafeTensorsParser,
PyTorchParser,
KerasParser,
];
/**
* All model extensions that can be analyzed by the universal backend endpoint
*/
const BACKEND_SUPPORTED_EXTENSIONS = [
'.pt', '.pth', '.ckpt', '.bin', '.model', // PyTorch
'.onnx', // ONNX
'.h5', '.hdf5', '.keras', // Keras
'.pb', // TensorFlow
'.safetensors' // SafeTensors
];
/**
* Load model from file - auto-detects format
*/
export async function loadModelFromFile(file: File): Promise<NN3DModel> {
// Check if extension is supported
if (!isSupportedExtension(file.name)) {
const ext = '.' + file.name.split('.').pop()?.toLowerCase();
throw new Error(
`Unsupported file format: ${ext}\n\n` +
`Supported formats:\n${SUPPORTED_EXTENSIONS.join(', ')}`
);
}
// Detect format
const formatInfo = detectFormatFromExtension(file.name);
const category = await detectFormatFromContent(file);
const ext = '.' + file.name.split('.').pop()?.toLowerCase();
// Handle native NN3D/JSON format
if (formatInfo.category === 'native' || category === 'native') {
const text = await file.text();
return parseModelFromString(text);
}
// Try universal backend endpoint for all supported model formats
if (BACKEND_SUPPORTED_EXTENSIONS.includes(ext)) {
const hasBackend = await checkBackend();
if (hasBackend) {
try {
console.log(`Analyzing ${ext} model with universal backend endpoint...`);
const result = await analyzeUniversal(file);
if (result.success) {
console.log(`[OK] Backend analysis complete: ${result.model_type}`);
console.log(` Layers: ${result.architecture.layers.length}`);
console.log(` Parameters: ${result.architecture.totalParameters.toLocaleString()}`);
if (result.message) {
console.info(result.message);
}
return architectureToNN3DModel(result.architecture);
} else {
console.warn('Backend returned unsuccessful result');
}
} catch (error) {
console.warn('Backend analysis failed, falling back to JS parser:', error);
}
}
}
// Try format-specific parsers (fallback)
for (const parser of FORMAT_PARSERS) {
if (await parser.canParse(file)) {
const result = await parser.parse(file);
if (result.success && result.model) {
// Log any warnings
if (result.warnings.length > 0) {
console.warn('Model loading warnings:', result.warnings);
}
if (result.inferredStructure) {
console.info('Model structure was inferred from weights. Some details may be approximate.');
}
return result.model;
} else if (result.error) {
throw new Error(result.error);
}
}
}
// Fallback error
throw new Error(
`Unable to parse ${getFormatDisplayName(formatInfo.category)} file.\n\n` +
(formatInfo.conversionHint || 'Please convert to .nn3d or .onnx format.')
);
}
/**
* Load NN3D model from URL
*/
export async function loadModelFromUrl(url: string): Promise<NN3DModel> {
const response = await fetch(url);
if (!response.ok) {
throw new Error(`Failed to fetch model: ${response.status} ${response.statusText}`);
}
const text = await response.text();
return parseModelFromString(text);
}
/**
* Parse and validate model from JSON string
*/
export function parseModelFromString(jsonString: string): NN3DModel {
const { model, validation } = parseNN3DModel(jsonString);
if (!validation.valid || !model) {
const errorMessages = validation.errors.map(e => `${e.path}: ${e.message}`).join('\n');
throw new Error(`Model validation failed:\n${errorMessages}`);
}
// Additional semantic validation
const semanticValidation = validateModelSemantics(model);
if (!semanticValidation.valid) {
const warnings = semanticValidation.errors.map(e => `${e.path}: ${e.message}`).join('\n');
console.warn(`Model semantic warnings:\n${warnings}`);
}
return model;
}
/**
* Export model to JSON string
*/
export function exportModelToString(model: NN3DModel, pretty = true): string {
return JSON.stringify(model, null, pretty ? 2 : undefined);
}
/**
* Download model as file
*/
export function downloadModel(model: NN3DModel, filename = 'model.nn3d'): void {
const json = exportModelToString(model);
const blob = new Blob([json], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
/**
* Create a simple file drop handler
*/
export function createFileDropHandler(
element: HTMLElement,
onFile: (file: File) => void,
options: { accept?: string[]; onDragOver?: () => void; onDragLeave?: () => void } = {}
): () => void {
const { accept = ['.nn3d', '.json'], onDragOver, onDragLeave } = options;
const handleDragOver = (e: DragEvent) => {
e.preventDefault();
e.stopPropagation();
onDragOver?.();
};
const handleDragLeave = (e: DragEvent) => {
e.preventDefault();
e.stopPropagation();
onDragLeave?.();
};
const handleDrop = (e: DragEvent) => {
e.preventDefault();
e.stopPropagation();
onDragLeave?.();
const files = e.dataTransfer?.files;
if (files && files.length > 0) {
const file = files[0];
const ext = '.' + file.name.split('.').pop()?.toLowerCase();
if (accept.includes(ext)) {
onFile(file);
} else {
console.warn(`Unsupported file type: ${ext}`);
}
}
};
element.addEventListener('dragover', handleDragOver);
element.addEventListener('dragleave', handleDragLeave);
element.addEventListener('drop', handleDrop);
// Return cleanup function
return () => {
element.removeEventListener('dragover', handleDragOver);
element.removeEventListener('dragleave', handleDragLeave);
element.removeEventListener('drop', handleDrop);
};
}
|