Skip to content

In the world of artificial intelligence and machine learning, Recurrent Neural Networks, or RNNs for short, are a fascinating class of algorithms.

Notifications You must be signed in to change notification settings

ArmandAguilar/machine_learning_examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MACHINE LEARNING EXAMPLES

Table of Contents:

Supported Versions License


Installation guide


Installation and Use of Virtualenv

Virtualenv is a tool that allows you to create isolated Python environments so you can manage your project dependencies more efficiently.

Install

To install virtualenv, you can use pip, which is Python's package manager. Open a terminal and run the following command:

pip install virtualenv

Create Virtual Environment

Once virtualenv is installed, you can create a virtual environment for your project as follows:

# In your project directory, create a new virtual environment
virtualenv venv

You can replace venv with whatever name you want for your virtual environment.

Activate the Virtual Environment

To activate the virtual environment on your system, use the following command:

Windows (cmd):

venv\Scripts\activate

Windows (PowerShell):

.\venv\Scripts\Activate.ps1

macOS or Linux

source venv/bin/activate

Dependecies Installs

pip install keras
pip install numpy
pip install matplotlib
pip install pandas

About

In the world of artificial intelligence and machine learning, Recurrent Neural Networks, or RNNs for short, are a fascinating class of algorithms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published