본문 바로가기

코딩

나 만의 LLM 만들기

728x90
반응형
--난 ubuntu v24.04, django v5.2, vscode 를 사용하고 있다.
--장고 프로젝트명 : 'project', 앱 명 : llm(AI 학습 앱), api(Rest), account(authentication)
--나 만의 LLM 을 만들고 싶다ㅁ. llm을 학습시키는 앱 이름은 : 'LLM' 이다.
--api 앱은 여기에서 만들어진   AI 엔진 서비스의 rest api 서비스를 하는 앱이. 
--accpunt 앱은 로그인/아웃을 위한 authentication 및 api 서비스에 필요한 authorization 을 수행하는 앱이다.
--이 django 프로젝트 구현을 위한  settings, urls, models, views, forms, serializers, templates HTML, css, javascript 를 만들어줘.
--이 프로젝트를 이용해 llm 학습 방법 메뉴얼 만들어줘
--llm 학습데이터 확보 방법 알려줘
--여기서 만들어진 llm AI engine 은 api 를 통해 내 홈페이지(movie.thesysm.com) 에 있는 real chat messenger 와 연동할 계획이다.

 

1. 프로젝트 구조

project/
├── project/
│   ├── __init__.py
│   ├── settings.py
│   ├── urls.py
│   ├── wsgi.py
│   └── asgi.py
├── llm/
│   ├── __init__.py
│   ├── models.py
│   ├── views.py
│   ├── forms.py
│   ├── urls.py
│   ├── admin.py
│   └── templates/
│       └── llm/
│           ├── base.html
│           ├── dashboard.html
│           ├── model_list.html
│           ├── model_detail.html
│           ├── training.html
│           └── dataset_upload.html
├── api/
│   ├── __init__.py
│   ├── models.py
│   ├── serializers.py
│   ├── views.py
│   ├── urls.py
│   └── permissions.py
├── account/
│   ├── __init__.py
│   ├── models.py
│   ├── views.py
│   ├── forms.py
│   ├── urls.py
│   └── templates/
│       └── account/
│           ├── login.html
│           ├── register.html
│           └── profile.html
├── static/
│   ├── css/
│   │   └── style.css
│   └── js/
│       └── main.js
├── media/
│   └── datasets/
├── requirements.txt
└── manage.py

 

 

728x90
반응형