https://github.com/ericlearning/package-testing
Experiments on packaging, VSCode, and Github Action
https://github.com/ericlearning/package-testing
Last synced: 4 months ago
JSON representation
Experiments on packaging, VSCode, and Github Action
- Host: GitHub
- URL: https://github.com/ericlearning/package-testing
- Owner: ericlearning
- License: mit
- Created: 2021-05-15T11:14:38.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-15T13:46:16.000Z (about 5 years ago)
- Last Synced: 2025-12-15T03:30:19.529Z (7 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# package-testing
Experiments on packaging, VSCode, and Github Action
## Features
* Addition of two numbers
* Subtraction of two numbers
* Convolution Block
## Installation
Run the following command:
```python
pip install ufo
```
## Usage
```python
from ufo.utils import add, sub, ConvBlk
# add two numbers
add(3.4, 5.1)
add(-12, 7)
# subtract two numbers
sub(1.1, 9.1)
sub(-2, -6)
# create a convolutional block
net = utils.ConvBlk(10, 30)
```