Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 869 Bytes

README.md

File metadata and controls

59 lines (38 loc) · 869 Bytes

Byte Pair Encoding Visualization

This project is a simple visualization of Byte Pair Encoding (BPE) using React and Vite.

Visit https://bytepairencoding.netlify.app/ to try it out.

Technologies Used

  • React
  • Vite

Getting Started

Prerequisites

  • Node.js
  • npm

Installation

  1. Clone the repository:

    git clone https://github.com/your-username/your-project-name.git
    
  2. Navigate to the project directory:

    cd your-project-name
    
  3. Install dependencies:

    npm install
    

Development

To run the development server:

npm run dev

Building

To build the project for production:

npm run build

You can test the built files locally by serving the dist directory with a static file server. For example, you can use the serve package:

npm install -g serve
serve dist