Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -108,9 +108,13 @@ pip install catalyst-cloud
|
|
| 108 |
```
|
| 109 |
|
| 110 |
```python
|
| 111 |
-
from catalyst_cloud import
|
| 112 |
-
client =
|
| 113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
```
|
| 115 |
|
| 116 |
## Citation
|
|
@@ -130,4 +134,4 @@ If you use this model, please cite:
|
|
| 130 |
- [Website](https://catalyst-neuromorphic.com)
|
| 131 |
- [Cloud API](https://catalyst-neuromorphic.com/cloud)
|
| 132 |
- [PyPI: catalyst-cloud](https://pypi.org/project/catalyst-cloud/)
|
| 133 |
-
- [Paper (Zenodo)](https://zenodo.org/records/
|
|
|
|
| 108 |
```
|
| 109 |
|
| 110 |
```python
|
| 111 |
+
from catalyst_cloud import Client
|
| 112 |
+
client = Client("cn_live_your_key_here")
|
| 113 |
+
net = client.create_network(
|
| 114 |
+
populations=[{"label": "input", "size": 700}, {"label": "hidden", "size": 512}],
|
| 115 |
+
connections=[{"source": "input", "target": "hidden", "weight": 500}],
|
| 116 |
+
)
|
| 117 |
+
result = client.simulate(network_id=net["network_id"], timesteps=250)
|
| 118 |
```
|
| 119 |
|
| 120 |
## Citation
|
|
|
|
| 134 |
- [Website](https://catalyst-neuromorphic.com)
|
| 135 |
- [Cloud API](https://catalyst-neuromorphic.com/cloud)
|
| 136 |
- [PyPI: catalyst-cloud](https://pypi.org/project/catalyst-cloud/)
|
| 137 |
+
- [N1 Paper (Zenodo)](https://zenodo.org/records/18727094)
|