mrwabbit commited on
Commit
752ee0a
·
verified ·
1 Parent(s): 9908537

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -4
README.md CHANGED
@@ -108,9 +108,13 @@ pip install catalyst-cloud
108
  ```
109
 
110
  ```python
111
- from catalyst_cloud import CatalystClient
112
- client = CatalystClient(api_key="your-key")
113
- result = client.simulate(network_config={...})
 
 
 
 
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/14868368)
 
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)