"use client"; import React from "react"; import { useAccount } from 'wagmi'; export default function FineTuningPage() { const { isConnected } = useAccount(); if (!isConnected) { return (

Wallet Not Connected

Please connect your wallet to access fine-tuning features.

); } return (

Fine-tuning

Customize AI models with your own data

Fine-tuning on 0G Compute Network

{/* Current Status Card */}

Currently Available via CLI

Fine-tuning is currently supported through the 0G CLI tools. You can start fine-tuning models today using the command-line interface.

View CLI Documentation

Coming Soon: Web Interface

Upload Training Data

Upload your custom datasets to train AI models

Configure Training

Set hyperparameters and training configurations

Monitor Progress

Track training progress and model performance

Deploy Models

Deploy your fine-tuned models for inference

); }