You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/publish.yml
+1-9Lines changed: 1 addition & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,3 @@
1
-
# This workflow will upload a Python Package using Twine when a release is created
2
-
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
-
4
-
# This workflow uses actions that are not certified by GitHub.
5
-
# They are provided by a third-party and are governed by
6
-
# separate terms of service, privacy policy, and support
Torchhd is a Python library for Hyperdimensional Computing.
18
18
@@ -28,16 +28,16 @@ pip install hdc
28
28
```
29
29
30
30
```bash
31
-
conda install -c mikeheddes hdc
31
+
conda install -c torchhd torchhd
32
32
```
33
33
34
34
## Documentation
35
35
36
-
You can find documentation for Torchhd [on the website](https://mikeheddes.github.io/hdc-lib).
36
+
You can find documentation for Torchhd [on the website](https://hyperdimensional-computing.github.io/torchhd/).
37
37
38
38
## Examples
39
39
40
-
We have several examples [in the repository](/examples/). Here is a simple one to get you started:
40
+
We have several examples [in the repository](https://github.com/hyperdimensional-computing/torchhd/tree/main/examples). Here is a simple one to get you started:
41
41
42
42
```python
43
43
import torch
@@ -87,9 +87,9 @@ You will notice that we first declare all the symbols which are used to represen
87
87
### Creating a New Release
88
88
89
89
- A GitHub release triggers a GitHub action that builds the library and publishes it to PyPi and Conda in addition to the documentation website.
90
-
- Before creating a new GitHub release, increment the version number in [setup.py](/setup.py) using [semantic versioning](https://semver.org).
90
+
- Before creating a new GitHub release, increment the version number in [setup.py](https://github.com/hyperdimensional-computing/torchhd/blob/main/setup.py) using [semantic versioning](https://semver.org).
91
91
- When creating a new GitHub release, set the tag to be "v{version number}", e.g., v1.5.2, and provide a clear description of the changes.
92
92
93
93
### License
94
94
95
-
This library is [MIT licensed](./LICENSE).
95
+
This library is [MIT licensed](https://github.com/hyperdimensional-computing/torchhd/blob/main/LICENSE).
0 commit comments