Metadata-Version: 2.1
Name: eiffel2
Version: 0.0.3.1
Summary: Neural Network visualization tool
Home-page: https://github.com/Ale9806/Eiffel2
Author: Eduardo Alejandro Lozano Garcia
Author-email: sagrario3098@gmail.com
License: UNKNOWN
Description: # Eiffel2
         > current version: 0.0.3  <br />  Next release: 19/11/2020
        
        Neural Network architecture  Visualization tool : [Github](https://github.com/Ale9806/Eiffel2)
        
        
        ## You can use eiffel2, which you can install using pip:
        ```python
        python -m pip install eiffel2
         ```
         to update eiffel:
         ```python
        python -m pip  install eiffel2 --upgrade
         ```
        
        Just import builder from eiffel and provide a list of neurons per layer in your network as an input.
        
        ## Example:
        ```python
        from eiffel2 import builder
        builder([1, 10, 10, 5, 5, 2, 1])
        # or the following if you want to have a dark theme
        builder([1, 10, 10, 5, 5, 2, 1], bmode="night")
        ```
        **output:** (normal mode)
        
        <a href="url"><img src="https://github.com/Ale9806/Eiffel2/blob/master/eiffel2.PNG" align="left"  width="300"  > </a>
        
        <br />&nbsp;<br />
        <br />&nbsp;<br />
        <br />&nbsp;<br />
        
        **output:** (with bmode="night')
        
        <a href="url"><img src="https://github.com/Ale9806/Eiffel2/blob/master/eiffel.PNG" align="left"  width="300"  > </a>
        
        <br />&nbsp;<br />
        <br />&nbsp;<br />
        <br />&nbsp;<br />
        <br />&nbsp;<br />
        
        # COLORS:
        
        You can add colors to your network with the net_colors variable in **builder()** , keep in mind that for a n layer network you
        must select n-1 colors
        Eiffel2 is compatible with vanila python colors ("red","blue") and Hex colors
        
        [Online Color tool](https://www.w3schools.com/colors/colors_picker.asp)
        
        ## EXAMPLE
        ```python
        from eiffel2 import builder
        builder([1,6,6,5,2],net_colors=["#581845","#900C3F","red","#FF5733"])
        ```
        **output:**
        
        <a href="url"><img src="https://github.com/Ale9806/Eiffel2/blob/master/color.PNG" align="left"  width="300"  > </a>
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
