NeuralBlitz/Goainglys
Fully Go AI Framework
Platform-specific configuration:
{
"mcpServers": {
"Goainglys": {
"command": "npx",
"args": [
"-y",
"Goainglys"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Native Go ML Projects Collection
A comprehensive collection of machine learning and deep learning implementations written in pure Go with no external dependencies.
| Project | Description | Status | |---------|-------------|--------| | Transformer | Complete Transformer architecture (Vaswani et al., 2017) | โ Complete | | Vector Database | HNSW-based vector similarity search | โ Complete | | ASR Library | Automatic Speech Recognition with MFCC & LSTM | โ Complete | | RAG Evaluation | Comprehensive RAG/LLM evaluation toolkit | โ Complete | | Training Dashboard | Real-time ML training metrics visualization | โ Complete | | Model Registry | Model versioning and management system | โ Complete | | Agents Framework | AI agent framework with native transformers | โ Complete | | Fine-tuning | Neural network fine-tuning with LoRA support | โ Complete | | GPT/BERT | Native Go GPT and BERT transformer models | โ Complete | | MCP Marketplace | MCP apps marketplace with REST API and web UI | โ Complete | | LRS-Agents-NBX | Learning Rate Scheduler agents with NBX integration | โ Complete |
/workspace/
โโโ tensor/ # Core tensor operations library
โ โโโ tensor.go # Tensor data structure
โ โโโ ops.go # Mathematical operations
โโโ transformer/ # Transformer architecture implementation
โ โโโ layer.go # Multi-head attention, FFN, positional encoding
โ โโโ model.go # Encoder/Decoder, embeddings, full model
โ โโโ backward.go # Backpropagation through layers
โ โโโ train.go # Training utilities
โโโ vector_db/ # Native vector database
โ โโโ main.go # VectorDB with CRUD operations
โ โโโ hnsw.go # HNSW index for ANN search
โ โโโ types.go # Type defiLoading reviews...