Metadata-Version: 2.1
Name: ndsl-attn-fs-archs
Version: 0.0.6
Summary: Architectures involved in the investigation of Attention Mechanisms as Feature Selection
Home-page: https://github.com/cobu93/attn-fs-archs
Author: Under ML
Author-email: urielcoro@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Development Status :: 4 - Beta
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# Installation guide

This repository contains the developed architectures in the research of attention mechanisms as feature selectors.

Currently, not all architectures are available. This packages will be updated in the future (I hope that).

The code here is developed as a python package. Anyway, a magic makefile is included (for your comfort :wink:), and some specifications are included below.


## Installing from PyPi

By running the next line you will install it from PyPi repo:

```
pip install ndsl-attn-fs-archs 
```

## Installing from source

### Building the package

To build the package you just need to run:

```
make
```

or: 

```
make build
```

### Installing the package

To install the package just execute:

```
make install
```

## Running tests

To run the included tests just execute

```
make test
```

If you want to add more tests don't forget to add them in the makefile.

Easy, right? :sunglasses: 










