Metadata-Version: 2.1
Name: neuro-scribe
Version: 0.2.0.post3
Summary: NeuroScribe - a lightweight deep learning framework.
Author: Ghaith Husrieh
Project-URL: Source, https://github.com/Ghaith-Husrieh/NeuroScribe
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: numpy==1.26.4
Requires-Dist: tqdm==4.65.0
Requires-Dist: requests==2.31.0
Requires-Dist: plotly==5.22.0
Requires-Dist: cupy-cuda12x==13.0.0
Requires-Dist: fastrlock==0.8.2

<h1 align="center"> NeuroScribe v0.2.0 </h1>

<div align="center">
    <picture>
        <img src="./docs/static/neuroscribe_logo.png">
    </picture>
</div>

## Installation

```
> pip install neuro-scribe
```

> [!Note]
>
> - If you want CUDA support for GPU acceleration, please ensure that you have CUDA Toolkit version 12 or higher installed on your device.<br> You can download CUDA Toolkit from the official NVIDIA website: [CUDA Toolkit Downloads](https://developer.nvidia.com/cuda-downloads)
> - If you're installing NeuroScribe on an Apple Silicon Mac, NeuroScribe will automatically detect the architecture and install additional dependencies for Metal Performance Shaders (MPS) support.

## Quick Start Example

This example demonstrates how to use Neuroscribe in a way that closely resembles PyTorch syntax and conventions. By following PyTorch's familiar patterns, users can easily integrate Neuroscribe into their existing deep learning workflows without significant adjustments.

```python
import neuroscribe as ns
import neuroscribe.nn as nn


class MyModel(nn.Module):
    def __init__(self):
        super().__init__()
        self.l1 = nn.Linear(784, 128)
        self.relu = nn.ReLU()
        self.l2 = nn.Linear(128, 10)

    def forward(self, x):
        x = self.l1(x)
        x = self.relu(x)
        x = self.l2(x)
        return x


def main():
    model = MyModel()
    model.eval()
    model.to('cuda')
    input = ns.randn(32, 784, dtype='float32', requires_grad=False, device='cuda')
    output = model(input)
    print(output)


if __name__ == '__main__':
    main()
```

## Available Accelerators

Neuroscribe currently supports the following accelerators:

- CPU (default)
- CUDA
- MPS (Metal Performance Shaders)

We plan to add support for additional accelerators to further enhance performance capabilities.

## Notes

- Functions suffixed with '\_' in the Tensor class perform in-place modifications to the Tensor object and do not create a new Tensor as output.
