Skip to content

foyzulkarim/transformers-tasks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ai-course-practice

Project Setup with Conda

Follow these steps to set up a fresh Python project using conda:

  1. Prerequisites

  2. Create a Conda Environment
    Open your Terminal and run the following command to create a new environment named transformers-project with Python 3.9:

    conda create -n transformers-project python=3.10
  3. Activate the Environment
    Activate your new environment with:

    conda activate transformers-project
  4. Install Dependencies
    Install the Transformers library (and any other dependencies) using pip:

    pip install transformers

    OR install the library from a requirements file:

    pip install -r requirements.txt

About

Examples and tutorials demonstrating various NLP tasks using HuggingFace transformers. Includes text classification, sentiment analysis, and more.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors