superquantx 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- superquantx/__init__.py +321 -0
- superquantx/algorithms/__init__.py +55 -0
- superquantx/algorithms/base_algorithm.py +413 -0
- superquantx/algorithms/hybrid_classifier.py +628 -0
- superquantx/algorithms/qaoa.py +406 -0
- superquantx/algorithms/quantum_agents.py +1006 -0
- superquantx/algorithms/quantum_kmeans.py +575 -0
- superquantx/algorithms/quantum_nn.py +544 -0
- superquantx/algorithms/quantum_pca.py +499 -0
- superquantx/algorithms/quantum_svm.py +346 -0
- superquantx/algorithms/vqe.py +553 -0
- superquantx/algorithms.py +863 -0
- superquantx/backends/__init__.py +265 -0
- superquantx/backends/base_backend.py +321 -0
- superquantx/backends/braket_backend.py +420 -0
- superquantx/backends/cirq_backend.py +466 -0
- superquantx/backends/ocean_backend.py +491 -0
- superquantx/backends/pennylane_backend.py +419 -0
- superquantx/backends/qiskit_backend.py +451 -0
- superquantx/backends/simulator_backend.py +455 -0
- superquantx/backends/tket_backend.py +519 -0
- superquantx/circuits.py +447 -0
- superquantx/cli/__init__.py +28 -0
- superquantx/cli/commands.py +528 -0
- superquantx/cli/main.py +254 -0
- superquantx/client.py +298 -0
- superquantx/config.py +326 -0
- superquantx/exceptions.py +287 -0
- superquantx/gates.py +588 -0
- superquantx/logging_config.py +347 -0
- superquantx/measurements.py +702 -0
- superquantx/ml.py +936 -0
- superquantx/noise.py +760 -0
- superquantx/utils/__init__.py +83 -0
- superquantx/utils/benchmarking.py +523 -0
- superquantx/utils/classical_utils.py +575 -0
- superquantx/utils/feature_mapping.py +467 -0
- superquantx/utils/optimization.py +410 -0
- superquantx/utils/quantum_utils.py +456 -0
- superquantx/utils/visualization.py +654 -0
- superquantx/version.py +33 -0
- superquantx-0.1.0.dist-info/METADATA +365 -0
- superquantx-0.1.0.dist-info/RECORD +46 -0
- superquantx-0.1.0.dist-info/WHEEL +4 -0
- superquantx-0.1.0.dist-info/entry_points.txt +2 -0
- superquantx-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,365 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: superquantx
|
3
|
+
Version: 0.1.0
|
4
|
+
Summary: Quantum AI Research Platform - Unified API for QuantumAgentic AIsystems research
|
5
|
+
Project-URL: Homepage, https://github.com/SuperagenticAI/superquantx
|
6
|
+
Project-URL: Documentation, https://superagenticai.github.io/superquantx
|
7
|
+
Project-URL: Repository, https://github.com/SuperagenticAI/superquantx
|
8
|
+
Project-URL: Bug Tracker, https://github.com/SuperagenticAI/superquantx/issues
|
9
|
+
Project-URL: Source Code, https://github.com/SuperagenticAI/superquantx
|
10
|
+
Project-URL: Changelog, https://github.com/SuperagenticAI/superquantx/blob/main/CHANGELOG.md
|
11
|
+
Project-URL: Discussions, https://github.com/SuperagenticAI/superquantx/discussions
|
12
|
+
Project-URL: Funding, https://github.com/sponsors/SuperagenticAI
|
13
|
+
Author-email: Shashi Jagtap <shashi@super-agentic.ai>, Shashi Jagtap <shashikant.jagtap@icloud.com>, SuperXLab Research Team <research@super-agentic.ai>
|
14
|
+
Maintainer-email: Shashi Jagtap <shashi@super-agentic.ai>, Shashi Jagtap <shashikant.jagtap@icloud.com>, SuperXLab Research Team <research@super-agentic.ai>
|
15
|
+
License: Apache-2.0
|
16
|
+
License-File: LICENSE
|
17
|
+
Keywords: agentic-ai,braket,cirq,experimental,pennylane,qiskit,quantum-agents,quantum-algorithms,quantum-computing,quantum-machine-learning,research-platform,unified-api
|
18
|
+
Classifier: Development Status :: 3 - Alpha
|
19
|
+
Classifier: Intended Audience :: Developers
|
20
|
+
Classifier: Intended Audience :: Education
|
21
|
+
Classifier: Intended Audience :: Science/Research
|
22
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
23
|
+
Classifier: Operating System :: OS Independent
|
24
|
+
Classifier: Programming Language :: Python :: 3
|
25
|
+
Classifier: Programming Language :: Python :: 3.10
|
26
|
+
Classifier: Programming Language :: Python :: 3.11
|
27
|
+
Classifier: Programming Language :: Python :: 3.12
|
28
|
+
Classifier: Topic :: Education
|
29
|
+
Classifier: Topic :: Scientific/Engineering
|
30
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
31
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
32
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
33
|
+
Classifier: Typing :: Typed
|
34
|
+
Requires-Python: >=3.10
|
35
|
+
Requires-Dist: click>=8.0.0
|
36
|
+
Requires-Dist: httpx>=0.25.0
|
37
|
+
Requires-Dist: loguru>=0.7.2
|
38
|
+
Requires-Dist: matplotlib>=3.8.0
|
39
|
+
Requires-Dist: networkx>=3.2.0
|
40
|
+
Requires-Dist: numpy>=1.26.0
|
41
|
+
Requires-Dist: pydantic>=2.5.0
|
42
|
+
Requires-Dist: rich>=13.7.0
|
43
|
+
Requires-Dist: scikit-learn>=1.4.0
|
44
|
+
Requires-Dist: scipy>=1.12.0
|
45
|
+
Requires-Dist: typer>=0.12.0
|
46
|
+
Requires-Dist: typing-extensions>=4.9.0; python_version < '3.11'
|
47
|
+
Provides-Extra: all-backends
|
48
|
+
Requires-Dist: amazon-braket-sdk>=1.75.0; extra == 'all-backends'
|
49
|
+
Requires-Dist: cirq>=1.3.0; extra == 'all-backends'
|
50
|
+
Requires-Dist: dimod>=0.12.14; extra == 'all-backends'
|
51
|
+
Requires-Dist: dwave-ocean-sdk>=7.0.0; extra == 'all-backends'
|
52
|
+
Requires-Dist: pennylane-lightning>=0.35.0; extra == 'all-backends'
|
53
|
+
Requires-Dist: pennylane>=0.35.0; extra == 'all-backends'
|
54
|
+
Requires-Dist: pytket-qiskit>=0.50.0; extra == 'all-backends'
|
55
|
+
Requires-Dist: pytket>=1.25.0; extra == 'all-backends'
|
56
|
+
Requires-Dist: qiskit-aer>=0.13.0; extra == 'all-backends'
|
57
|
+
Requires-Dist: qiskit-ibm-runtime>=0.20.0; extra == 'all-backends'
|
58
|
+
Requires-Dist: qiskit>=1.0.0; extra == 'all-backends'
|
59
|
+
Provides-Extra: braket
|
60
|
+
Requires-Dist: amazon-braket-sdk>=1.75.0; extra == 'braket'
|
61
|
+
Provides-Extra: cirq
|
62
|
+
Requires-Dist: cirq>=1.3.0; extra == 'cirq'
|
63
|
+
Provides-Extra: dev
|
64
|
+
Requires-Dist: black>=24.0.0; extra == 'dev'
|
65
|
+
Requires-Dist: build>=1.0.0; extra == 'dev'
|
66
|
+
Requires-Dist: coverage[toml]>=7.4.0; extra == 'dev'
|
67
|
+
Requires-Dist: mypy>=1.8.0; extra == 'dev'
|
68
|
+
Requires-Dist: pre-commit>=3.6.0; extra == 'dev'
|
69
|
+
Requires-Dist: pytest-benchmark>=4.0.0; extra == 'dev'
|
70
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
|
71
|
+
Requires-Dist: pytest-mock>=3.12.0; extra == 'dev'
|
72
|
+
Requires-Dist: pytest-xdist>=3.5.0; extra == 'dev'
|
73
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
74
|
+
Requires-Dist: ruff>=0.2.0; extra == 'dev'
|
75
|
+
Requires-Dist: twine>=5.0.0; extra == 'dev'
|
76
|
+
Provides-Extra: docs
|
77
|
+
Requires-Dist: mkdocs-gen-files>=0.5.0; extra == 'docs'
|
78
|
+
Requires-Dist: mkdocs-jupyter>=0.24.0; extra == 'docs'
|
79
|
+
Requires-Dist: mkdocs-material>=9.5.0; extra == 'docs'
|
80
|
+
Requires-Dist: mkdocs>=1.5.0; extra == 'docs'
|
81
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == 'docs'
|
82
|
+
Provides-Extra: full-dev
|
83
|
+
Requires-Dist: amazon-braket-sdk>=1.75.0; extra == 'full-dev'
|
84
|
+
Requires-Dist: black>=24.0.0; extra == 'full-dev'
|
85
|
+
Requires-Dist: build>=1.0.0; extra == 'full-dev'
|
86
|
+
Requires-Dist: cirq>=1.3.0; extra == 'full-dev'
|
87
|
+
Requires-Dist: coverage[toml]>=7.4.0; extra == 'full-dev'
|
88
|
+
Requires-Dist: dimod>=0.12.14; extra == 'full-dev'
|
89
|
+
Requires-Dist: dwave-ocean-sdk>=7.0.0; extra == 'full-dev'
|
90
|
+
Requires-Dist: mkdocs-gen-files>=0.5.0; extra == 'full-dev'
|
91
|
+
Requires-Dist: mkdocs-jupyter>=0.24.0; extra == 'full-dev'
|
92
|
+
Requires-Dist: mkdocs-material>=9.5.0; extra == 'full-dev'
|
93
|
+
Requires-Dist: mkdocs>=1.5.0; extra == 'full-dev'
|
94
|
+
Requires-Dist: mkdocstrings[python]>=0.24.0; extra == 'full-dev'
|
95
|
+
Requires-Dist: mypy>=1.8.0; extra == 'full-dev'
|
96
|
+
Requires-Dist: pennylane-lightning>=0.35.0; extra == 'full-dev'
|
97
|
+
Requires-Dist: pennylane>=0.35.0; extra == 'full-dev'
|
98
|
+
Requires-Dist: pre-commit>=3.6.0; extra == 'full-dev'
|
99
|
+
Requires-Dist: pytest-benchmark>=4.0.0; extra == 'full-dev'
|
100
|
+
Requires-Dist: pytest-cov>=4.1.0; extra == 'full-dev'
|
101
|
+
Requires-Dist: pytest-mock>=3.12.0; extra == 'full-dev'
|
102
|
+
Requires-Dist: pytest-xdist>=3.5.0; extra == 'full-dev'
|
103
|
+
Requires-Dist: pytest>=8.0.0; extra == 'full-dev'
|
104
|
+
Requires-Dist: pytket-qiskit>=0.50.0; extra == 'full-dev'
|
105
|
+
Requires-Dist: pytket>=1.25.0; extra == 'full-dev'
|
106
|
+
Requires-Dist: qiskit-aer>=0.13.0; extra == 'full-dev'
|
107
|
+
Requires-Dist: qiskit-ibm-runtime>=0.20.0; extra == 'full-dev'
|
108
|
+
Requires-Dist: qiskit>=1.0.0; extra == 'full-dev'
|
109
|
+
Requires-Dist: ruff>=0.2.0; extra == 'full-dev'
|
110
|
+
Requires-Dist: twine>=5.0.0; extra == 'full-dev'
|
111
|
+
Provides-Extra: ocean
|
112
|
+
Requires-Dist: dimod>=0.12.14; extra == 'ocean'
|
113
|
+
Requires-Dist: dwave-ocean-sdk>=7.0.0; extra == 'ocean'
|
114
|
+
Provides-Extra: pennylane
|
115
|
+
Requires-Dist: pennylane-lightning>=0.35.0; extra == 'pennylane'
|
116
|
+
Requires-Dist: pennylane>=0.35.0; extra == 'pennylane'
|
117
|
+
Provides-Extra: qiskit
|
118
|
+
Requires-Dist: qiskit-aer>=0.13.0; extra == 'qiskit'
|
119
|
+
Requires-Dist: qiskit-ibm-runtime>=0.20.0; extra == 'qiskit'
|
120
|
+
Requires-Dist: qiskit>=1.0.0; extra == 'qiskit'
|
121
|
+
Provides-Extra: tket
|
122
|
+
Requires-Dist: pytket-qiskit>=0.50.0; extra == 'tket'
|
123
|
+
Requires-Dist: pytket>=1.25.0; extra == 'tket'
|
124
|
+
Description-Content-Type: text/markdown
|
125
|
+
|
126
|
+
<div align="center">
|
127
|
+
<img src="resources/logo.png" alt="SuperQuantX Logo" width="600"/>
|
128
|
+
</div>
|
129
|
+
|
130
|
+
# SuperQuantX
|
131
|
+
|
132
|
+
[](https://pypi.org/project/superquantx/)
|
133
|
+
[](https://pypi.org/project/superquantx/)
|
134
|
+
[](https://github.com/SuperagenticAI/superquantx/blob/main/LICENSE)
|
135
|
+
[](https://github.com/SuperagenticAI/superquantx/actions)
|
136
|
+
[](#-documentation)
|
137
|
+
[](https://github.com/psf/black)
|
138
|
+
[](https://github.com/astral-sh/ruff)
|
139
|
+
|
140
|
+
**Unified Quantum Computing Platform - Building autonomous quantum-enhanced AI systems**
|
141
|
+
|
142
|
+
> 📖 **[Read the Full Documentation →](https://superagenticai.github.io/superquantx/)**
|
143
|
+
|
144
|
+
**Research by [Superagentic AI](https://super-agentic.ai) - Quantum AI Research**
|
145
|
+
|
146
|
+
## 🚀 What is SuperQuantX?
|
147
|
+
|
148
|
+
SuperQuantX is a **unified quantum computing platform** that makes quantum algorithms and quantum machine learning accessible through a single, consistent API. Whether you're a researcher, developer, or quantum enthusiast, SuperQuantX provides:
|
149
|
+
|
150
|
+
- **🎯 Single API** - Works across all major quantum backends (IBM, Google, AWS, Quantinuum, D-Wave)
|
151
|
+
- **🤖 Quantum Agents** - Pre-built autonomous agents for trading, research, and optimization
|
152
|
+
- **🧠 Quantum ML** - Advanced quantum machine learning algorithms and neural networks
|
153
|
+
- **⚡ Easy Setup** - Get started in minutes with comprehensive documentation
|
154
|
+
|
155
|
+
## ✨ Key Features
|
156
|
+
|
157
|
+
### **🔗 Universal Quantum Backend Support**
|
158
|
+
```python
|
159
|
+
# Same code works on ANY quantum platform
|
160
|
+
qsvm = sqx.QuantumSVM(backend='pennylane') # PennyLane
|
161
|
+
qsvm = sqx.QuantumSVM(backend='qiskit') # IBM Qiskit
|
162
|
+
qsvm = sqx.QuantumSVM(backend='cirq') # Google Cirq
|
163
|
+
qsvm = sqx.QuantumSVM(backend='braket') # AWS Braket
|
164
|
+
qsvm = sqx.QuantumSVM(backend='quantinuum') # Quantinuum H-Series
|
165
|
+
```
|
166
|
+
|
167
|
+
### **🤖 Autonomous Quantum Agents**
|
168
|
+
Ready-to-deploy intelligent agents powered by quantum algorithms:
|
169
|
+
- **QuantumTradingAgent** - Portfolio optimization and risk analysis
|
170
|
+
- **QuantumResearchAgent** - Scientific hypothesis generation and testing
|
171
|
+
- **QuantumOptimizationAgent** - Complex combinatorial and continuous optimization
|
172
|
+
- **QuantumClassificationAgent** - Advanced ML with quantum advantage
|
173
|
+
|
174
|
+
### **🧠 Quantum Machine Learning**
|
175
|
+
State-of-the-art quantum ML algorithms:
|
176
|
+
- **Quantum Support Vector Machines** - Enhanced pattern recognition
|
177
|
+
- **Quantum Neural Networks** - Hybrid quantum-classical architectures
|
178
|
+
- **QAOA & VQE** - Optimization and molecular simulation
|
179
|
+
- **Quantum Clustering** - Advanced data analysis techniques
|
180
|
+
|
181
|
+
## 🚀 Quick Start
|
182
|
+
|
183
|
+
### Installation
|
184
|
+
```bash
|
185
|
+
# Install with uv (recommended)
|
186
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
187
|
+
git clone https://github.com/SuperagenticAI/superquantx.git
|
188
|
+
cd superquantx
|
189
|
+
uv sync --extra all
|
190
|
+
|
191
|
+
# Or with pip
|
192
|
+
pip install superquantx
|
193
|
+
```
|
194
|
+
|
195
|
+
### Deploy Your First Quantum Agent
|
196
|
+
```python
|
197
|
+
import superquantx as sqx
|
198
|
+
|
199
|
+
# Deploy quantum trading agent
|
200
|
+
agent = sqx.QuantumTradingAgent(
|
201
|
+
strategy="quantum_portfolio",
|
202
|
+
risk_tolerance=0.3
|
203
|
+
)
|
204
|
+
results = agent.deploy()
|
205
|
+
print(f"Performance: {results.metrics}")
|
206
|
+
```
|
207
|
+
|
208
|
+
### Quantum Machine Learning
|
209
|
+
```python
|
210
|
+
# Quantum SVM with automatic backend selection
|
211
|
+
qsvm = sqx.QuantumSVM(backend='auto')
|
212
|
+
qsvm.fit(X_train, y_train)
|
213
|
+
accuracy = qsvm.score(X_test, y_test)
|
214
|
+
|
215
|
+
# Compare quantum vs classical performance
|
216
|
+
automl = sqx.QuantumAutoML()
|
217
|
+
best_model = automl.fit(X_train, y_train)
|
218
|
+
report = automl.quantum_advantage_report()
|
219
|
+
```
|
220
|
+
|
221
|
+
### Advanced Quantum Algorithms
|
222
|
+
```python
|
223
|
+
# Molecular simulation with VQE
|
224
|
+
vqe = sqx.VQE(molecule="H2", backend="pennylane")
|
225
|
+
ground_state = vqe.optimize()
|
226
|
+
|
227
|
+
# Optimization with QAOA
|
228
|
+
qaoa = sqx.QAOA(problem=optimization_problem)
|
229
|
+
solution = qaoa.solve()
|
230
|
+
```
|
231
|
+
|
232
|
+
## 📖 Documentation
|
233
|
+
|
234
|
+
**Complete documentation is available at [superagenticai.github.io/superquantx](https://superagenticai.github.io/superquantx/)**
|
235
|
+
|
236
|
+
The documentation includes comprehensive guides for getting started, detailed API references, tutorials, and examples for all supported quantum backends. Visit the documentation site for:
|
237
|
+
|
238
|
+
- **Getting Started** - Installation, configuration, and your first quantum program
|
239
|
+
- **User Guides** - Platform overview, backends, and algorithms
|
240
|
+
- **Tutorials** - Hands-on quantum computing and machine learning examples
|
241
|
+
- **API Reference** - Complete API documentation with examples
|
242
|
+
- **Development** - Contributing guidelines, architecture, and testing
|
243
|
+
|
244
|
+
## 🎯 Supported Platforms
|
245
|
+
|
246
|
+
SuperQuantX provides unified access to **all major quantum computing platforms**:
|
247
|
+
|
248
|
+
| Backend | Provider | Hardware | Simulator |
|
249
|
+
|---------|----------|----------|-----------|
|
250
|
+
| **PennyLane** | Multi-vendor | ✅ Various | ✅ |
|
251
|
+
| **Qiskit** | IBM | ✅ IBM Quantum | ✅ |
|
252
|
+
| **Cirq** | Google | ✅ Google Quantum AI | ✅ |
|
253
|
+
| **AWS Braket** | Amazon | ✅ IonQ, Rigetti | ✅ |
|
254
|
+
| **TKET** | Quantinuum | ✅ H-Series | ✅ |
|
255
|
+
| **Ocean** | D-Wave | ✅ Advantage | ✅ |
|
256
|
+
|
257
|
+
## 🤖 Quantum Agents
|
258
|
+
|
259
|
+
Pre-built autonomous agents for complex problem solving:
|
260
|
+
|
261
|
+
- **🏦 QuantumTradingAgent** - Portfolio optimization and risk analysis
|
262
|
+
- **🔬 QuantumResearchAgent** - Scientific hypothesis generation and testing
|
263
|
+
- **⚡ QuantumOptimizationAgent** - Combinatorial and continuous optimization
|
264
|
+
- **🧠 QuantumClassificationAgent** - Advanced ML with quantum advantage
|
265
|
+
|
266
|
+
## 🧮 Quantum Algorithms
|
267
|
+
|
268
|
+
Comprehensive library of quantum algorithms and techniques:
|
269
|
+
|
270
|
+
### **🔍 Quantum Machine Learning**
|
271
|
+
- **Quantum Support Vector Machines (QSVM)** - Enhanced pattern recognition with quantum kernels
|
272
|
+
- **Quantum Neural Networks (QNN)** - Hybrid quantum-classical neural architectures
|
273
|
+
- **Quantum Principal Component Analysis (QPCA)** - Quantum dimensionality reduction
|
274
|
+
- **Quantum K-Means** - Clustering with quantum distance calculations
|
275
|
+
|
276
|
+
### **⚡ Optimization Algorithms**
|
277
|
+
- **Quantum Approximate Optimization Algorithm (QAOA)** - Combinatorial optimization
|
278
|
+
- **Variational Quantum Eigensolver (VQE)** - Molecular simulation and optimization
|
279
|
+
- **Quantum Annealing** - Large-scale optimization with D-Wave systems
|
280
|
+
|
281
|
+
### **🧠 Advanced Quantum AI**
|
282
|
+
- **Quantum Reinforcement Learning** - RL with quantum advantage
|
283
|
+
- **Quantum Natural Language Processing** - Quantum-enhanced text analysis
|
284
|
+
- **Quantum Computer Vision** - Image processing with quantum circuits
|
285
|
+
|
286
|
+
## 💡 Why SuperQuantX?
|
287
|
+
|
288
|
+
| Traditional Approach | SuperQuantX Advantage |
|
289
|
+
|--------------------|---------------------|
|
290
|
+
| ❌ Multiple complex SDKs | ✅ Single unified API |
|
291
|
+
| ❌ Months to learn quantum | ✅ Minutes to first algorithm |
|
292
|
+
| ❌ Backend-specific code | ✅ Write once, run anywhere |
|
293
|
+
| ❌ Manual optimization | ✅ Automatic backend selection |
|
294
|
+
| ❌ Limited algorithms | ✅ Comprehensive algorithm library |
|
295
|
+
|
296
|
+
## 🤝 Contributing
|
297
|
+
|
298
|
+
We welcome contributions to SuperQuantX! Here's how to get involved:
|
299
|
+
|
300
|
+
### **🔧 Development Setup**
|
301
|
+
```bash
|
302
|
+
# Fork and clone the repository
|
303
|
+
git clone https://github.com/your-username/superquantx.git
|
304
|
+
cd superquantx
|
305
|
+
|
306
|
+
# Install development dependencies
|
307
|
+
uv sync --extra dev
|
308
|
+
|
309
|
+
# Run tests to verify setup
|
310
|
+
uv run pytest
|
311
|
+
```
|
312
|
+
|
313
|
+
### **🐛 Bug Reports & Feature Requests**
|
314
|
+
- **[Open an issue](https://github.com/SuperagenticAI/superquantx/issues)** - Report bugs or request features
|
315
|
+
- **[Read contributing guide](docs/development/contributing.md)** - Detailed contribution guidelines
|
316
|
+
|
317
|
+
### **📝 Documentation**
|
318
|
+
Help improve our documentation:
|
319
|
+
- Fix typos and clarify explanations
|
320
|
+
- Add examples and tutorials
|
321
|
+
- Improve API documentation
|
322
|
+
- Translate documentation
|
323
|
+
|
324
|
+
## 🔗 Resources & Community
|
325
|
+
|
326
|
+
### **📚 Learn More**
|
327
|
+
- **[Official Documentation](docs/)** - Complete guides and API reference
|
328
|
+
- **[Tutorial Notebooks](examples/)** - Jupyter notebooks with examples
|
329
|
+
|
330
|
+
|
331
|
+
## 📄 License
|
332
|
+
|
333
|
+
SuperQuantX is released under the [MIT License](LICENSE). Feel free to use it in your projects, research, and commercial applications.
|
334
|
+
|
335
|
+
---
|
336
|
+
|
337
|
+
## 🚀 Get Started Now
|
338
|
+
|
339
|
+
```bash
|
340
|
+
# Install SuperQuantX
|
341
|
+
pip install superquantx
|
342
|
+
|
343
|
+
# Deploy your first quantum agent
|
344
|
+
python -c "
|
345
|
+
import superquantx as sqx
|
346
|
+
agent = sqx.QuantumOptimizationAgent()
|
347
|
+
print('✅ SuperQuantX is ready!')
|
348
|
+
"
|
349
|
+
```
|
350
|
+
|
351
|
+
**Ready to explore quantum computing?**
|
352
|
+
|
353
|
+
👉 **[Start with the Quick Start Guide →](docs/getting-started/quickstart.md)**
|
354
|
+
|
355
|
+
---
|
356
|
+
|
357
|
+
<div align="center">
|
358
|
+
|
359
|
+
**SuperQuantX: Making Quantum Computing Accessible**
|
360
|
+
|
361
|
+
*Built with ❤️ by [Superagentic AI](https://super-agentic.ai)*
|
362
|
+
|
363
|
+
⭐ **Star this repo** if SuperQuantX helps your quantum journey!
|
364
|
+
|
365
|
+
</div>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
superquantx/__init__.py,sha256=kgtEA1h-KY7NbcfEl_pO1qr6nhnPRPs0pGzp0GLI8-w,8585
|
2
|
+
superquantx/algorithms.py,sha256=sGDVIpA2632fdCAAfQwSW8P3yZ9RBG8qAUtCccsNwUg,27448
|
3
|
+
superquantx/circuits.py,sha256=Mzwc9hfamBeE98nNALkJqx6ZYSgJf6BmZdcIX1sBFgg,16232
|
4
|
+
superquantx/client.py,sha256=dMUgTTOT6RttezHlqxXTBhLXn8jHEYTiqxi50Ss83BY,9171
|
5
|
+
superquantx/config.py,sha256=kc_THN1a09C6buzWQPsbi4npVzRpJTyJexqqC-cFu6U,10467
|
6
|
+
superquantx/exceptions.py,sha256=vAjwkMjoeCIp8KxP6UzX6EQsocOT3Qup7ze5bjiBMiU,9587
|
7
|
+
superquantx/gates.py,sha256=b5DJMqaKIgYaT_WQ8o5dkeA3RPZPojfgXx54Du5zhUo,18214
|
8
|
+
superquantx/logging_config.py,sha256=6bpVQCaoDOhg8uv2JwQkgzEIPE4UJZgFjEn5N6H1HMw,11311
|
9
|
+
superquantx/measurements.py,sha256=4R9G125QCkeaGuwjjjZeCvYEiQE3CeENcmMatKDKSv8,22534
|
10
|
+
superquantx/ml.py,sha256=4NE9nwLsUF8VMS8FVKl7-NlxyG5Mlowhyx1t9tnqPW4,30058
|
11
|
+
superquantx/noise.py,sha256=erOqXOpiGJ75G6rSPIZlf5APzsZassUO2w9UheVT2Qw,23858
|
12
|
+
superquantx/version.py,sha256=6qe2Iq0axROsECE_QTmfCecfXlevrV6vUiJ4l5-zIh8,943
|
13
|
+
superquantx/algorithms/__init__.py,sha256=vf6ziOAgzxylfpSnUN2tGUNW8aD_Znrlktnxym83-J8,1542
|
14
|
+
superquantx/algorithms/base_algorithm.py,sha256=ISdYoymfz2r6nUYhlKylbuEc6OewSROpRpRa1EbOTJ8,13102
|
15
|
+
superquantx/algorithms/hybrid_classifier.py,sha256=jxN9dqD5un-RZV1yx-L3ygsL2uocXA0Wfqmgua98vlQ,24578
|
16
|
+
superquantx/algorithms/qaoa.py,sha256=KESdmVbJEE6tUsKbtKqCQO5lkxRcslORw08jDidVnUc,14567
|
17
|
+
superquantx/algorithms/quantum_agents.py,sha256=gSTgS2hy2FJBFa1mKMg4dWnMDpjgaKSSO0Ix9QFM5Tk,39062
|
18
|
+
superquantx/algorithms/quantum_kmeans.py,sha256=Bf9WmtCyGwnKjoKTc6LYt_hR10UmeSAQyY_mDfa8G6s,22749
|
19
|
+
superquantx/algorithms/quantum_nn.py,sha256=PWtGAyewN-peGvB6m8Vp5lJ3ZXV-nXI8kWNzgaET0UM,20568
|
20
|
+
superquantx/algorithms/quantum_pca.py,sha256=TEF0XfXsGfnjJRDKUhKixVckYTrBxg136eUwwtmU4Po,20213
|
21
|
+
superquantx/algorithms/quantum_svm.py,sha256=JwmNr5dsAbaBIbycWUBl0T065Ytxpro7QcB86IrdyYg,11762
|
22
|
+
superquantx/algorithms/vqe.py,sha256=BUt5XZTmJ66qFX1BDYvHQTEqbQzcEcik3hFbDSeRgCs,20044
|
23
|
+
superquantx/backends/__init__.py,sha256=DWnlvvJ5GVhWsYq0zAPJJpMEXslKL_AukSZd3kIeAJo,7878
|
24
|
+
superquantx/backends/base_backend.py,sha256=e33U6Gpjwt_snPyIO7e0qeZBcQTTrmVJGR7_rYyDydY,13100
|
25
|
+
superquantx/backends/braket_backend.py,sha256=hgGbS7jGraMGQChMX7HMqYTML-EvrK-RFRReMuG1p3s,16220
|
26
|
+
superquantx/backends/cirq_backend.py,sha256=-Ke2d2Mi0bQOnxMlrAQF1ICxJjBGNOrn8tWqqZmbPmQ,18600
|
27
|
+
superquantx/backends/ocean_backend.py,sha256=d-pyxhwLm8ClywPJT1dsvd_1wCdf_3Dm7wyl6RiNtks,18491
|
28
|
+
superquantx/backends/pennylane_backend.py,sha256=AKl-fL47nqU0ZqsZlsqJmFQlsjqvNNeAtcgGTe76nTY,16680
|
29
|
+
superquantx/backends/qiskit_backend.py,sha256=rBgooF_O9uIIcrr0sCx0VjVutFcOPhkbJCbLg8rmIoM,17251
|
30
|
+
superquantx/backends/simulator_backend.py,sha256=OhE0Lko9x0lr_GokLD0EmP_ALcPq4szLsmYSAlrzrnQ,17341
|
31
|
+
superquantx/backends/tket_backend.py,sha256=qselp4s_fZfKdgOR0w662j8lHggy4-01pYqBl-tslEo,19034
|
32
|
+
superquantx/cli/__init__.py,sha256=A6IZla8yk8ab8Gdm5VSSDknAGkL4Y00ybY7rz9f6QFY,568
|
33
|
+
superquantx/cli/commands.py,sha256=I_ftOow1LBR94DlvjaB36Tg02v6kikSB1o_107tsVaU,15858
|
34
|
+
superquantx/cli/main.py,sha256=-jnP4B_IN5QL3tK58HacGik2pdzUItxnRc5dLgnRAWU,6555
|
35
|
+
superquantx/utils/__init__.py,sha256=W_BByYkPoYNUp83aqmYNup44TKe1Omo-ixIyX6O7qJQ,1745
|
36
|
+
superquantx/utils/benchmarking.py,sha256=2AmzhygL2VETGAbNKtG2rjwvDpeldSeEVwoI105dlbQ,17148
|
37
|
+
superquantx/utils/classical_utils.py,sha256=_kzd-PktlF3JsLME18xum_Kbd8FHis3q77vh-Ay0fJE,17128
|
38
|
+
superquantx/utils/feature_mapping.py,sha256=tkEa7wpZ3qog-VXnZyb9co4uujO7QI1n4eWpXAjMahM,14059
|
39
|
+
superquantx/utils/optimization.py,sha256=YZ3nT0XhZ7uKM47jUQktLIdogIpNlhNxkyE07Iwd4zE,11973
|
40
|
+
superquantx/utils/quantum_utils.py,sha256=6LQ-3lFHLY6pSiINZjt_MZ56PH4gcPvaam4BbPDEd3Q,12674
|
41
|
+
superquantx/utils/visualization.py,sha256=stZIG-qucJ0HPkyIR7ygCa4UmAcEA9R7lrK7h7cf5IQ,19131
|
42
|
+
superquantx-0.1.0.dist-info/METADATA,sha256=j1OUIGzt3RZL0ltiNLXFzt7O37ARgffrF6GbCJIHwmw,15292
|
43
|
+
superquantx-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
44
|
+
superquantx-0.1.0.dist-info/entry_points.txt,sha256=zzCcbhh_HWK1li0Wkw8OXRNfUCai6yO01f-Bolz-_Fo,53
|
45
|
+
superquantx-0.1.0.dist-info/licenses/LICENSE,sha256=BSfiUnkti0ZEg9J6ojq65utXmym91LF3QxHpIzPqWxc,1072
|
46
|
+
superquantx-0.1.0.dist-info/RECORD,,
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 SuperQuantX Team
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|