Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nuveraxgroup/fine-tune-studio
Fine-tune Studio
https://github.com/nuveraxgroup/fine-tune-studio
Last synced: 11 days ago
JSON representation
Fine-tune Studio
- Host: GitHub
- URL: https://github.com/nuveraxgroup/fine-tune-studio
- Owner: nuveraxgroup
- License: mit
- Created: 2023-10-24T03:01:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T04:15:13.000Z (about 1 year ago)
- Last Synced: 2024-11-06T13:26:41.056Z (2 months ago)
- Language: TypeScript
- Size: 844 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Fine-tune Studio
This is an open source UI Interface for fine-tuning.
> Implementation still in process and initially will work only for OpenAI fine-tuning.
### How to run backend
1. Install packages
```shell
cd ./backend/typescript
npm install
```
2. Create environment variables, create file `.env.local`
```dotenv
PORT=3000
BASE_PREFIX=/api
OPENAI_API_KEY={YOUR_OPENAI_TOKEN}
```
3. Run Backend
```shell
npm run start
```
### How to run frontend
1. Install packages
```shell
cd ./frontend/studio
npm install
```
2. Create environment variables, create file `.env.local`
```dotenv
VITE_BACKEND_URL=http://localhost:3000/api
VITE_ENV=LOCAL
```
3. Run Frontend
```shell
npm run start
```