This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # hierarchical_bspline.py | |
| # Requiere: torch, numpy | |
| from typing import List, Optional, Tuple, Dict | |
| from dataclasses import dataclass | |
| import torch | |
| import torch.nn as nn | |
| import torch.nn.functional as F | |
| import numpy as np |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| nort9commutator.py | |
| NORT9 - "Fearless" configuration: aggressive learning, stronger bidirectional coupling, | |
| GPU-native B-spline evaluation, batched vjp/jvp propagation, mixed-precision optional. | |
| Features: | |
| - Layered directional node network with bi-directional coupling | |
| - Cubic B-spline gating with learnable coefficients (GPU PyTorch implementation) | |
| - Timed gradient transport using batched vjp/jvp where possible |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Generator, Tuple, Dict | |
| from collections import defaultdict | |
| # Parámetros | |
| L = 5 # longitud de la ventana de la "rod" (4-8 típico) | |
| # Dos bases independientes de 64 bits (impares, apariencia aleatoria) | |
| BASES = (11400714785074694791, 14029467366897019727) | |
| MASK64 = (1 << 64) - 1 # máscara para emular overflow uint64 | |
| def _build_bad_char(pattern: str) -> dict: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cecil+ Programme Lang /IDE /PyQt5 - Spectral Multi-Dispatching GUI Works - /Py /C /C++ /C# | |
| # | |
| #____________________________________________________________________________________________________________________ | |
| # | |
| # CECIL+ CORE FEATURES/SERVICES: | |
| # | |
| # Spectral Multi-Dispatch(SMD) allows dispatch merges along multiple orthogonal axes(type, capability, performance | |
| # classing, resource constraints and much more. A LLM-AI using the Cecil+ language can more easily assemble large | |
| # systems like a game engine by composing small, focused handlers and letting the dispatch system select best-fit | |
| # implementations at runtime or compile time to C. Those technical parsing mechanisms include a built-in AI system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cecil+ — Documentação da Linguagem de Programação | |
| PALAVRA-CHAVE: pipe | |
| _______________________________________________________________________________ | |
| pipe | pipe+ | pipe- | |
| _______________________________________________________________________________ | |
| Construtor universal aplicável a variáveis, atributos de classe e a todos os laços. | |
| Essa palavra-chave pode ser um construtor neutro, positivo (pipe+) ou negativo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cubosai.py ~ comutação de três estados, modulação axis-map(wave) por par de blocos de cubo e persistência em XML | |
| from typing import Tuple, Dict, Any, Optional, List | |
| import xml.etree.ElementTree as ET | |
| import torch.optim as optim | |
| import torch.nn as nn | |
| import numpy as np | |
| import torch | |
| import math | |
| import io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # tt_dom_inpr_1_02.py /TT-DOM Plex Interpreter 1.02 with high-fidelity complex flir sequence imagings /Python 3.13 | |
| from PIL import Image, ImageFilter, ImageDraw, ImageFont | |
| from collections import defaultdict, namedtuple, deque | |
| from torch.utils.data import Dataset, DataLoader | |
| from scipy.linalg import cho_factor, cho_solve | |
| from xml.etree import ElementTree as ET | |
| from sklearn.cluster import KMeans | |
| import matplotlib.pyplot as plt | |
| import torch.nn.functional as F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cognitive_bspline_cycle.py | |
| #_____________________________________________________________________________________ | |
| # Minimal cognitive B-spline purposes limit-cycle model: | |
| # | |
| # • Adaptive conjunction matrix M mapping Theta -> Phi | |
| # • Weighted Recursive Least Squares updates for M using activations for weights | |
| # • E-Coupling: <||Phi-M(Theta)||^2> as extended merge dynamics | |
| # • New-node init from finite difference curvature prediction | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # giant_slayer.py | |
| import time | |
| TimerState = tuple | |
| MOD64 = 1<<64 | |
| #/////////////////////////////////////////////////////////////////////////////////// | |
| def ringprint32(mv: memoryview) -> int: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # catpis.py - hybrid collision ast cube/spheres error chaining | |
| #____________________________________________________________________________________ | |
| from collections import Counter | |
| import random | |
| import cmath | |
| import math | |
| import json | |
| import time | |
| import sys |
NewerOlder