Skip to main content

Recently Updated Pages

File types

pyntree Supported file types and actions

pyntree currently supports a plethora of file types, all of which can be encrypted: Pickle (defa...

Updated 1 year ago by jvadair

Configuring Distance Metric

DeeprAI Docs K-Nearest Neighbors

Configuring Distance Metric for KNN Function Signature def config_distance(self, distance): ...

Updated 1 year ago by Kieran Carter

Retrieving Nearest Neighbors

DeeprAI Docs K-Nearest Neighbors

Retrieving Nearest Neighbors with KNN Function Signature def classify_neighbors(self, query_p...

Updated 1 year ago by Kieran Carter

Calculating Classification Probability

DeeprAI Docs K-Nearest Neighbors

Calculating Classification Probability with KNN Function Signature def classify_probability(s...

Updated 1 year ago by Kieran Carter

Classifying a Query Point

DeeprAI Docs K-Nearest Neighbors

Classifying a Query Point with KNN Function Signature def classify(self, query_point): Par...

Updated 1 year ago by Kieran Carter

Store Data in KNN

DeeprAI Docs K-Nearest Neighbors

Storing Values in KNN Classifier Function Signature def store_vals(self, x_values, y_values, ...

Updated 1 year ago by Kieran Carter

Instant classifier

DeeprAI Docs K-Nearest Neighbors

Instant Classifier Function Function Signature def instant_classifier(self, x_vals, y_vals,...

Updated 1 year ago by Kieran Carter

Loading a Model

DeeprAI Docs Feed Forward Model

Function Signature def load(self, file_location: str) -> None: Parameters file_locatio...

Updated 1 year ago by Kieran Carter

Saving a Model

DeeprAI Docs Feed Forward Model

Function Signature def save(self, file_location: str) -> None: Parameters file_locatio...

Updated 1 year ago by Kieran Carter

Sine Regression

DeeprAI Docs Regression

Module: deeprai.models.regression.sine_regression Class: SineRegression A class representatio...

Updated 1 year ago by Kieran Carter

Poly Regression

DeeprAI Docs Regression

Module: deeprai.models.regression.poly_regression Class: PolyRegression A class representatio...

Updated 1 year ago by Kieran Carter

Linear Regression

DeeprAI Docs Regression

Module: deeprai.models.regression.linear_regression This module introduces a simple Linear Regre...

Updated 1 year ago by Kieran Carter

Toolkit

DeeprAI Docs Tools

Module: deeprai.tools.toolkit This module provides a collection of utility functions designed fo...

Updated 1 year ago by Kieran Carter

Noise

DeeprAI Docs Tools

Module: deeprai.tools.noise This module provides a set of classes for introducing different type...

Updated 1 year ago by Kieran Carter

Positional Embedding

DeeprAI Docs Embeddings

Function Signature def embed_position(sequence: np.ndarray) -> np.ndarray: Parameters ...

Updated 1 year ago by Kieran Carter

Word Vecrotization

DeeprAI Docs Embeddings

Module Import: from deeprai.embedding import word_vectorize Class Definition: class Wo...

Updated 1 year ago by Kieran Carter

The where() method

pyntree Additional Features

Syntax: Node.where(**kwargs) Let's say you have a lot of users, sorted by IDs. Now, you want ...

Updated 1 year ago by jvadair

Node representation

pyntree Additional Features

Syntax: str(Node) # or repr(Node) str(Node) will return a string representation of the da...

Updated 1 year ago by jvadair

Getting the children

pyntree Basic Usage

Syntax: Node._children The ._children property returns a list of Node objects (the children o...

Updated 1 year ago by jvadair

Converting back to a dictionary

pyntree Additional Features

Syntax: dict(Node) This is pretty straightforward, as shown above. The command will make a ne...

Updated 1 year ago by jvadair