├── .env.example ├── .github └── workflows │ ├── ci.yml │ └── gh-pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── dseval-browser.png ├── benchmarks ├── examples │ ├── _inputs │ │ ├── iris.csv │ │ ├── movie_metadata.csv │ │ ├── titanic_test.csv │ │ ├── titanic_train.csv │ │ ├── twc-sample.csv │ │ └── winequality-red.csv │ ├── _manifest.yaml │ ├── imdb.py │ ├── iris.py │ ├── titanic.py │ ├── twitter.py │ └── wine.py ├── exercise │ ├── 01-getting-knowing-your-data-chipotle.py │ ├── 01-getting-knowing-your-data-occupation.py │ ├── 02-filtering-sorting-chipotle.py │ ├── 02-filtering-sorting-euro12.py │ ├── 02-filtering-sorting-fictional-army.py │ ├── 03-grouping-alcohol-consumption.py │ ├── 03-grouping-occupation.py │ ├── 03-grouping-regiment.py │ ├── 04-apply-students-alcohol-consumption.py │ ├── 04-apply-us-crime-rates.py │ ├── 05-merge-auto-mpg.py │ ├── 05-merge-fictitous-names.py │ ├── 05-merge-housing-market.py │ ├── 06-stats-us-baby-names.py │ ├── 06-stats-wind-stats.py │ ├── 08-creating-series-and-dataframes-pokemon.py │ ├── 09-time-series-apple-stock.py │ ├── 09-time-series-getting-financial-data.py │ ├── 09-time-series-investor-flow-of-funds-us.py │ ├── 10-deleting-iris.py │ ├── 10-deleting-wine.py │ ├── _inputs │ │ ├── US_Baby_Names_right.csv │ │ ├── US_Crime_Rates_1960_2014.csv │ │ ├── appl-stock.csv │ │ ├── appl_1980_2014.csv │ │ ├── cars1.csv │ │ ├── cars2.csv │ │ ├── chipotle.tsv │ │ ├── drinks.csv │ │ ├── euro12.csv │ │ ├── ibm-stock.csv │ │ ├── iris.data │ │ ├── msft-stock.csv │ │ ├── student-mat.csv │ │ ├── tsla-stock.csv │ │ ├── u.user │ │ ├── weekly.csv │ │ ├── wind.data │ │ └── wine.data │ └── _manifest.yaml ├── kaggle │ ├── 2023-world-population-by-country.py │ ├── _inputs │ │ ├── 2023-world-population-by-country │ │ │ ├── card.json │ │ │ ├── countries-table.csv │ │ │ ├── countries-table.json │ │ │ └── description.md │ │ ├── all-countries-and-their-economies │ │ │ ├── All Countries and Economies.csv │ │ │ ├── Countries-Continents.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── automobile-dataset │ │ │ ├── Automobile.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── bank-customer-churn │ │ │ ├── Customer-Churn-Records.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── billionaires-statistics-dataset │ │ │ ├── Billionaires Statistics Dataset.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── cardiovascular-diseases-risk-prediction-dataset │ │ │ ├── CVD_cleaned.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── coffee-quality-data-cqi │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── df_arabica_clean.csv │ │ ├── countries-of-the-world-2023 │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── world-data-2023.csv │ │ ├── customer-shopping-trends-dataset │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ ├── shopping_trends.csv │ │ │ └── shopping_trends_updated.csv │ │ ├── data-science-salaries-2023 │ │ │ ├── Latest_Data_Science_Salaries.csv │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ ├── ds_salaries.csv │ │ │ ├── exchange_rates.csv │ │ │ ├── v2_Latest_Data_Science_Salaries.csv │ │ │ ├── v3_Latest_Data_Science_Salaries.csv │ │ │ ├── v4_Latest_Data_Science_Salaries.csv │ │ │ └── v5_Latest_Data_Science_Salaries.csv │ │ ├── diabetes-prediction-dataset │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── diabetes_prediction_dataset.csv │ │ ├── disease-symptoms-and-patient-profile-dataset │ │ │ ├── Disease_symptom_and_patient_profile_dataset.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── employee-dataset │ │ │ ├── Employee.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── fatalities-in-the-israeli-palestinian │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── fatalities_isr_pse_conflict_2000_to_2023.csv │ │ ├── global-data-on-sustainable-energy │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── global-data-on-sustainable-energy (1).csv │ │ ├── global-youtube-statistics-2023 │ │ │ ├── Global YouTube Statistics.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── happiness-index-2018-2019 │ │ │ ├── 2018.csv │ │ │ ├── 2019.csv │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── report_2018-2019.csv │ │ ├── heart-attack-prediction-dataset │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── heart_attack_prediction_dataset.csv │ │ ├── housing-price-prediction │ │ │ ├── Housing.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── index.md │ │ ├── life-expectancy-data │ │ │ ├── Life_Expectancy_Data.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── mcdonalds-store-reviews │ │ │ ├── McDonald_s_Reviews.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── monthly-food-price-estimates │ │ │ ├── WLD_RTFP_country_2023-10-02.csv │ │ │ ├── WLD_RTP_details_2023-10-02.csv │ │ │ ├── card.json │ │ │ ├── ddi-documentation-english_microdata-4483 (1).pdf │ │ │ ├── ddi-documentation-english_microdata-4509.pdf │ │ │ └── description.md │ │ ├── netflix-ott-revenue-and-subscribers-csv-file │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── netflix_revenue_updated.csv │ │ ├── netflix-userbase-dataset │ │ │ ├── Netflix Userbase.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── salary-data │ │ │ ├── Salary_Data.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── sleep-health-and-lifestyle-dataset │ │ │ ├── Sleep_health_and_lifestyle_dataset.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── students-exam-scores │ │ │ ├── Expanded_data_with_more_features.csv │ │ │ ├── Original_data_with_more_rows.csv │ │ │ ├── card.json │ │ │ └── description.md │ │ ├── students-performance │ │ │ ├── StudentsPerformance_with_headers.csv │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── highereducationstudentsperformanceevaluation │ │ │ │ └── DATA (1).csv │ │ ├── super-market-sales │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── supermarket_sales.csv │ │ ├── top-spotify-songs-2023 │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── spotify-2023.csv │ │ └── vietnamese-job-posting-vietnamese-version │ │ │ ├── card.json │ │ │ ├── description.md │ │ │ └── vietnamese-job-posting.csv │ ├── _manifest.yaml │ ├── all-countries-and-their-economies.py │ ├── automobile-dataset.py │ ├── bank-customer-churn.py │ ├── billionaires-statistics-dataset.py │ ├── cardiovascular-diseases-risk-prediction-dataset.py │ ├── coffee-quality-data-cqi.py │ ├── countries-of-the-world-2023.py │ ├── customer-shopping-trends-dataset.py │ ├── data-science-salaries-2023.py │ ├── diabetes-prediction-dataset.py │ ├── disease-symptoms-and-patient-profile-dataset.py │ ├── employee-dataset.py │ ├── fatalities-in-the-israeli-palestinian.py │ ├── global-data-on-sustainable-energy.py │ ├── global-youtube-statistics-2023.py │ ├── happiness-index-2018-2019.py │ ├── heart-attack-prediction-dataset.py │ ├── housing-price-prediction.py │ ├── life-expectancy-data.py │ ├── mcdonalds-store-reviews.py │ ├── monthly-food-price-estimates.py │ ├── netflix-ott-revenue-and-subscribers-csv-file.py │ ├── netflix-userbase-dataset.py │ ├── salary-data.py │ ├── sleep-health-and-lifestyle-dataset.py │ ├── students-exam-scores.py │ ├── students-performance.py │ ├── super-market-sales.py │ ├── top-spotify-songs-2023.py │ └── vietnamese-job-posting-vietnamese-version.py ├── leetcode │ ├── _manifest.yaml │ ├── actors-and-directors-who-cooperated-at-least-three-times.py │ ├── article-views-i.py │ ├── big-countries.py │ ├── biggest-single-number.py │ ├── calculate-special-bonus.py │ ├── classes-more-than-5-students.py │ ├── count-salary-categories.py │ ├── customer-placing-the-largest-number-of-orders.py │ ├── customers-who-never-order.py │ ├── daily-leads-and-partners.py │ ├── delete-duplicate-emails.py │ ├── department-highest-salary.py │ ├── duplicate-emails.py │ ├── employees-earning-more-than-their-managers.py │ ├── find-total-time-spent-by-each-employee.py │ ├── find-users-with-valid-e-mails.py │ ├── fix-names-in-a-table.py │ ├── game-play-analysis-i.py │ ├── group-sold-products-by-the-date.py │ ├── immediate-food-delivery-i.py │ ├── invalid-tweets.py │ ├── investments-in-2016.py │ ├── managers-with-at-least-5-direct-reports.py │ ├── market-analysis-i.py │ ├── not-boring-movies.py │ ├── nth-highest-salary.py │ ├── number-of-unique-subjects-taught-by-each-teacher.py │ ├── patients-with-a-condition.py │ ├── primary-department-for-each-employee.py │ ├── product-sales-analysis-i.py │ ├── rank-scores.py │ ├── rearrange-products-table.py │ ├── recyclable-and-low-fat-products.py │ ├── replace-employee-id-with-the-unique-identifier.py │ ├── sales-analysis-iii.py │ ├── sales-person.py │ ├── second-highest-salary.py │ ├── students-and-examinations.py │ ├── the-number-of-rich-customers.py │ └── trips-and-users.py └── so │ ├── _manifest.yaml │ ├── numpyeval-000.py │ ├── numpyeval-001.py │ ├── numpyeval-002.py │ ├── numpyeval-003.py │ ├── numpyeval-004.py │ ├── numpyeval-005.py │ ├── numpyeval-006.py │ ├── numpyeval-007.py │ ├── numpyeval-008.py │ ├── numpyeval-009.py │ ├── numpyeval-010.py │ ├── numpyeval-011.py │ ├── numpyeval-012.py │ ├── numpyeval-013.py │ ├── numpyeval-014.py │ ├── numpyeval-015.py │ ├── numpyeval-016.py │ ├── numpyeval-017.py │ ├── numpyeval-018.py │ ├── numpyeval-019.py │ ├── numpyeval-020.py │ ├── numpyeval-021.py │ ├── numpyeval-022.py │ ├── numpyeval-023.py │ ├── numpyeval-024.py │ ├── numpyeval-025.py │ ├── numpyeval-026.py │ ├── numpyeval-027.py │ ├── numpyeval-028.py │ ├── numpyeval-029.py │ ├── numpyeval-030.py │ ├── numpyeval-031.py │ ├── numpyeval-032.py │ ├── numpyeval-033.py │ ├── numpyeval-034.py │ ├── numpyeval-035.py │ ├── numpyeval-036.py │ ├── numpyeval-037.py │ ├── numpyeval-038.py │ ├── numpyeval-039.py │ ├── numpyeval-040.py │ ├── numpyeval-041.py │ ├── numpyeval-042.py │ ├── numpyeval-043.py │ ├── numpyeval-044.py │ ├── numpyeval-045.py │ ├── numpyeval-046.py │ ├── numpyeval-047.py │ ├── numpyeval-048.py │ ├── numpyeval-049.py │ ├── numpyeval-050.py │ ├── numpyeval-051.py │ ├── numpyeval-052.py │ ├── numpyeval-053.py │ ├── numpyeval-054.py │ ├── numpyeval-055.py │ ├── numpyeval-056.py │ ├── numpyeval-057.py │ ├── numpyeval-058.py │ ├── numpyeval-059.py │ ├── numpyeval-060.py │ ├── numpyeval-061.py │ ├── numpyeval-062.py │ ├── numpyeval-063.py │ ├── numpyeval-064.py │ ├── numpyeval-065.py │ ├── numpyeval-066.py │ ├── numpyeval-067.py │ ├── numpyeval-068.py │ ├── numpyeval-069.py │ ├── numpyeval-070.py │ ├── numpyeval-071.py │ ├── numpyeval-072.py │ ├── numpyeval-073.py │ ├── numpyeval-074.py │ ├── numpyeval-075.py │ ├── numpyeval-076.py │ ├── numpyeval-077.py │ ├── numpyeval-078.py │ ├── numpyeval-079.py │ ├── numpyeval-080.py │ ├── numpyeval-081.py │ ├── numpyeval-082.py │ ├── numpyeval-083.py │ ├── numpyeval-084.py │ ├── numpyeval-085.py │ ├── numpyeval-086.py │ ├── numpyeval-087.py │ ├── numpyeval-088.py │ ├── numpyeval-089.py │ ├── numpyeval-090.py │ ├── numpyeval-091.py │ ├── numpyeval-092.py │ ├── numpyeval-093.py │ ├── numpyeval-094.py │ ├── numpyeval-095.py │ ├── numpyeval-096.py │ ├── numpyeval-097.py │ ├── numpyeval-098.py │ ├── numpyeval-099.py │ ├── numpyeval-100.py │ ├── pandaseval-000.py │ ├── pandaseval-001.py │ ├── pandaseval-002.py │ ├── pandaseval-003.py │ ├── pandaseval-004.py │ ├── pandaseval-005.py │ ├── pandaseval-006.py │ ├── pandaseval-007.py │ ├── pandaseval-008.py │ ├── pandaseval-009.py │ ├── pandaseval-010.py │ ├── pandaseval-011.py │ ├── pandaseval-012.py │ ├── pandaseval-013.py │ ├── pandaseval-014.py │ ├── pandaseval-015.py │ ├── pandaseval-016.py │ ├── pandaseval-017.py │ ├── pandaseval-018.py │ ├── pandaseval-019.py │ ├── pandaseval-020.py │ ├── pandaseval-021.py │ ├── pandaseval-022.py │ ├── pandaseval-023.py │ ├── pandaseval-024.py │ ├── pandaseval-025.py │ ├── pandaseval-026.py │ ├── pandaseval-027.py │ ├── pandaseval-028.py │ ├── pandaseval-029.py │ ├── pandaseval-030.py │ ├── pandaseval-031.py │ ├── pandaseval-032.py │ ├── pandaseval-033.py │ ├── pandaseval-034.py │ ├── pandaseval-035.py │ ├── pandaseval-036.py │ ├── pandaseval-037.py │ ├── pandaseval-038.py │ ├── pandaseval-039.py │ ├── pandaseval-040.py │ ├── pandaseval-041.py │ ├── pandaseval-042.py │ ├── pandaseval-043.py │ ├── pandaseval-044.py │ ├── pandaseval-045.py │ ├── pandaseval-046.py │ ├── pandaseval-047.py │ ├── pandaseval-048.py │ ├── pandaseval-049.py │ ├── pandaseval-050.py │ ├── pandaseval-051.py │ ├── pandaseval-052.py │ ├── pandaseval-053.py │ ├── pandaseval-054.py │ ├── pandaseval-055.py │ ├── pandaseval-056.py │ ├── pandaseval-057.py │ ├── pandaseval-058.py │ ├── pandaseval-059.py │ ├── pandaseval-060.py │ ├── pandaseval-061.py │ ├── pandaseval-062.py │ ├── pandaseval-063.py │ ├── pandaseval-064.py │ ├── pandaseval-065.py │ ├── pandaseval-066.py │ ├── pandaseval-067.py │ ├── pandaseval-068.py │ ├── pandaseval-069.py │ ├── pandaseval-070.py │ ├── pandaseval-071.py │ ├── pandaseval-072.py │ ├── pandaseval-073.py │ ├── pandaseval-074.py │ ├── pandaseval-075.py │ ├── pandaseval-076.py │ ├── pandaseval-077.py │ ├── pandaseval-078.py │ ├── pandaseval-079.py │ ├── pandaseval-080.py │ ├── pandaseval-081.py │ ├── pandaseval-082.py │ ├── pandaseval-083.py │ ├── pandaseval-084.py │ ├── pandaseval-085.py │ ├── pandaseval-086.py │ ├── pandaseval-087.py │ ├── pandaseval-088.py │ ├── pandaseval-089.py │ ├── pandaseval-090.py │ ├── pandaseval-091.py │ ├── pandaseval-092.py │ ├── pandaseval-093.py │ ├── pandaseval-094.py │ ├── pandaseval-095.py │ ├── pandaseval-096.py │ ├── pandaseval-097.py │ ├── pandaseval-098.py │ ├── pandaseval-099.py │ └── pandaseval-100.py ├── dseval ├── __init__.py ├── agent.py ├── browser.py ├── limit.py ├── limit_test.py ├── logging.py ├── loop.py ├── match.py ├── match_test.py ├── problem.py ├── simulation.py ├── simulation_test.py ├── static │ └── style.css ├── templates │ └── local_browser.html ├── utils.py ├── validator.py └── validator_test.py ├── pyproject.toml ├── results ├── Exercise │ └── 240226-coml-gpt-35-turbo-aoai.jsonl ├── Kaggle │ └── 240226-coml-gpt-35-turbo-aoai.jsonl ├── LeetCode │ └── 240226-coml-gpt-35-turbo-aoai.jsonl └── SO │ └── 240226-coml-gpt-35-turbo-aoai.jsonl ├── scripts ├── docker │ ├── Dockerfile │ └── local.Dockerfile ├── prepare_website_data.py ├── summarize.py └── test.py └── website ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── layout.tsx ├── page.tsx └── theme.tsx ├── next.config.mjs ├── package-lock.json ├── package.json └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/README.md -------------------------------------------------------------------------------- /assets/dseval-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/assets/dseval-browser.png -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/iris.csv -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/movie_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/movie_metadata.csv -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/titanic_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/titanic_test.csv -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/titanic_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/titanic_train.csv -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/twc-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/twc-sample.csv -------------------------------------------------------------------------------- /benchmarks/examples/_inputs/winequality-red.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/_inputs/winequality-red.csv -------------------------------------------------------------------------------- /benchmarks/examples/_manifest.yaml: -------------------------------------------------------------------------------- 1 | name: Examples 2 | version: 999 3 | -------------------------------------------------------------------------------- /benchmarks/examples/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/imdb.py -------------------------------------------------------------------------------- /benchmarks/examples/iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/iris.py -------------------------------------------------------------------------------- /benchmarks/examples/titanic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/titanic.py -------------------------------------------------------------------------------- /benchmarks/examples/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/twitter.py -------------------------------------------------------------------------------- /benchmarks/examples/wine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/examples/wine.py -------------------------------------------------------------------------------- /benchmarks/exercise/01-getting-knowing-your-data-chipotle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/01-getting-knowing-your-data-chipotle.py -------------------------------------------------------------------------------- /benchmarks/exercise/01-getting-knowing-your-data-occupation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/01-getting-knowing-your-data-occupation.py -------------------------------------------------------------------------------- /benchmarks/exercise/02-filtering-sorting-chipotle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/02-filtering-sorting-chipotle.py -------------------------------------------------------------------------------- /benchmarks/exercise/02-filtering-sorting-euro12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/02-filtering-sorting-euro12.py -------------------------------------------------------------------------------- /benchmarks/exercise/02-filtering-sorting-fictional-army.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/02-filtering-sorting-fictional-army.py -------------------------------------------------------------------------------- /benchmarks/exercise/03-grouping-alcohol-consumption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/03-grouping-alcohol-consumption.py -------------------------------------------------------------------------------- /benchmarks/exercise/03-grouping-occupation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/03-grouping-occupation.py -------------------------------------------------------------------------------- /benchmarks/exercise/03-grouping-regiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/03-grouping-regiment.py -------------------------------------------------------------------------------- /benchmarks/exercise/04-apply-students-alcohol-consumption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/04-apply-students-alcohol-consumption.py -------------------------------------------------------------------------------- /benchmarks/exercise/04-apply-us-crime-rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/04-apply-us-crime-rates.py -------------------------------------------------------------------------------- /benchmarks/exercise/05-merge-auto-mpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/05-merge-auto-mpg.py -------------------------------------------------------------------------------- /benchmarks/exercise/05-merge-fictitous-names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/05-merge-fictitous-names.py -------------------------------------------------------------------------------- /benchmarks/exercise/05-merge-housing-market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/05-merge-housing-market.py -------------------------------------------------------------------------------- /benchmarks/exercise/06-stats-us-baby-names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/06-stats-us-baby-names.py -------------------------------------------------------------------------------- /benchmarks/exercise/06-stats-wind-stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/06-stats-wind-stats.py -------------------------------------------------------------------------------- /benchmarks/exercise/08-creating-series-and-dataframes-pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/08-creating-series-and-dataframes-pokemon.py -------------------------------------------------------------------------------- /benchmarks/exercise/09-time-series-apple-stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/09-time-series-apple-stock.py -------------------------------------------------------------------------------- /benchmarks/exercise/09-time-series-getting-financial-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/09-time-series-getting-financial-data.py -------------------------------------------------------------------------------- /benchmarks/exercise/09-time-series-investor-flow-of-funds-us.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/09-time-series-investor-flow-of-funds-us.py -------------------------------------------------------------------------------- /benchmarks/exercise/10-deleting-iris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/10-deleting-iris.py -------------------------------------------------------------------------------- /benchmarks/exercise/10-deleting-wine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/10-deleting-wine.py -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/US_Baby_Names_right.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/US_Baby_Names_right.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/US_Crime_Rates_1960_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/US_Crime_Rates_1960_2014.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/appl-stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/appl-stock.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/appl_1980_2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/appl_1980_2014.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/cars1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/cars1.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/cars2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/cars2.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/chipotle.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/chipotle.tsv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/drinks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/drinks.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/euro12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/euro12.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/ibm-stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/ibm-stock.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/iris.data -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/msft-stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/msft-stock.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/student-mat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/student-mat.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/tsla-stock.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/tsla-stock.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/u.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/u.user -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/weekly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/weekly.csv -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/wind.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/wind.data -------------------------------------------------------------------------------- /benchmarks/exercise/_inputs/wine.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/exercise/_inputs/wine.data -------------------------------------------------------------------------------- /benchmarks/exercise/_manifest.yaml: -------------------------------------------------------------------------------- 1 | name: Exercise 2 | version: 1 3 | -------------------------------------------------------------------------------- /benchmarks/kaggle/2023-world-population-by-country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/2023-world-population-by-country.py -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/2023-world-population-by-country/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/2023-world-population-by-country/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/2023-world-population-by-country/countries-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/2023-world-population-by-country/countries-table.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/2023-world-population-by-country/countries-table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/2023-world-population-by-country/countries-table.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/2023-world-population-by-country/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/2023-world-population-by-country/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/all-countries-and-their-economies/All Countries and Economies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/all-countries-and-their-economies/All Countries and Economies.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/all-countries-and-their-economies/Countries-Continents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/all-countries-and-their-economies/Countries-Continents.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/all-countries-and-their-economies/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/all-countries-and-their-economies/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/all-countries-and-their-economies/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/all-countries-and-their-economies/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/automobile-dataset/Automobile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/automobile-dataset/Automobile.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/automobile-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/automobile-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/automobile-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/automobile-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/bank-customer-churn/Customer-Churn-Records.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/bank-customer-churn/Customer-Churn-Records.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/bank-customer-churn/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/bank-customer-churn/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/bank-customer-churn/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/bank-customer-churn/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/billionaires-statistics-dataset/Billionaires Statistics Dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/billionaires-statistics-dataset/Billionaires Statistics Dataset.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/billionaires-statistics-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/billionaires-statistics-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/billionaires-statistics-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/billionaires-statistics-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/CVD_cleaned.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/CVD_cleaned.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/cardiovascular-diseases-risk-prediction-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/coffee-quality-data-cqi/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/coffee-quality-data-cqi/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/coffee-quality-data-cqi/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/coffee-quality-data-cqi/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/coffee-quality-data-cqi/df_arabica_clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/coffee-quality-data-cqi/df_arabica_clean.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/countries-of-the-world-2023/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/countries-of-the-world-2023/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/countries-of-the-world-2023/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/countries-of-the-world-2023/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/countries-of-the-world-2023/world-data-2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/countries-of-the-world-2023/world-data-2023.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/shopping_trends.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/shopping_trends.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/shopping_trends_updated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/customer-shopping-trends-dataset/shopping_trends_updated.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/Latest_Data_Science_Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/Latest_Data_Science_Salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/ds_salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/ds_salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/exchange_rates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/exchange_rates.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/v2_Latest_Data_Science_Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/v2_Latest_Data_Science_Salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/v3_Latest_Data_Science_Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/v3_Latest_Data_Science_Salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/v4_Latest_Data_Science_Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/v4_Latest_Data_Science_Salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/data-science-salaries-2023/v5_Latest_Data_Science_Salaries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/data-science-salaries-2023/v5_Latest_Data_Science_Salaries.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/diabetes-prediction-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/diabetes-prediction-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/diabetes-prediction-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/diabetes-prediction-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/diabetes-prediction-dataset/diabetes_prediction_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/diabetes-prediction-dataset/diabetes_prediction_dataset.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/Disease_symptom_and_patient_profile_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/Disease_symptom_and_patient_profile_dataset.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/disease-symptoms-and-patient-profile-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/employee-dataset/Employee.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/employee-dataset/Employee.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/employee-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/employee-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/employee-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/employee-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/fatalities_isr_pse_conflict_2000_to_2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/fatalities-in-the-israeli-palestinian/fatalities_isr_pse_conflict_2000_to_2023.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/global-data-on-sustainable-energy (1).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-data-on-sustainable-energy/global-data-on-sustainable-energy (1).csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-youtube-statistics-2023/Global YouTube Statistics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-youtube-statistics-2023/Global YouTube Statistics.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-youtube-statistics-2023/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-youtube-statistics-2023/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/global-youtube-statistics-2023/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/global-youtube-statistics-2023/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/happiness-index-2018-2019/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/happiness-index-2018-2019/2018.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/happiness-index-2018-2019/2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/happiness-index-2018-2019/2019.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/happiness-index-2018-2019/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/happiness-index-2018-2019/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/happiness-index-2018-2019/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/happiness-index-2018-2019/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/happiness-index-2018-2019/report_2018-2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/happiness-index-2018-2019/report_2018-2019.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/heart_attack_prediction_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/heart-attack-prediction-dataset/heart_attack_prediction_dataset.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/housing-price-prediction/Housing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/housing-price-prediction/Housing.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/housing-price-prediction/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/housing-price-prediction/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/housing-price-prediction/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/housing-price-prediction/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/index.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/life-expectancy-data/Life_Expectancy_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/life-expectancy-data/Life_Expectancy_Data.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/life-expectancy-data/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/life-expectancy-data/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/life-expectancy-data/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/life-expectancy-data/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/mcdonalds-store-reviews/McDonald_s_Reviews.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/mcdonalds-store-reviews/McDonald_s_Reviews.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/mcdonalds-store-reviews/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/mcdonalds-store-reviews/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/mcdonalds-store-reviews/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/mcdonalds-store-reviews/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/WLD_RTFP_country_2023-10-02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/WLD_RTFP_country_2023-10-02.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/WLD_RTP_details_2023-10-02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/WLD_RTP_details_2023-10-02.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/ddi-documentation-english_microdata-4483 (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/ddi-documentation-english_microdata-4483 (1).pdf -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/ddi-documentation-english_microdata-4509.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/ddi-documentation-english_microdata-4509.pdf -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/monthly-food-price-estimates/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/monthly-food-price-estimates/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/netflix_revenue_updated.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-ott-revenue-and-subscribers-csv-file/netflix_revenue_updated.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-userbase-dataset/Netflix Userbase.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-userbase-dataset/Netflix Userbase.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-userbase-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-userbase-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/netflix-userbase-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/netflix-userbase-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/salary-data/Salary_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/salary-data/Salary_Data.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/salary-data/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/salary-data/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/salary-data/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/salary-data/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/Sleep_health_and_lifestyle_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/Sleep_health_and_lifestyle_dataset.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/sleep-health-and-lifestyle-dataset/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-exam-scores/Expanded_data_with_more_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-exam-scores/Expanded_data_with_more_features.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-exam-scores/Original_data_with_more_rows.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-exam-scores/Original_data_with_more_rows.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-exam-scores/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-exam-scores/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-exam-scores/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-exam-scores/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-performance/StudentsPerformance_with_headers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-performance/StudentsPerformance_with_headers.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-performance/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-performance/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-performance/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-performance/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/students-performance/highereducationstudentsperformanceevaluation/DATA (1).csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/students-performance/highereducationstudentsperformanceevaluation/DATA (1).csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/super-market-sales/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/super-market-sales/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/super-market-sales/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/super-market-sales/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/super-market-sales/supermarket_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/super-market-sales/supermarket_sales.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/top-spotify-songs-2023/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/top-spotify-songs-2023/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/top-spotify-songs-2023/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/top-spotify-songs-2023/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/top-spotify-songs-2023/spotify-2023.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/top-spotify-songs-2023/spotify-2023.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/card.json -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/description.md -------------------------------------------------------------------------------- /benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/vietnamese-job-posting.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/_inputs/vietnamese-job-posting-vietnamese-version/vietnamese-job-posting.csv -------------------------------------------------------------------------------- /benchmarks/kaggle/_manifest.yaml: -------------------------------------------------------------------------------- 1 | name: Kaggle 2 | version: 1 3 | -------------------------------------------------------------------------------- /benchmarks/kaggle/all-countries-and-their-economies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/all-countries-and-their-economies.py -------------------------------------------------------------------------------- /benchmarks/kaggle/automobile-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/automobile-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/bank-customer-churn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/bank-customer-churn.py -------------------------------------------------------------------------------- /benchmarks/kaggle/billionaires-statistics-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/billionaires-statistics-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/cardiovascular-diseases-risk-prediction-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/cardiovascular-diseases-risk-prediction-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/coffee-quality-data-cqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/coffee-quality-data-cqi.py -------------------------------------------------------------------------------- /benchmarks/kaggle/countries-of-the-world-2023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/countries-of-the-world-2023.py -------------------------------------------------------------------------------- /benchmarks/kaggle/customer-shopping-trends-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/customer-shopping-trends-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/data-science-salaries-2023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/data-science-salaries-2023.py -------------------------------------------------------------------------------- /benchmarks/kaggle/diabetes-prediction-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/diabetes-prediction-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/disease-symptoms-and-patient-profile-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/disease-symptoms-and-patient-profile-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/employee-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/employee-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/fatalities-in-the-israeli-palestinian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/fatalities-in-the-israeli-palestinian.py -------------------------------------------------------------------------------- /benchmarks/kaggle/global-data-on-sustainable-energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/global-data-on-sustainable-energy.py -------------------------------------------------------------------------------- /benchmarks/kaggle/global-youtube-statistics-2023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/global-youtube-statistics-2023.py -------------------------------------------------------------------------------- /benchmarks/kaggle/happiness-index-2018-2019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/happiness-index-2018-2019.py -------------------------------------------------------------------------------- /benchmarks/kaggle/heart-attack-prediction-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/heart-attack-prediction-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/housing-price-prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/housing-price-prediction.py -------------------------------------------------------------------------------- /benchmarks/kaggle/life-expectancy-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/life-expectancy-data.py -------------------------------------------------------------------------------- /benchmarks/kaggle/mcdonalds-store-reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/mcdonalds-store-reviews.py -------------------------------------------------------------------------------- /benchmarks/kaggle/monthly-food-price-estimates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/monthly-food-price-estimates.py -------------------------------------------------------------------------------- /benchmarks/kaggle/netflix-ott-revenue-and-subscribers-csv-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/netflix-ott-revenue-and-subscribers-csv-file.py -------------------------------------------------------------------------------- /benchmarks/kaggle/netflix-userbase-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/netflix-userbase-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/salary-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/salary-data.py -------------------------------------------------------------------------------- /benchmarks/kaggle/sleep-health-and-lifestyle-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/sleep-health-and-lifestyle-dataset.py -------------------------------------------------------------------------------- /benchmarks/kaggle/students-exam-scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/students-exam-scores.py -------------------------------------------------------------------------------- /benchmarks/kaggle/students-performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/students-performance.py -------------------------------------------------------------------------------- /benchmarks/kaggle/super-market-sales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/super-market-sales.py -------------------------------------------------------------------------------- /benchmarks/kaggle/top-spotify-songs-2023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/top-spotify-songs-2023.py -------------------------------------------------------------------------------- /benchmarks/kaggle/vietnamese-job-posting-vietnamese-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/kaggle/vietnamese-job-posting-vietnamese-version.py -------------------------------------------------------------------------------- /benchmarks/leetcode/_manifest.yaml: -------------------------------------------------------------------------------- 1 | name: LeetCode 2 | version: 1 3 | -------------------------------------------------------------------------------- /benchmarks/leetcode/actors-and-directors-who-cooperated-at-least-three-times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/actors-and-directors-who-cooperated-at-least-three-times.py -------------------------------------------------------------------------------- /benchmarks/leetcode/article-views-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/article-views-i.py -------------------------------------------------------------------------------- /benchmarks/leetcode/big-countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/big-countries.py -------------------------------------------------------------------------------- /benchmarks/leetcode/biggest-single-number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/biggest-single-number.py -------------------------------------------------------------------------------- /benchmarks/leetcode/calculate-special-bonus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/calculate-special-bonus.py -------------------------------------------------------------------------------- /benchmarks/leetcode/classes-more-than-5-students.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/classes-more-than-5-students.py -------------------------------------------------------------------------------- /benchmarks/leetcode/count-salary-categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/count-salary-categories.py -------------------------------------------------------------------------------- /benchmarks/leetcode/customer-placing-the-largest-number-of-orders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/customer-placing-the-largest-number-of-orders.py -------------------------------------------------------------------------------- /benchmarks/leetcode/customers-who-never-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/customers-who-never-order.py -------------------------------------------------------------------------------- /benchmarks/leetcode/daily-leads-and-partners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/daily-leads-and-partners.py -------------------------------------------------------------------------------- /benchmarks/leetcode/delete-duplicate-emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/delete-duplicate-emails.py -------------------------------------------------------------------------------- /benchmarks/leetcode/department-highest-salary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/department-highest-salary.py -------------------------------------------------------------------------------- /benchmarks/leetcode/duplicate-emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/duplicate-emails.py -------------------------------------------------------------------------------- /benchmarks/leetcode/employees-earning-more-than-their-managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/employees-earning-more-than-their-managers.py -------------------------------------------------------------------------------- /benchmarks/leetcode/find-total-time-spent-by-each-employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/find-total-time-spent-by-each-employee.py -------------------------------------------------------------------------------- /benchmarks/leetcode/find-users-with-valid-e-mails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/find-users-with-valid-e-mails.py -------------------------------------------------------------------------------- /benchmarks/leetcode/fix-names-in-a-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/fix-names-in-a-table.py -------------------------------------------------------------------------------- /benchmarks/leetcode/game-play-analysis-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/game-play-analysis-i.py -------------------------------------------------------------------------------- /benchmarks/leetcode/group-sold-products-by-the-date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/group-sold-products-by-the-date.py -------------------------------------------------------------------------------- /benchmarks/leetcode/immediate-food-delivery-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/immediate-food-delivery-i.py -------------------------------------------------------------------------------- /benchmarks/leetcode/invalid-tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/invalid-tweets.py -------------------------------------------------------------------------------- /benchmarks/leetcode/investments-in-2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/investments-in-2016.py -------------------------------------------------------------------------------- /benchmarks/leetcode/managers-with-at-least-5-direct-reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/managers-with-at-least-5-direct-reports.py -------------------------------------------------------------------------------- /benchmarks/leetcode/market-analysis-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/market-analysis-i.py -------------------------------------------------------------------------------- /benchmarks/leetcode/not-boring-movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/not-boring-movies.py -------------------------------------------------------------------------------- /benchmarks/leetcode/nth-highest-salary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/nth-highest-salary.py -------------------------------------------------------------------------------- /benchmarks/leetcode/number-of-unique-subjects-taught-by-each-teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/number-of-unique-subjects-taught-by-each-teacher.py -------------------------------------------------------------------------------- /benchmarks/leetcode/patients-with-a-condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/patients-with-a-condition.py -------------------------------------------------------------------------------- /benchmarks/leetcode/primary-department-for-each-employee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/primary-department-for-each-employee.py -------------------------------------------------------------------------------- /benchmarks/leetcode/product-sales-analysis-i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/product-sales-analysis-i.py -------------------------------------------------------------------------------- /benchmarks/leetcode/rank-scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/rank-scores.py -------------------------------------------------------------------------------- /benchmarks/leetcode/rearrange-products-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/rearrange-products-table.py -------------------------------------------------------------------------------- /benchmarks/leetcode/recyclable-and-low-fat-products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/recyclable-and-low-fat-products.py -------------------------------------------------------------------------------- /benchmarks/leetcode/replace-employee-id-with-the-unique-identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/replace-employee-id-with-the-unique-identifier.py -------------------------------------------------------------------------------- /benchmarks/leetcode/sales-analysis-iii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/sales-analysis-iii.py -------------------------------------------------------------------------------- /benchmarks/leetcode/sales-person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/sales-person.py -------------------------------------------------------------------------------- /benchmarks/leetcode/second-highest-salary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/second-highest-salary.py -------------------------------------------------------------------------------- /benchmarks/leetcode/students-and-examinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/students-and-examinations.py -------------------------------------------------------------------------------- /benchmarks/leetcode/the-number-of-rich-customers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/the-number-of-rich-customers.py -------------------------------------------------------------------------------- /benchmarks/leetcode/trips-and-users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/leetcode/trips-and-users.py -------------------------------------------------------------------------------- /benchmarks/so/_manifest.yaml: -------------------------------------------------------------------------------- 1 | name: SO 2 | version: 1 3 | -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-000.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-001.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-002.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-003.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-004.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-005.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-006.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-007.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-008.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-009.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-010.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-011.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-012.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-013.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-014.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-015.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-016.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-017.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-018.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-019.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-020.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-021.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-022.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-023.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-024.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-025.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-026.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-027.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-028.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-029.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-030.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-031.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-031.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-032.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-033.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-033.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-034.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-035.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-035.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-036.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-037.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-038.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-039.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-040.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-041.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-042.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-043.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-044.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-045.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-046.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-046.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-047.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-048.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-049.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-050.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-051.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-052.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-053.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-054.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-055.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-056.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-057.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-058.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-059.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-060.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-061.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-061.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-062.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-062.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-063.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-063.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-064.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-064.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-065.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-065.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-066.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-066.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-067.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-067.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-068.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-068.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-069.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-069.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-070.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-070.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-071.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-071.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-072.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-072.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-073.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-073.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-074.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-074.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-075.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-075.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-076.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-076.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-077.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-077.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-078.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-078.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-079.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-079.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-080.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-080.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-081.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-081.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-082.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-082.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-083.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-083.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-084.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-084.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-085.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-085.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-086.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-086.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-087.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-087.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-088.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-088.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-089.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-089.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-090.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-090.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-091.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-091.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-092.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-092.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-093.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-093.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-094.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-094.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-095.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-095.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-096.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-096.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-097.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-097.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-098.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-098.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-099.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-099.py -------------------------------------------------------------------------------- /benchmarks/so/numpyeval-100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/numpyeval-100.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-000.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-001.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-001.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-002.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-002.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-003.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-003.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-004.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-005.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-006.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-007.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-008.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-008.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-009.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-009.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-010.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-010.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-011.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-012.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-012.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-013.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-014.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-015.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-015.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-016.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-017.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-018.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-019.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-019.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-020.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-021.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-021.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-022.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-023.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-024.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-025.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-026.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-027.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-028.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-029.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-030.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-031.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-031.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-032.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-032.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-033.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-033.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-034.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-035.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-035.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-036.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-036.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-037.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-038.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-039.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-039.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-040.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-041.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-042.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-043.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-044.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-045.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-045.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-046.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-046.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-047.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-048.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-049.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-049.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-050.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-050.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-051.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-052.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-052.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-053.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-053.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-054.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-054.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-055.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-056.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-057.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-057.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-058.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-058.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-059.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-059.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-060.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-061.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-061.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-062.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-062.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-063.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-063.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-064.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-064.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-065.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-065.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-066.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-066.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-067.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-067.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-068.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-068.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-069.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-069.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-070.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-070.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-071.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-071.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-072.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-072.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-073.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-073.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-074.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-074.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-075.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-075.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-076.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-076.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-077.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-077.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-078.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-078.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-079.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-079.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-080.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-080.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-081.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-081.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-082.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-082.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-083.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-083.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-084.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-084.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-085.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-085.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-086.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-086.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-087.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-087.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-088.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-088.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-089.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-089.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-090.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-090.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-091.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-091.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-092.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-092.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-093.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-093.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-094.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-094.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-095.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-095.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-096.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-096.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-097.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-097.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-098.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-098.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-099.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-099.py -------------------------------------------------------------------------------- /benchmarks/so/pandaseval-100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/benchmarks/so/pandaseval-100.py -------------------------------------------------------------------------------- /dseval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/__init__.py -------------------------------------------------------------------------------- /dseval/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/agent.py -------------------------------------------------------------------------------- /dseval/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/browser.py -------------------------------------------------------------------------------- /dseval/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/limit.py -------------------------------------------------------------------------------- /dseval/limit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/limit_test.py -------------------------------------------------------------------------------- /dseval/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/logging.py -------------------------------------------------------------------------------- /dseval/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/loop.py -------------------------------------------------------------------------------- /dseval/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/match.py -------------------------------------------------------------------------------- /dseval/match_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/match_test.py -------------------------------------------------------------------------------- /dseval/problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/problem.py -------------------------------------------------------------------------------- /dseval/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/simulation.py -------------------------------------------------------------------------------- /dseval/simulation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/simulation_test.py -------------------------------------------------------------------------------- /dseval/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/static/style.css -------------------------------------------------------------------------------- /dseval/templates/local_browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/templates/local_browser.html -------------------------------------------------------------------------------- /dseval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/utils.py -------------------------------------------------------------------------------- /dseval/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/validator.py -------------------------------------------------------------------------------- /dseval/validator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/dseval/validator_test.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/pyproject.toml -------------------------------------------------------------------------------- /results/Exercise/240226-coml-gpt-35-turbo-aoai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/results/Exercise/240226-coml-gpt-35-turbo-aoai.jsonl -------------------------------------------------------------------------------- /results/Kaggle/240226-coml-gpt-35-turbo-aoai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/results/Kaggle/240226-coml-gpt-35-turbo-aoai.jsonl -------------------------------------------------------------------------------- /results/LeetCode/240226-coml-gpt-35-turbo-aoai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/results/LeetCode/240226-coml-gpt-35-turbo-aoai.jsonl -------------------------------------------------------------------------------- /results/SO/240226-coml-gpt-35-turbo-aoai.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/results/SO/240226-coml-gpt-35-turbo-aoai.jsonl -------------------------------------------------------------------------------- /scripts/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/scripts/docker/Dockerfile -------------------------------------------------------------------------------- /scripts/docker/local.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/scripts/docker/local.Dockerfile -------------------------------------------------------------------------------- /scripts/prepare_website_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/scripts/prepare_website_data.py -------------------------------------------------------------------------------- /scripts/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/scripts/summarize.py -------------------------------------------------------------------------------- /scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/scripts/test.py -------------------------------------------------------------------------------- /website/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/README.md -------------------------------------------------------------------------------- /website/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/app/layout.tsx -------------------------------------------------------------------------------- /website/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/app/page.tsx -------------------------------------------------------------------------------- /website/app/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/app/theme.tsx -------------------------------------------------------------------------------- /website/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/next.config.mjs -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/package.json -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaCopilot/dseval/HEAD/website/tsconfig.json --------------------------------------------------------------------------------