Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This pull request fixes issues with submission format unmatching in 0.3.0 and 0.4.2 #26

Open
wants to merge 3 commits into
base: update/new_harness_codebase
Choose a base branch
from

Conversation

thehir0
Copy link
Contributor

@thehir0 thehir0 commented Jul 10, 2024

RuTie in 0.3.0:

{
    "data": {
        "test": [
            [
                {
                    "outputs": "1",
                    "meta": {
                        "dialog_id": 0,
                        "question_id": 0
                    }
                },

RuTie in 0.4.2

{
    "data": {
        "test": [
            [
                {
                    "outputs": {
                        "outputs": "1",
                        "meta": {
                            "id": 0
                        }
                    },
                    "meta": {
                        "dialog_id": 0,
                        "question_id": 0
                    }
                },

RuHumanEval in 0.3.0

{
    "data": {
        "test": [
            {
                "outputs": [
                    [
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null
                    ],
                    [
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null,
                        null
                    ],

RuHumanEval in 0.4.2(Has double squared brackets in outputs)

{
    "data": {
        "test": [
            {
                "outputs": [
                    [
                        [
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None"
                        ],
                        [
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None",
                            "None"
                        ],
                        [

@thehir0
Copy link
Contributor Author

thehir0 commented Jul 10, 2024

Without this fix: i get 0.0 ruTie and 0/1/1 ruHumanEval on submission page.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant