PHP Classes

File: backend/runClearData.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Modelo LLM PHP   backend/runClearData.php   Download  
File: backend/runClearData.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Modelo LLM PHP
Large language model to implement a chat bot
Author: By
Last change:
Date: Yesterday
Size: 255 bytes
 

Contents

Class file image Download
<?php
require 'vendor/autoload.php';

use
Chat\X\Utils\ClearData;

$csvPath = 'fakes.csv';
$clearData = new ClearData($csvPath);
$clearData->readCSV();
$dadosProcessados = $clearData->getProcessedData();
$clearData->salvarDados('dados_processados.json');