Skip to content

Commit

Permalink
add CHANGELOG and change import orders
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyamalaviya committed Nov 9, 2024
1 parent b7782d0 commit e6efbd2
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# Changelog


All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added

- Added data: queries used for experiments, as well as, human and autorater judgments.
- Added code for running all experiments in the paper.

8 changes: 4 additions & 4 deletions contexteval/main/generate_context_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
--output_path=${OUTPUT_PATH}
"""

from absl import app
from absl import flags

import ast
import collections
import models
import random
import re
import sys
from absl import app
from absl import flags
import tqdm

sys.path.append('contexteval/common')
import example_utils
import tsv_utils
import tqdm

random.seed(42)

Expand Down
8 changes: 4 additions & 4 deletions contexteval/main/generate_contexts.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
--model_name=gpt-4
"""

import random
import sys
from absl import app
from absl import flags
import tqdm

import models
import random
import sys
sys.path.append('contexteval/common')
import example_utils
import models
import tsv_utils
import tqdm


random.seed(42)
Expand Down
12 changes: 7 additions & 5 deletions contexteval/main/generate_pairwise_evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@
--w_context=${W_CONTEXT}
"""

from absl import app
from absl import flags

import ast
import models
import random
import sys
from absl import app
from absl import flags
import tqdm

sys.path.append('contexteval/common')

import models
import jsonl_utils
import tsv_utils
import tqdm


random.seed(23)

Expand Down
3 changes: 1 addition & 2 deletions contexteval/main/generate_query_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@

from absl import app
from absl import flags

import models
import random
import sys
import tqdm
sys.path.append('contexteval/common')
import example_utils
import jsonl_utils
import tsv_utils
import tqdm


random.seed(423)
Expand Down

0 comments on commit e6efbd2

Please sign in to comment.