Skip to main content

Recently Updated Pages

Math and object manipulation

pyntree Basic Usage

Syntax: Node += val Math operations If you used pyndb, you probably had to do something like...

Updated 2 years ago by jvadair

Installing

pyntree Getting started

pyntree is available via pip: pip install pyntree That's it!

Updated 2 years ago by jvadair

How to fix pyntree installing as UNKNOWN-0.0.0

pyntree Tips, Tricks, and Tidbits

pip install --upgrade pip wheel setuptools

Updated 2 years ago by jvadair

Moving beyond a single flat file

pyntree Tips, Tricks, and Tidbits

For more complex projects, a flat-file database may not be the way to go. Here is one example of ...

Updated 2 years ago by jvadair

FileNameUnset

pyntree Error messages

This error means that you tried to save a Node, but initialized it with raw data and never set a ...

Updated 2 years ago by jvadair

NameNotFound

pyntree Error messages

This error means that there is no Node with the name that you provided. Here's an example: x = ...

Updated 2 years ago by jvadair

Known limitations

pyntree Tips, Tricks, and Tidbits

Attempting to retrieve a name which is also a Node property will not work as intended (ex: _val...

Updated 2 years ago by jvadair

Terminology

pyntree Getting started

Node A pythonic representation of data - each key in a dictionary is represented by a Node objec...

Updated 2 years ago by jvadair

Getting the names of the children

pyntree Basic Usage

Syntax: Node._values To get a list of all of a Node's children, simply use the values propert...

Updated 2 years ago by jvadair

Graphing

DeeprAI Docs Feed Forward Model

Function Signature def graph(self, metric: str = "cost") -> None: Parameters metric (str, op...

Updated 2 years ago by Kieran Carter

Viewing network information

DeeprAI Docs Feed Forward Model

Function Signature def specs(self) -> str: Return Value output (str): A string representatio...

Updated 2 years ago by Kieran Carter

Running data through a network

DeeprAI Docs Feed Forward Model

Function Signature def run( self, inputs: np.ndarray ) -> np.ndarray: Parameters ...

Updated 2 years ago by Kieran Carter

Configuring Loss/Optimizers

DeeprAI Docs Feed Forward Model

Function Signature def config( optimizer: str = 'gradient descent', loss: str = 'mean ...

Updated 2 years ago by Kieran Carter

Training a network

DeeprAI Docs Feed Forward Model

Function Signature def train_model( train_inputs: np.ndarray, train_targets: np.ndarra...

Updated 2 years ago by Kieran Carter

Creating a layer

DeeprAI Docs Feed Forward Model

Function Signature def add_dense( neurons: int, activation: str = 'sigmoid', drop...

Updated 2 years ago by Kieran Carter

Set up your first Network

DeeprAI Docs Getting Started

With Deepr it is quite easy to start making your own neural network model. This chapter will show...

Updated 2 years ago by Kieran Carter

Getting the name of a Node

pyntree Basic Usage

Syntax: Node._name Let's say you have a miscellaneous Node that got passed to a function some...

Updated 2 years ago by jvadair

Encrypting a file

pyntree Supported file types and actions

Encryption is a new feature as of 1.0.0! To use encryption, first type pip install pyntree[encry...

Updated 2 years ago by jvadair

Saving

pyntree Basic Usage

Syntax: Node.save(filename=None) Simply call the save method to save your data: root_node.sa...

Updated 2 years ago by jvadair

Getting a value

pyntree Basic Usage

Syntax: Node() pyntree takes a somewhat unique yet simple approach to getting the values stor...

Updated 2 years ago by jvadair