Skip to content

raeeceip/chiso

Repository files navigation

Chiso

This project aims to create a personalized AI model using your own data. It includes Go code for data collection, preprocessing, and setting up a basic neural network.

Project Description

The goal of this project is to build an AI model that can mimic your writing style, opinions, and knowledge based on your personal data. This is achieved through the following steps:

  1. Data Collection: Gathering text data from various sources like journals, blog posts, and social media.
  2. Data Preprocessing: Cleaning and structuring the collected data.
  3. Model Setup: Creating a basic neural network structure for language modeling.
  4. Training: Fine-tuning the model on your personal data.
  5. Evaluation and Improvement: Testing the model's performance and iteratively improving it.

Files

personal-ai-model/
├── README.md
├── main.go
├── data_collection.go
├── data_preprocessing.go
├── neural_network.go
├── content_manager.go
└── personal_data/
    ├── journals/
    │   ├── 2023-08-10_daily_thoughts.txt
    │   └── 2023-08-11_reflections.txt
    ├── blog_posts/
    │   ├── 2023-07-15_ai_ethics.txt
    │   └── 2023-08-01_personal_growth.txt
    ├── social_media/
    │   ├── 2023-08-05_twitter_thread.txt
    │   └── 2023-08-09_linkedin_post.txt
    └── references/
        ├── 2023-07-20_favorite_book_quotes.txt
        └── 2023-08-02_inspiring_articles.txt

Usage

  1. Place your personal text data in the personal_data/ directory.
  2. Run the main application: