Skip to content

corrected file paths and tables 5 and 6, as discussed with Dr. Bennett #5

Merged
merged 1 commit into from Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions StudentNotebooks/Assignment03/dar-f24-assignment3-template.Rmd
Expand Up @@ -197,7 +197,7 @@ These include the results of various LLM on each trial.

NOTES:

* All of these datasets can be found in `/academics/MATP-4910-F24/DAR-CTEval-F24/Data`
* All of these datasets can be found in `~/DAR-CTEval-F24/Data`

## Load the CTBench Eval _Data_

Expand Down Expand Up @@ -246,12 +246,12 @@ First we load the data and see that `CT_Pub.df` contains 103 trials with 10 dime

```{r}
# Load the CT_Pub data
CT_Pub.df<- readRDS("/academics/MATP-4910-F24/DAR-CTEval-F24/Data/CT_Pub_data.Rds")
CT_Pub.df<- readRDS("~/DAR-CTEval-F24/Data/CT_Pub_data.Rds")
dim(CT_Pub.df)
# Load the CT_Repo data
CT_Repo.df<- readRDS("/academics/MATP-4910-F24/DAR-CTEval-F24/Data/CT_Repo_data.Rds")
CT_Repo.df<- readRDS("~/DAR-CTEval-F24/Data/CT_Repo_data.Rds")
dim(CT_Repo.df)
Expand Down Expand Up @@ -312,7 +312,7 @@ If the table has an entry such as

```{r}
# Load the trials.responses
CT_Pub.responses.df<- readRDS("/academics/MATP-4910-F24/DAR-CTEval-F24/Data/trials.responses.Rds")
CT_Pub.responses.df<- readRDS("~/DAR-CTEval-F24/Data/trials.responses.Rds")
# convert model and type to factors
CT_Pub.responses.df$trial_group <- as.factor(CT_Pub.responses.df$trial_group)
Expand All @@ -322,7 +322,7 @@ CT_Pub.responses.df$model <- as.factor(CT_Pub.responses.df$model)
dim(CT_Pub.responses.df)
# Load the trials.matches
CT_Pub.matches.df<- readRDS("/academics/MATP-4910-F24/DAR-CTEval-F24/Data/trials.matches.Rds")
CT_Pub.matches.df<- readRDS("~/DAR-CTEval-F24/Data/trials.matches.Rds")
# convert model and type to factors
CT_Pub.matches.df$model <- as.factor(CT_Pub.matches.df$model)
Expand Down