An open API service indexing awesome lists of open source software.

https://github.com/codesandtags/fraud-predictive-model

An example to have a fraud predictive model in real time using Machine Learning
https://github.com/codesandtags/fraud-predictive-model

Last synced: about 2 months ago
JSON representation

An example to have a fraud predictive model in real time using Machine Learning

Awesome Lists containing this project

README

          

# Fraud Model

A fraud model to detect fraudulent credit card transactions.

## Problem Definition

## Data

## Evaluation

- Find patterns
- Transactions with most fraud patterns

## Features

## Modelling

## Experimentation

## Environemnt Setup

To install the environment for this project, run the following command:

```sh
conda create --prefix ./env pandas numpy matplotlib scikit-learn jupyter
```

To activate the environment, run the following command:

```sh
conda activate ./env
```

To deactivate the current environment, run the following command:

```sh
conda deactivate
```

To check the current environment, run the following command:

```sh
conda info --envs
```

To export the dependencies of the environment, run the following command:

```sh
conda env export > environment.yml
```

To create the environment from a environment.yml file, run the following command:

```sh
conda env create -f environment.yml
```