alfraser commited on
Commit
b2c83e6
·
1 Parent(s): 227dc25

Renamed the architectures for clarity in the app

Browse files
Files changed (1) hide show
  1. config/architectures.json +3 -3
config/architectures.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "architectures": [
3
  {
4
- "name": "Baseline LLM",
5
  "description": "Just a direct call through to the LLM without any additional components.",
6
  "steps": [
7
  {"class": "InputRequestScreener"},
@@ -11,7 +11,7 @@
11
  "img": "architecture_baseline.jpg"
12
  },
13
  {
14
- "name": "Sample Fine Tuned LLM",
15
  "description": "Fine tuning test on a TVs dataset.",
16
  "steps": [
17
  {"class": "InputRequestScreener"},
@@ -21,7 +21,7 @@
21
  "img": "architecture_baseline.jpg"
22
  },
23
  {
24
- "name": "RAG Architecture",
25
  "description": "An architecture which uses a raw baseline LLM for its core, but augments requests from the user with information which has been retrieved from a knowledge store where the organisational knowledge has previously been stored for this purpose.",
26
  "steps": [
27
  {"class": "InputRequestScreener"},
 
1
  {
2
  "architectures": [
3
  {
4
+ "name": "1. Baseline LLM",
5
  "description": "Just a direct call through to the LLM without any additional components.",
6
  "steps": [
7
  {"class": "InputRequestScreener"},
 
11
  "img": "architecture_baseline.jpg"
12
  },
13
  {
14
+ "name": "2. Fine-tuning Architecture",
15
  "description": "Fine tuning test on a TVs dataset.",
16
  "steps": [
17
  {"class": "InputRequestScreener"},
 
21
  "img": "architecture_baseline.jpg"
22
  },
23
  {
24
+ "name": "3. Retrieval Augmented Generation (RAG) Architecture",
25
  "description": "An architecture which uses a raw baseline LLM for its core, but augments requests from the user with information which has been retrieved from a knowledge store where the organisational knowledge has previously been stored for this purpose.",
26
  "steps": [
27
  {"class": "InputRequestScreener"},