├── CodeFusion ├── Benchmarks │ ├── BashBenchmarks.json │ ├── CFRuleBenchmarks.json │ └── PythonBenchmarks.json ├── Pretraining Data │ ├── BashSnippets.txt │ ├── ConditionalFormattingSnippets.txt │ └── PythonSnippets.txt └── README.md ├── ConditionalFormatting ├── Benchmarks │ ├── CF Suggestions │ │ └── SampleBenchmark.json │ ├── CORNET │ │ └── README.md │ └── NLToCF │ │ ├── Benchmarks.json │ │ └── README.md ├── README.md ├── scripts │ ├── cf-rule-extraction │ │ ├── Dockerfile.linux │ │ ├── Dockerfile.windows │ │ ├── Dtos.cs │ │ ├── Program.cs │ │ ├── runtimeconfig.template.json │ │ └── xlsx-to-json.csproj │ └── url_downloader.py └── urls │ └── file_url_mapping.json ├── Emfore └── README.md ├── Extraction.Text ├── Address.000001 │ ├── Address.City.spec.json │ ├── Address.State.spec.json │ ├── Address.Street.spec.json │ ├── PersonInfo.Address.spec.json │ ├── PersonInfo.City.spec.json │ ├── PersonInfo.Name.spec.json │ ├── PersonInfo.Phone.spec.json │ ├── PersonInfo.State.spec.json │ ├── PersonInfo.Street.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Address.spec.json │ ├── root.City.spec.json │ ├── root.Name.spec.json │ ├── root.PersonInfo.spec.json │ ├── root.Phone.spec.json │ ├── root.State.spec.json │ └── root.Street.spec.json ├── Company.000001 │ ├── BranchStruct.Branch.spec.json │ ├── StateStruct.Branch.spec.json │ ├── StateStruct.BranchStruct.spec.json │ ├── StateStruct.State.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Branch.spec.json │ ├── root.State.spec.json │ └── root.StateStruct.spec.json ├── Company.000002 │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── region0.field1.spec.json │ ├── region0.field2.spec.json │ ├── region0.field3.spec.json │ ├── region0.field4.spec.json │ ├── root.field1.spec.json │ ├── root.field2.spec.json │ ├── root.field3.spec.json │ ├── root.field4.spec.json │ └── root.region0.spec.json ├── CountryOrRegion.000001 │ ├── Record.Continent.spec.json │ ├── Record.CountryOrRegion.spec.json │ ├── Record.No1.spec.json │ ├── Record.No2.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Continent.spec.json │ ├── root.CountryOrRegion.spec.json │ ├── root.No1.spec.json │ ├── root.No2.spec.json │ └── root.Record.spec.json ├── Employee.000001 │ ├── IdStruct.Age.spec.json │ ├── IdStruct.Id.spec.json │ ├── IdStruct.Name.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Age.spec.json │ ├── root.Id.spec.json │ ├── root.IdStruct.spec.json │ └── root.Name.spec.json ├── Faculty.000001 │ ├── Record.Alma.spec.json │ ├── Record.Name.spec.json │ ├── Record.Position.spec.json │ ├── Record.Year.spec.json │ ├── Record.email.spec.json │ ├── Record.fax.spec.json │ ├── Record.office.spec.json │ ├── Record.phone.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Alma.spec.json │ ├── root.Name.spec.json │ ├── root.Position.spec.json │ ├── root.Record.spec.json │ ├── root.Year.spec.json │ ├── root.email.spec.json │ ├── root.fax.spec.json │ ├── root.office.spec.json │ └── root.phone.spec.json ├── FileSystem.000001 │ ├── DateStruct.Date.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ └── root.Date.spec.json ├── FileSystem.000002 │ ├── DirStruct.Dir.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ └── root.Dir.spec.json ├── FileSystem.000003 │ ├── FileStruct.File.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ └── root.File.spec.json ├── FileSystem.000004 │ ├── FileStruct.File.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ └── root.File.spec.json ├── FileSystem.000005 │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.FreeSize.spec.json │ └── root.Size.spec.json ├── Header.000001 │ ├── HeaderStruct.Header.spec.json │ ├── HeaderStruct.SubHeader.spec.json │ ├── HeaderStruct.SubSubHeader.spec.json │ ├── SubHeaderStruct.SubHeader.spec.json │ ├── SubHeaderStruct.SubSubHeader.spec.json │ ├── SubSubHeaderStruct.SubSubHeader.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Header.spec.json │ ├── root.SubHeader.spec.json │ └── root.SubSubHeader.spec.json ├── IpAddress.000001 │ ├── InternetStruct.Internet.spec.json │ ├── InternetStruct.Physical.spec.json │ ├── InternetStruct.Type.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Internet.spec.json │ ├── root.InternetStruct.spec.json │ ├── root.Physical.spec.json │ └── root.Type.spec.json ├── Log.000001 │ ├── Record.BladeId.spec.json │ ├── Record.Filename.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.BladeId.spec.json │ ├── root.Filename.spec.json │ └── root.Record.spec.json ├── Log.000002 │ ├── BaseAddressStruct.BaseAddress.spec.json │ ├── BaseAddressStruct.Definition.spec.json │ ├── BaseAddressStruct.Protect.spec.json │ ├── BaseAddressStruct.ProtectDefinition.spec.json │ ├── BaseAddressStruct.ProtectFlag.spec.json │ ├── BaseAddressStruct.RegionSize.spec.json │ ├── BaseAddressStruct.State.spec.json │ ├── BaseAddressStruct.StateDefinition.spec.json │ ├── BaseAddressStruct.StateFlag.spec.json │ ├── BaseAddressStruct.Type.spec.json │ ├── BaseAddressStruct.TypeFlag.spec.json │ ├── Protect.ProtectDefinition.spec.json │ ├── Protect.ProtectFlag.spec.json │ ├── State.StateDefinition.spec.json │ ├── State.StateFlag.spec.json │ ├── Type.Definition.spec.json │ ├── Type.TypeFlag.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.BaseAddress.spec.json │ ├── root.BaseAddressStruct.spec.json │ ├── root.Definition.spec.json │ ├── root.Protect.spec.json │ ├── root.ProtectDefinition.spec.json │ ├── root.ProtectFlag.spec.json │ ├── root.RegionSize.spec.json │ ├── root.State.spec.json │ ├── root.StateDefinition.spec.json │ ├── root.StateFlag.spec.json │ ├── root.Type.spec.json │ └── root.TypeFlag.spec.json ├── Log.000003 │ ├── DateStruct.Date.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Date.spec.json │ └── root.DateStruct.spec.json └── Product.000001 │ ├── Product.Category.spec.json │ ├── Product.Price1.spec.json │ ├── Product.Price2.spec.json │ ├── Product.Price3.spec.json │ ├── Product.Price4.spec.json │ ├── Product.ProductName.spec.json │ ├── input.txt │ ├── meta.json │ ├── output.json │ ├── root.Category.spec.json │ ├── root.Price1.spec.json │ ├── root.Price2.spec.json │ ├── root.Price3.spec.json │ ├── root.Price4.spec.json │ ├── root.Product.spec.json │ └── root.ProductName.spec.json ├── FLAME ├── README.md └── completion-benchmarks.json ├── FoRepBench ├── Readme.md └── dataset │ ├── FoRepBenchmarks.json │ └── seed_data.json ├── LICENSE ├── LaMirage ├── Excel │ └── benchmarks.json ├── Power_Fx │ └── benchmarks.json └── README.md ├── LastMile.Repair ├── Excel │ └── benchmarks.json ├── PowerShell │ └── benchmarks.json ├── Power_Fx │ └── benchmarks.json └── README.md ├── MBUPP ├── MBPP.json ├── MBPP_UpdatedNL.json ├── MBPP_UpdatedTC.json ├── MBUPP-MBPP_UpdatedNL_TC.json └── ReadME.md ├── PyDex ├── 2865_syntaxincorrect_correct_pair.json ├── 2868_syntaxincorrect_correct_pair.json ├── 2869_syntaxincorrect_correct_pair.json ├── 2870_syntaxincorrect_correct_pair.json ├── 2872_syntaxincorrect_correct_pair.json ├── 2873_syntaxincorrect_correct_pair.json ├── 2874_syntaxincorrect_correct_pair.json ├── 2875_syntaxincorrect_correct_pair.json ├── 2877_syntaxincorrect_correct_pair.json ├── 2878_syntaxincorrect_correct_pair.json ├── 2879_syntaxincorrect_correct_pair.json ├── 2882_syntaxincorrect_correct_pair.json ├── 2883_syntaxincorrect_correct_pair.json ├── 2920_syntaxincorrect_correct_pair.json ├── 2921_syntaxincorrect_correct_pair.json └── README.md ├── README.md ├── SECURITY.md ├── Split.Text ├── Airline.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Airport.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000004 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000005 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Alphanumeric.000006 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Bracket.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── CamelCase.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── CamelCase.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── CamelCase.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── City.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── City.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── City.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Code.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Code.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Code.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── CodeName.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Company.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Coordinate.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Coordinate.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Coordinate.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── County.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Currency.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Currency.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── DateTime.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── DateTime.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Dimension.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Dimension.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Email.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Email.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Email.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── EmergencyCall.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── EmergencyCall.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── FileSystem.000006 │ ├── input.txt │ ├── meta.json │ └── output.json ├── IpAddress.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── IpAddress.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000004 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000005 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000006 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000007 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000008 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000009 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000010 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000011 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000012 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000013 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000014 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000015 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000016 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Log.000017 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000004 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000005 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000006 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Name.000007 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameEmailAddress.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameEmailPhone.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameEmailPhone.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameEmailPhone.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameNumber.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NameNumber.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NamePhone.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000004 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000005 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000006 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000007 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000008 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000009 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NoiseAlign.000010 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Number.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Number.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Number.000003 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Number.000004 │ ├── input.txt │ ├── meta.json │ └── output.json ├── NumberPhrase.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── OpeningTime.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Ordinal.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Phrase.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Phrase.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Sentence.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── State.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── State.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Station.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Station.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Team.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Team.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Unit.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Url.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Url.000002 │ ├── input.txt │ ├── meta.json │ └── output.json ├── Url.000003 │ ├── input.txt │ ├── meta.json │ └── output.json └── ZipCode.000001 │ ├── input.txt │ ├── meta.json │ └── output.json ├── TSTR └── README.md └── Transformation.Text ├── Abbreviation.000001 ├── meta.json └── spec.json ├── Address.000002 ├── meta.json └── spec.json ├── Address.000003 ├── meta.json └── spec.json ├── Address.000004 ├── meta.json └── spec.json ├── Address.000005 ├── meta.json └── spec.json ├── Address.000006 ├── meta.json └── spec.json ├── Address.000007 ├── meta.json └── spec.json ├── Address.000008 ├── meta.json └── spec.json ├── Address.000009 ├── meta.json └── spec.json ├── Address.000010 ├── meta.json └── spec.json ├── Address.000011 ├── meta.json └── spec.json ├── Address.000012 ├── meta.json └── spec.json ├── Address.000013 ├── meta.json └── spec.json ├── Address.000014 ├── meta.json └── spec.json ├── Airline.000002 ├── meta.json └── spec.json ├── Author.000001 ├── meta.json └── spec.json ├── BillingCode.000001 ├── meta.json └── spec.json ├── BillingCode.000002 ├── meta.json └── spec.json ├── BillingCode.000003 ├── meta.json └── spec.json ├── BillingCode.000004 ├── meta.json └── spec.json ├── BillingCode.000005 ├── meta.json └── spec.json ├── BillingCode.000006 ├── meta.json └── spec.json ├── BillingCode.000007 ├── meta.json └── spec.json ├── BillingCode.000008 ├── meta.json └── spec.json ├── City.000004 ├── meta.json └── spec.json ├── City.000005 ├── meta.json └── spec.json ├── City.000006 ├── meta.json └── spec.json ├── City.000007 ├── meta.json └── spec.json ├── City.000008 ├── meta.json └── spec.json ├── City.000009 ├── meta.json └── spec.json ├── City.000010 ├── meta.json └── spec.json ├── City.000011 ├── meta.json └── spec.json ├── City.000012 ├── meta.json └── spec.json ├── Column.000001 ├── meta.json └── spec.json ├── Column.000002 ├── meta.json └── spec.json ├── Column.000003 ├── meta.json └── spec.json ├── Currency.000003 ├── meta.json └── spec.json ├── Currency.000004 ├── meta.json └── spec.json ├── Currency.000005 ├── meta.json └── spec.json ├── DateTime.000003 ├── meta.json └── spec.json ├── DateTime.000004 ├── meta.json └── spec.json ├── DateTime.000005 ├── meta.json └── spec.json ├── DateTime.000006 ├── meta.json └── spec.json ├── DateTime.000007 ├── meta.json └── spec.json ├── DateTime.000008 ├── meta.json └── spec.json ├── DateTime.000009 ├── meta.json └── spec.json ├── DateTime.000010 ├── meta.json └── spec.json ├── DateTime.000011 ├── meta.json └── spec.json ├── DateTime.000012 ├── meta.json └── spec.json ├── DateTime.000013 ├── meta.json └── spec.json ├── DateTime.000014 ├── meta.json └── spec.json ├── DateTime.000015 ├── meta.json └── spec.json ├── DateTime.000016 ├── meta.json └── spec.json ├── DateTime.000017 ├── meta.json └── spec.json ├── DateTime.000018 ├── meta.json └── spec.json ├── DateTime.000019 ├── meta.json └── spec.json ├── DateTime.000020 ├── meta.json └── spec.json ├── DateTime.000021 ├── meta.json └── spec.json ├── DateTime.000022 ├── meta.json └── spec.json ├── DateTime.000023 ├── meta.json └── spec.json ├── DateTime.000024 ├── meta.json └── spec.json ├── DateTime.000025 ├── meta.json └── spec.json ├── DateTime.000026 ├── meta.json └── spec.json ├── DateTime.000027 ├── meta.json └── spec.json ├── DateTime.000028 ├── meta.json └── spec.json ├── DateTime.000029 ├── meta.json └── spec.json ├── DateTime.000030 ├── meta.json └── spec.json ├── DateTime.000031 ├── meta.json └── spec.json ├── DateTime.000032 ├── meta.json └── spec.json ├── DateTime.000033 ├── meta.json └── spec.json ├── DateTime.000034 ├── meta.json └── spec.json ├── DateTime.000035 ├── meta.json └── spec.json ├── DateTime.000036 ├── meta.json └── spec.json ├── DateTime.000037 ├── meta.json └── spec.json ├── DateTime.000038 ├── meta.json └── spec.json ├── DateTime.000039 ├── meta.json └── spec.json ├── DateTime.000040 ├── meta.json └── spec.json ├── DateTime.000041 ├── meta.json └── spec.json ├── DateTime.000042 ├── meta.json └── spec.json ├── DateTime.000043 ├── meta.json └── spec.json ├── DateTime.000044 ├── meta.json └── spec.json ├── DateTime.000045 ├── meta.json └── spec.json ├── DateTime.000046 ├── meta.json └── spec.json ├── DateTime.000047 ├── meta.json └── spec.json ├── DateTime.000048 ├── meta.json └── spec.json ├── DateTime.000049 ├── meta.json └── spec.json ├── DateTime.000050 ├── meta.json └── spec.json ├── DateTime.000051 ├── meta.json └── spec.json ├── DateTime.000052 ├── meta.json └── spec.json ├── DateTime.000053 ├── meta.json └── spec.json ├── DateTime.000054 ├── meta.json └── spec.json ├── DateTime.000055 ├── meta.json └── spec.json ├── DateTime.000056 ├── meta.json └── spec.json ├── DateTime.000057 ├── meta.json └── spec.json ├── DateTime.000058 ├── meta.json └── spec.json ├── DateTime.000059 ├── meta.json └── spec.json ├── DateTime.000060 ├── meta.json └── spec.json ├── DateTime.000061 ├── meta.json └── spec.json ├── DateTime.000062 ├── meta.json └── spec.json ├── DateTime.000063 ├── meta.json └── spec.json ├── DateTime.000064 ├── meta.json └── spec.json ├── DateTime.000065 ├── meta.json └── spec.json ├── DateTime.000066 ├── meta.json └── spec.json ├── DateTime.000067 ├── meta.json └── spec.json ├── DateTime.000068 ├── meta.json └── spec.json ├── DateTime.000069 ├── meta.json └── spec.json ├── DateTime.000070 ├── meta.json └── spec.json ├── DateTime.000071 ├── meta.json └── spec.json ├── DateTime.000072 ├── meta.json └── spec.json ├── DateTime.000073 ├── meta.json └── spec.json ├── DateTime.000074 ├── meta.json └── spec.json ├── DateTime.000075 ├── meta.json └── spec.json ├── DateTime.000076 ├── meta.json └── spec.json ├── DateTime.000077 ├── meta.json └── spec.json ├── DateTime.000078 ├── meta.json └── spec.json ├── DateTime.000079 ├── meta.json └── spec.json ├── DateTime.000080 ├── meta.json └── spec.json ├── DateTime.000081 ├── meta.json └── spec.json ├── DateTime.000082 ├── meta.json └── spec.json ├── DateTime.000083 ├── meta.json └── spec.json ├── DateTime.000084 ├── meta.json └── spec.json ├── DateTime.000085 ├── meta.json └── spec.json ├── DateTime.000086 ├── meta.json └── spec.json ├── DateTime.000087 ├── meta.json └── spec.json ├── DateTime.000088 ├── meta.json └── spec.json ├── DateTime.000089 ├── meta.json └── spec.json ├── DateTime.000090 ├── meta.json └── spec.json ├── DateTime.000091 ├── meta.json └── spec.json ├── DateTime.000092 ├── meta.json └── spec.json ├── DateTime.000093 ├── meta.json └── spec.json ├── DateTime.000094 ├── meta.json └── spec.json ├── DateTime.000095 ├── meta.json └── spec.json ├── DateTime.000096 ├── meta.json └── spec.json ├── DateTime.000097 ├── meta.json └── spec.json ├── DateTime.000098 ├── meta.json └── spec.json ├── DateTime.000099 ├── meta.json └── spec.json ├── DateTime.000100 ├── meta.json └── spec.json ├── DateTime.000101 ├── meta.json └── spec.json ├── DateTime.000102 ├── meta.json └── spec.json ├── DateTime.000103 ├── meta.json └── spec.json ├── DateTime.000104 ├── meta.json └── spec.json ├── DateTime.000105 ├── meta.json └── spec.json ├── DateTime.000106 ├── meta.json └── spec.json ├── DateTime.000107 ├── meta.json └── spec.json ├── DateTime.000108 ├── meta.json └── spec.json ├── DateTime.000109 ├── meta.json └── spec.json ├── DateTime.000110 ├── meta.json └── spec.json ├── DateTime.000111 ├── meta.json └── spec.json ├── DateTime.000112 ├── meta.json └── spec.json ├── DateTime.000113 ├── meta.json └── spec.json ├── DateTime.000114 ├── meta.json └── spec.json ├── DateTime.000115 ├── meta.json └── spec.json ├── DateTime.000116 ├── meta.json └── spec.json ├── Email.000004 ├── meta.json └── spec.json ├── Email.000005 ├── meta.json └── spec.json ├── Email.000006 ├── meta.json └── spec.json ├── Email.000007 ├── meta.json └── spec.json ├── Email.000008 ├── meta.json └── spec.json ├── Email.000009 ├── meta.json └── spec.json ├── Email.000010 ├── meta.json └── spec.json ├── Email.000011 ├── meta.json └── spec.json ├── Email.000012 ├── meta.json └── spec.json ├── Email.000013 ├── meta.json └── spec.json ├── EmergencyCall.000003 ├── meta.json └── spec.json ├── EmergencyCall.000004 ├── meta.json └── spec.json ├── FilePath.000001 ├── meta.json └── spec.json ├── FilePath.000002 ├── meta.json └── spec.json ├── FilePath.000003 ├── meta.json └── spec.json ├── FilePath.000004 ├── meta.json └── spec.json ├── FilePath.000005 ├── meta.json └── spec.json ├── Gender.000001 ├── meta.json └── spec.json ├── Gender.000002 ├── meta.json └── spec.json ├── Gender.000003 ├── meta.json └── spec.json ├── Honorific.000001 ├── meta.json └── spec.json ├── Language.000001 ├── meta.json └── spec.json ├── Language.000002 ├── meta.json └── spec.json ├── Log.000018 ├── meta.json └── spec.json ├── Log.000019 ├── meta.json └── spec.json ├── Log.000020 ├── meta.json └── spec.json ├── Log.000021 ├── meta.json └── spec.json ├── Log.000022 ├── meta.json └── spec.json ├── Meteorite.000001 ├── meta.json └── spec.json ├── Name.000008 ├── meta.json └── spec.json ├── Name.000009 ├── meta.json └── spec.json ├── Name.000010 ├── meta.json └── spec.json ├── Name.000011 ├── meta.json └── spec.json ├── Name.000012 ├── meta.json └── spec.json ├── Name.000013 ├── meta.json └── spec.json ├── Name.000014 ├── meta.json └── spec.json ├── Name.000015 ├── meta.json └── spec.json ├── Name.000016 ├── meta.json └── spec.json ├── Name.000017 ├── meta.json └── spec.json ├── Name.000018 ├── meta.json └── spec.json ├── Name.000019 ├── meta.json └── spec.json ├── Name.000020 ├── meta.json └── spec.json ├── Name.000021 ├── meta.json └── spec.json ├── Name.000022 ├── meta.json └── spec.json ├── Name.000023 ├── meta.json └── spec.json ├── Name.000024 ├── meta.json └── spec.json ├── Name.000025 ├── meta.json └── spec.json ├── Name.000026 ├── meta.json └── spec.json ├── Name.000027 ├── meta.json └── spec.json ├── Name.000028 ├── meta.json └── spec.json ├── Name.000029 ├── meta.json └── spec.json ├── Name.000030 ├── meta.json └── spec.json ├── Name.000031 ├── meta.json └── spec.json ├── Name.000032 ├── meta.json └── spec.json ├── Name.000033 ├── meta.json └── spec.json ├── Name.000034 ├── meta.json └── spec.json ├── Name.000035 ├── meta.json └── spec.json ├── Name.000036 ├── meta.json └── spec.json ├── Name.000037 ├── meta.json └── spec.json ├── Name.000038 ├── meta.json └── spec.json ├── Name.000039 ├── meta.json └── spec.json ├── Name.000040 ├── meta.json └── spec.json ├── Name.000041 ├── meta.json └── spec.json ├── Name.000042 ├── meta.json └── spec.json ├── Noise.000001 ├── meta.json └── spec.json ├── Number.000005 ├── meta.json └── spec.json ├── Number.000006 ├── meta.json └── spec.json ├── Number.000007 ├── meta.json └── spec.json ├── Number.000008 ├── meta.json └── spec.json ├── Number.000009 ├── meta.json └── spec.json ├── Number.000010 ├── meta.json └── spec.json ├── Number.000011 ├── meta.json └── spec.json ├── Number.000012 ├── meta.json └── spec.json ├── Number.000013 ├── meta.json └── spec.json ├── Number.000014 ├── meta.json └── spec.json ├── Number.000015 ├── meta.json └── spec.json ├── Number.000016 ├── meta.json └── spec.json ├── Number.000017 ├── meta.json └── spec.json ├── Number.000018 ├── meta.json └── spec.json ├── Number.000019 ├── meta.json └── spec.json ├── Number.000020 ├── meta.json └── spec.json ├── Number.000021 ├── meta.json └── spec.json ├── Number.000022 ├── meta.json └── spec.json ├── Number.000023 ├── meta.json └── spec.json ├── Number.000024 ├── meta.json └── spec.json ├── Number.000025 ├── meta.json └── spec.json ├── Number.000026 ├── meta.json └── spec.json ├── Number.000027 ├── meta.json └── spec.json ├── Number.000028 ├── meta.json └── spec.json ├── Number.000029 ├── meta.json └── spec.json ├── Number.000030 ├── meta.json └── spec.json ├── Number.000031 ├── meta.json └── spec.json ├── Number.000032 ├── meta.json └── spec.json ├── Number.000033 ├── meta.json └── spec.json ├── Number.000034 ├── meta.json └── spec.json ├── Number.000035 ├── meta.json └── spec.json ├── Number.000036 ├── meta.json └── spec.json ├── Number.000037 ├── meta.json └── spec.json ├── Number.000038 ├── meta.json └── spec.json ├── Number.000039 ├── meta.json └── spec.json ├── Number.000040 ├── meta.json └── spec.json ├── Number.000041 ├── meta.json └── spec.json ├── Number.000042 ├── meta.json └── spec.json ├── Number.000043 ├── meta.json └── spec.json ├── Number.000044 ├── meta.json └── spec.json ├── Number.000045 ├── meta.json └── spec.json ├── Number.000046 ├── meta.json └── spec.json ├── Number.000047 ├── meta.json └── spec.json ├── Number.000048 ├── meta.json └── spec.json ├── Number.000049 ├── meta.json └── spec.json ├── Number.000050 ├── meta.json └── spec.json ├── Number.000051 ├── meta.json └── spec.json ├── Number.000052 ├── meta.json └── spec.json ├── Number.000053 ├── meta.json └── spec.json ├── Number.000054 ├── meta.json └── spec.json ├── Number.000055 ├── meta.json └── spec.json ├── Number.000056 ├── meta.json └── spec.json ├── Number.000057 ├── meta.json └── spec.json ├── Number.000058 ├── meta.json └── spec.json ├── Number.000059 ├── meta.json └── spec.json ├── Number.000060 ├── meta.json └── spec.json ├── Number.000061 ├── meta.json └── spec.json ├── Number.000062 ├── meta.json └── spec.json ├── Number.000063 ├── meta.json └── spec.json ├── Number.000064 ├── meta.json └── spec.json ├── Number.000065 ├── meta.json └── spec.json ├── Number.000066 ├── meta.json └── spec.json ├── Number.000067 ├── meta.json └── spec.json ├── Number.000068 ├── meta.json └── spec.json ├── Number.000069 ├── meta.json └── spec.json ├── Number.000070 ├── meta.json └── spec.json ├── Number.000071 ├── meta.json └── spec.json ├── Number.000072 ├── meta.json └── spec.json ├── Number.000073 ├── meta.json └── spec.json ├── Number.000074 ├── meta.json └── spec.json ├── Number.000075 ├── meta.json └── spec.json ├── Number.000076 ├── meta.json └── spec.json ├── Number.000077 ├── meta.json └── spec.json ├── Number.000078 ├── meta.json └── spec.json ├── Number.000079 ├── meta.json └── spec.json ├── Number.000080 ├── meta.json └── spec.json ├── Number.000081 ├── meta.json └── spec.json ├── Number.000082 ├── meta.json └── spec.json ├── Number.000083 ├── meta.json └── spec.json ├── Number.000084 ├── meta.json └── spec.json ├── Number.000085 ├── meta.json └── spec.json ├── Number.000086 ├── meta.json └── spec.json ├── Number.000087 ├── meta.json └── spec.json ├── Number.000088 ├── meta.json └── spec.json ├── Number.000089 ├── meta.json └── spec.json ├── Number.000090 ├── meta.json └── spec.json ├── Number.000091 ├── meta.json └── spec.json ├── Number.000092 ├── meta.json └── spec.json ├── Number.000093 ├── meta.json └── spec.json ├── Number.000094 ├── meta.json └── spec.json ├── Phone.000001 ├── meta.json └── spec.json ├── Phone.000002 ├── meta.json └── spec.json ├── Phone.000003 ├── meta.json └── spec.json ├── Phone.000004 ├── meta.json └── spec.json ├── Phone.000005 ├── meta.json └── spec.json ├── Phone.000006 ├── meta.json └── spec.json ├── Phone.000007 ├── meta.json └── spec.json ├── Phone.000008 ├── meta.json └── spec.json ├── Phone.000009 ├── meta.json └── spec.json ├── Phone.000010 ├── meta.json └── spec.json ├── Phone.000011 ├── meta.json └── spec.json ├── Phone.000012 ├── meta.json └── spec.json ├── Phone.000013 ├── meta.json └── spec.json ├── Phone.000014 ├── meta.json └── spec.json ├── Phone.000015 ├── meta.json └── spec.json ├── Phone.000016 ├── meta.json └── spec.json ├── Phone.000017 ├── meta.json └── spec.json ├── Phrase.000003 ├── meta.json └── spec.json ├── Product.000002 ├── meta.json └── spec.json ├── Product.000003 ├── meta.json └── spec.json ├── Rating.000001 ├── meta.json └── spec.json ├── Rating.000002 ├── meta.json └── spec.json ├── Separator.000001 ├── meta.json └── spec.json ├── ShippingCode.000001 ├── meta.json └── spec.json ├── ShippingCode.000002 ├── meta.json └── spec.json ├── ShippingCode.000003 ├── meta.json └── spec.json ├── ShippingCode.000004 ├── meta.json └── spec.json ├── ShippingCode.000005 ├── meta.json └── spec.json ├── ShippingCode.000006 ├── meta.json └── spec.json ├── ShippingCode.000007 ├── meta.json └── spec.json ├── ShippingCode.000008 ├── meta.json └── spec.json ├── ShippingCode.000009 ├── meta.json └── spec.json ├── ShippingCode.000010 ├── meta.json └── spec.json ├── Song.000001 ├── meta.json └── spec.json ├── State.000003 ├── meta.json └── spec.json ├── Team.000003 ├── meta.json └── spec.json ├── Url.000004 ├── meta.json └── spec.json ├── UserAgent.000001 ├── meta.json └── spec.json ├── UserAgent.000002 ├── meta.json └── spec.json ├── UserAgent.000003 ├── meta.json └── spec.json ├── UserAgent.000004 ├── meta.json └── spec.json ├── UserAgent.000005 ├── meta.json └── spec.json ├── UserAgent.000006 ├── meta.json └── spec.json ├── UserAgent.000007 ├── meta.json └── spec.json ├── Word.000001 ├── meta.json └── spec.json └── ZipCode.000002 ├── meta.json └── spec.json /CodeFusion/Benchmarks/BashBenchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/CodeFusion/Benchmarks/BashBenchmarks.json -------------------------------------------------------------------------------- /CodeFusion/Benchmarks/CFRuleBenchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/CodeFusion/Benchmarks/CFRuleBenchmarks.json -------------------------------------------------------------------------------- /CodeFusion/Benchmarks/PythonBenchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/CodeFusion/Benchmarks/PythonBenchmarks.json -------------------------------------------------------------------------------- /CodeFusion/Pretraining Data/BashSnippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/CodeFusion/Pretraining Data/BashSnippets.txt -------------------------------------------------------------------------------- /CodeFusion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/CodeFusion/README.md -------------------------------------------------------------------------------- /ConditionalFormatting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/ConditionalFormatting/README.md -------------------------------------------------------------------------------- /Emfore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Emfore/README.md -------------------------------------------------------------------------------- /Extraction.Text/Address.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Address.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Address.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Address.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Address.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/Company.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Company.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Company.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Company.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Company.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/Company.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Company.000002/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Company.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Company.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Company.000002/output.json -------------------------------------------------------------------------------- /Extraction.Text/CountryOrRegion.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Employee.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Employee.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Employee.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Employee.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Employee.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/Faculty.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Faculty.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Faculty.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Faculty.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Faculty.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000002/input.txt -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000002/output.json -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000003/input.txt -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000003/output.json -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000004/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000004/input.txt -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000004/output.json -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000005/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000005/input.txt -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000005/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Extraction.Text/FileSystem.000005/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/FileSystem.000005/output.json -------------------------------------------------------------------------------- /Extraction.Text/Header.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Header.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Header.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Header.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Header.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/IpAddress.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/IpAddress.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/IpAddress.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/IpAddress.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/IpAddress.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/Log.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Log.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Log.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000001/output.json -------------------------------------------------------------------------------- /Extraction.Text/Log.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000002/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Log.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Log.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000002/output.json -------------------------------------------------------------------------------- /Extraction.Text/Log.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000003/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Log.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Log.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Log.000003/output.json -------------------------------------------------------------------------------- /Extraction.Text/Product.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Product.000001/input.txt -------------------------------------------------------------------------------- /Extraction.Text/Product.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Extraction.Text/Product.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Extraction.Text/Product.000001/output.json -------------------------------------------------------------------------------- /FLAME/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/FLAME/README.md -------------------------------------------------------------------------------- /FLAME/completion-benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/FLAME/completion-benchmarks.json -------------------------------------------------------------------------------- /FoRepBench/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/FoRepBench/Readme.md -------------------------------------------------------------------------------- /FoRepBench/dataset/FoRepBenchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/FoRepBench/dataset/FoRepBenchmarks.json -------------------------------------------------------------------------------- /FoRepBench/dataset/seed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/FoRepBench/dataset/seed_data.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /LaMirage/Excel/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LaMirage/Excel/benchmarks.json -------------------------------------------------------------------------------- /LaMirage/Power_Fx/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LaMirage/Power_Fx/benchmarks.json -------------------------------------------------------------------------------- /LaMirage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LaMirage/README.md -------------------------------------------------------------------------------- /LastMile.Repair/Excel/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LastMile.Repair/Excel/benchmarks.json -------------------------------------------------------------------------------- /LastMile.Repair/PowerShell/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LastMile.Repair/PowerShell/benchmarks.json -------------------------------------------------------------------------------- /LastMile.Repair/Power_Fx/benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LastMile.Repair/Power_Fx/benchmarks.json -------------------------------------------------------------------------------- /LastMile.Repair/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/LastMile.Repair/README.md -------------------------------------------------------------------------------- /MBUPP/MBPP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/MBUPP/MBPP.json -------------------------------------------------------------------------------- /MBUPP/MBPP_UpdatedNL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/MBUPP/MBPP_UpdatedNL.json -------------------------------------------------------------------------------- /MBUPP/MBPP_UpdatedTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/MBUPP/MBPP_UpdatedTC.json -------------------------------------------------------------------------------- /MBUPP/MBUPP-MBPP_UpdatedNL_TC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/MBUPP/MBUPP-MBPP_UpdatedNL_TC.json -------------------------------------------------------------------------------- /MBUPP/ReadME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/MBUPP/ReadME.md -------------------------------------------------------------------------------- /PyDex/2865_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2865_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2868_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2868_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2869_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2869_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2870_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2870_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2872_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2872_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2873_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2873_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2874_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2874_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2875_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2875_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2877_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2877_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2878_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2878_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2879_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2879_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2882_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2882_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2883_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2883_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2920_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2920_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/2921_syntaxincorrect_correct_pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/2921_syntaxincorrect_correct_pair.json -------------------------------------------------------------------------------- /PyDex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/PyDex/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Split.Text/Airline.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Airline.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Airline.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Airline.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Airline.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Airport.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Airport.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Airport.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Airport.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Airport.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000002/input.txt: -------------------------------------------------------------------------------- 1 | TO259492H -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000004/input.txt: -------------------------------------------------------------------------------- 1 | 88M 2 | 24M 3 | 48G -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000004/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000005/input.txt: -------------------------------------------------------------------------------- 1 | 7525949HHMQMZAW -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000005/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000005/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000005/output.json -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000006/input.txt: -------------------------------------------------------------------------------- 1 | TOF594 -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000006/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Alphanumeric.000006/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Alphanumeric.000006/output.json -------------------------------------------------------------------------------- /Split.Text/Bracket.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Bracket.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Bracket.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Bracket.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Bracket.000001/output.json -------------------------------------------------------------------------------- /Split.Text/CamelCase.000001/input.txt: -------------------------------------------------------------------------------- 1 | IllumAssumenda 2 | QuiaNatusEt 3 | ReiciendisAdNostrumTotam -------------------------------------------------------------------------------- /Split.Text/CamelCase.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/CamelCase.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/CamelCase.000001/output.json -------------------------------------------------------------------------------- /Split.Text/CamelCase.000002/input.txt: -------------------------------------------------------------------------------- 1 | Eius 2 | OmnisReiciendis 3 | EtDelectusFugiat -------------------------------------------------------------------------------- /Split.Text/CamelCase.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/CamelCase.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/CamelCase.000002/output.json -------------------------------------------------------------------------------- /Split.Text/CamelCase.000003/input.txt: -------------------------------------------------------------------------------- 1 | 2 | Excepturi 3 | AutEt -------------------------------------------------------------------------------- /Split.Text/CamelCase.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/CamelCase.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/CamelCase.000003/output.json -------------------------------------------------------------------------------- /Split.Text/City.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/City.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/City.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000001/output.json -------------------------------------------------------------------------------- /Split.Text/City.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/City.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/City.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000002/output.json -------------------------------------------------------------------------------- /Split.Text/City.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/City.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/City.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/City.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Code.000001/input.txt: -------------------------------------------------------------------------------- 1 | SV (TOF) -------------------------------------------------------------------------------- /Split.Text/Code.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Code.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Code.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Code.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Code.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Code.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Code.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Code.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Code.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Code.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Code.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Code.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Code.000003/output.json -------------------------------------------------------------------------------- /Split.Text/CodeName.000001/input.txt: -------------------------------------------------------------------------------- 1 | (7875) Kiriakos Sarlis 2 | (5949/2246) Radmilo Bogic 3 | (ZAW-963) Rita Busuttil -------------------------------------------------------------------------------- /Split.Text/CodeName.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/CodeName.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/CodeName.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Company.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Company.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Company.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/Company.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Company.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Coordinate.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Coordinate.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Coordinate.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Coordinate.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Coordinate.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Coordinate.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Coordinate.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Coordinate.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Coordinate.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Coordinate.000003/output.json -------------------------------------------------------------------------------- /Split.Text/County.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/County.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/County.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/County.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/County.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Currency.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Currency.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Currency.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Currency.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Currency.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Currency.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Currency.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Currency.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Currency.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Currency.000002/output.json -------------------------------------------------------------------------------- /Split.Text/DateTime.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/DateTime.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/DateTime.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/DateTime.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/DateTime.000001/output.json -------------------------------------------------------------------------------- /Split.Text/DateTime.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/DateTime.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/DateTime.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/DateTime.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/DateTime.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Dimension.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Dimension.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Dimension.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Dimension.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Dimension.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Dimension.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Dimension.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Dimension.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Dimension.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Dimension.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Email.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Email.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Email.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Email.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Email.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Email.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Email.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Email.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Email.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Email.000003/output.json -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/EmergencyCall.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/EmergencyCall.000001/output.json -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/EmergencyCall.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/EmergencyCall.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/EmergencyCall.000002/output.json -------------------------------------------------------------------------------- /Split.Text/FileSystem.000006/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/FileSystem.000006/input.txt -------------------------------------------------------------------------------- /Split.Text/FileSystem.000006/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/FileSystem.000006/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/FileSystem.000006/output.json -------------------------------------------------------------------------------- /Split.Text/IpAddress.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/IpAddress.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/IpAddress.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/IpAddress.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/IpAddress.000002/output.json -------------------------------------------------------------------------------- /Split.Text/IpAddress.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/IpAddress.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/IpAddress.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/IpAddress.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/IpAddress.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000004/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000004/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000004/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000005/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000005/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000005/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000005/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000005/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000006/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000006/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000006/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000006/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000006/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000007/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000007/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000007/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000007/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000007/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000008/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000008/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000008/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000008/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000008/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000009/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000009/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000009/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000009/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000009/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000010/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000010/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000010/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000010/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000010/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000011/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000011/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000011/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000011/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000011/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000012/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000012/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000012/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000012/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000012/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000013/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000013/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000013/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000013/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000013/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000014/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000014/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000014/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000014/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000014/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000015/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000015/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000015/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000015/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000015/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000016/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000016/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000016/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000016/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000016/output.json -------------------------------------------------------------------------------- /Split.Text/Log.000017/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000017/input.txt -------------------------------------------------------------------------------- /Split.Text/Log.000017/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Log.000017/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Log.000017/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000001/input.txt: -------------------------------------------------------------------------------- 1 | MukasineAysu 2 | YilmazAmbreen -------------------------------------------------------------------------------- /Split.Text/Name.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000002/input.txt: -------------------------------------------------------------------------------- 1 | Anne Yilmaz 2 | Artem Milanesi 3 | Bidisha Snezhana Panigrahi -------------------------------------------------------------------------------- /Split.Text/Name.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000003/input.txt: -------------------------------------------------------------------------------- 1 | Mukasine 2 | Sarlis 3 | Ahmed -------------------------------------------------------------------------------- /Split.Text/Name.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000004/input.txt: -------------------------------------------------------------------------------- 1 | Hone Sarlis 2 | Fatma 3 | Dilorom -------------------------------------------------------------------------------- /Split.Text/Name.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000004/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000005/input.txt: -------------------------------------------------------------------------------- 1 | AnneFYilmaz 2 | ArtemHMilanesi 3 | BidishaTraver -------------------------------------------------------------------------------- /Split.Text/Name.000005/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000005/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000005/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000006/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000006/input.txt -------------------------------------------------------------------------------- /Split.Text/Name.000006/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000006/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000006/output.json -------------------------------------------------------------------------------- /Split.Text/Name.000007/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000007/input.txt -------------------------------------------------------------------------------- /Split.Text/Name.000007/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Name.000007/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Name.000007/output.json -------------------------------------------------------------------------------- /Split.Text/NameEmailAddress.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailAddress.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/NameEmailAddress.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000001/output.json -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000002/output.json -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameEmailPhone.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameEmailPhone.000003/output.json -------------------------------------------------------------------------------- /Split.Text/NameNumber.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameNumber.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/NameNumber.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameNumber.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameNumber.000001/output.json -------------------------------------------------------------------------------- /Split.Text/NameNumber.000002/input.txt: -------------------------------------------------------------------------------- 1 | kiriakos4922 2 | Anna9638 3 | Rodel6501 -------------------------------------------------------------------------------- /Split.Text/NameNumber.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NameNumber.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NameNumber.000002/output.json -------------------------------------------------------------------------------- /Split.Text/NamePhone.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NamePhone.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/NamePhone.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NamePhone.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NamePhone.000001/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000001/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000002/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000003/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000004/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000004/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000004/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000005/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000005/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000005/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000005/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000005/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000006/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000006/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000006/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000006/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000006/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000007/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000007/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000007/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000007/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000007/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000008/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000008/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000008/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000008/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000008/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000009/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000009/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000009/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000009/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000009/output.json -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000010/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000010/input.txt -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000010/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NoiseAlign.000010/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NoiseAlign.000010/output.json -------------------------------------------------------------------------------- /Split.Text/Number.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Number.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Number.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Number.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Number.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Number.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Number.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Number.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Number.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000003/output.json -------------------------------------------------------------------------------- /Split.Text/Number.000004/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000004/input.txt -------------------------------------------------------------------------------- /Split.Text/Number.000004/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Number.000004/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Number.000004/output.json -------------------------------------------------------------------------------- /Split.Text/NumberPhrase.000001/input.txt: -------------------------------------------------------------------------------- 1 | 333iste quia11221 2 | 367reiciendis5546 3 | 129harum9443 -------------------------------------------------------------------------------- /Split.Text/NumberPhrase.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/NumberPhrase.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/NumberPhrase.000001/output.json -------------------------------------------------------------------------------- /Split.Text/OpeningTime.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/OpeningTime.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/OpeningTime.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/OpeningTime.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/OpeningTime.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Ordinal.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Ordinal.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Ordinal.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Ordinal.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Ordinal.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Phrase.000001/input.txt: -------------------------------------------------------------------------------- 1 | Hello there 2 | Foo Evening -------------------------------------------------------------------------------- /Split.Text/Phrase.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Phrase.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Phrase.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Phrase.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Phrase.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Phrase.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Phrase.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Phrase.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Sentence.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Sentence.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Sentence.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Sentence.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Sentence.000001/output.json -------------------------------------------------------------------------------- /Split.Text/State.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/State.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/State.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/State.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/State.000001/output.json -------------------------------------------------------------------------------- /Split.Text/State.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/State.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/State.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/State.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/State.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Station.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Station.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Station.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/Station.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Station.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Station.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Station.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Station.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": false 3 | } -------------------------------------------------------------------------------- /Split.Text/Station.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Station.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Team.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Team.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Team.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Team.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Team.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Team.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Team.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Team.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Team.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Team.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Unit.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Unit.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Unit.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Unit.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Unit.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Url.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/Url.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Url.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000001/output.json -------------------------------------------------------------------------------- /Split.Text/Url.000002/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000002/input.txt -------------------------------------------------------------------------------- /Split.Text/Url.000002/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Url.000002/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000002/output.json -------------------------------------------------------------------------------- /Split.Text/Url.000003/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000003/input.txt -------------------------------------------------------------------------------- /Split.Text/Url.000003/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/Url.000003/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/Url.000003/output.json -------------------------------------------------------------------------------- /Split.Text/ZipCode.000001/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/ZipCode.000001/input.txt -------------------------------------------------------------------------------- /Split.Text/ZipCode.000001/meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "Synthetic": true 3 | } -------------------------------------------------------------------------------- /Split.Text/ZipCode.000001/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Split.Text/ZipCode.000001/output.json -------------------------------------------------------------------------------- /TSTR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/TSTR/README.md -------------------------------------------------------------------------------- /Transformation.Text/Address.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000014/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000014/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Address.000014/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Address.000014/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Airline.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Airline.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Airline.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Airline.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Author.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Author.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Author.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Author.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/City.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/City.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/City.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Column.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Column.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Currency.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Currency.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000014/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000014/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000014/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000014/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000015/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000015/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000015/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000015/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000016/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000016/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000016/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000016/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000017/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000017/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000017/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000017/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000018/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000018/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000018/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000018/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000019/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000019/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000019/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000019/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000020/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000020/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000020/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000020/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000021/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000021/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000021/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000021/spec.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000022/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000022/meta.json -------------------------------------------------------------------------------- /Transformation.Text/DateTime.000022/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/DateTime.000022/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Email.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Email.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Gender.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Gender.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000018/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000018/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000018/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000018/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000019/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000019/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000019/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000019/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000020/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000020/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000020/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000020/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000021/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000021/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000021/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000021/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000022/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000022/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Log.000022/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Log.000022/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000014/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000014/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000014/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000014/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000015/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000015/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000015/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000015/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000016/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000016/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000016/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000016/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000017/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000017/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000017/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000017/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000018/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000018/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000018/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000018/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000019/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000019/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000019/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000019/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000020/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000020/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000020/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000020/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000021/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000021/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000021/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000021/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000022/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000022/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000022/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000022/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000023/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000023/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000023/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000023/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000024/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000024/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000024/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000024/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000025/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000025/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000025/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000025/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000026/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000026/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000026/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000026/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000027/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000027/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000027/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000027/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000028/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000028/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000028/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000028/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000029/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000029/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000029/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000029/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000030/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000030/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000030/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000030/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000031/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000031/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000031/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000031/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000032/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000032/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000032/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000032/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000033/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000033/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000033/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000033/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000034/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000034/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000034/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000034/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000035/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000035/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000035/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000035/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000036/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000036/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000036/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000036/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000037/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000037/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000037/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000037/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000038/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000038/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000038/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000038/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000039/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000039/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000039/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000039/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000040/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000040/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000040/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000040/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000041/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000041/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000041/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000041/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000042/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000042/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Name.000042/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Name.000042/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Noise.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Noise.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Noise.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Noise.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000014/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000014/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000014/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000014/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000015/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000015/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000015/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000015/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000016/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000016/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000016/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000016/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000017/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000017/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000017/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000017/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000018/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000018/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000018/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000018/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000019/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000019/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000019/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000019/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000020/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000020/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000020/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000020/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000021/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000021/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000021/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000021/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000022/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000022/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000022/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000022/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000023/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000023/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000023/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000023/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000024/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000024/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000024/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000024/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000025/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000025/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000025/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000025/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000026/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000026/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000026/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000026/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000027/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000027/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000027/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000027/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000028/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000028/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000028/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000028/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000029/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000029/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000029/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000029/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000030/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000030/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000030/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000030/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000031/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000031/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000031/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000031/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000032/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000032/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000032/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000032/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000033/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000033/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000033/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000033/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000034/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000034/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000034/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000034/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000035/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000035/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000035/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000035/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000036/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000036/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000036/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000036/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000037/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000037/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000037/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000037/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000038/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000038/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000038/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000038/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000039/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000039/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000039/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000039/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000040/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000040/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000040/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000040/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000041/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000041/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000041/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000041/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000042/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000042/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000042/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000042/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000043/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000043/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000043/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000043/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000044/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000044/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000044/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000044/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000045/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000045/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000045/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000045/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000046/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000046/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000046/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000046/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000047/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000047/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000047/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000047/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000048/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000048/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000048/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000048/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000049/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000049/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000049/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000049/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000050/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000050/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000050/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000050/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000051/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000051/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000051/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000051/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000052/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000052/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000052/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000052/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000053/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000053/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000053/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000053/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000054/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000054/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000054/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000054/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000055/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000055/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000055/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000055/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000056/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000056/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000056/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000056/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000057/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000057/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000057/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000057/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000058/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000058/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000058/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000058/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000059/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000059/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000059/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000059/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000060/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000060/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000060/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000060/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000061/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000061/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000061/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000061/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000062/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000062/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000062/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000062/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000063/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000063/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000063/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000063/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000064/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000064/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000064/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000064/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000065/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000065/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000065/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000065/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000066/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000066/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000066/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000066/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000067/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000067/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000067/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000067/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000068/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000068/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000068/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000068/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000069/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000069/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000069/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000069/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000070/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000070/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000070/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000070/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000071/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000071/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000071/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000071/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000072/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000072/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000072/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000072/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000073/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000073/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000073/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000073/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000074/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000074/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000074/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000074/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000075/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000075/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000075/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000075/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000076/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000076/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000076/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000076/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000077/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000077/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000077/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000077/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000078/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000078/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000078/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000078/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000079/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000079/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000079/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000079/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000080/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000080/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000080/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000080/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000081/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000081/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000081/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000081/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000082/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000082/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000082/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000082/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000083/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000083/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000083/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000083/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000084/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000084/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000084/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000084/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000085/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000085/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000085/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000085/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000086/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000086/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000086/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000086/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000087/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000087/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000087/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000087/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000088/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000088/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000088/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000088/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000089/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000089/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000089/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000089/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000090/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000090/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000090/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000090/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000091/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000091/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000091/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000091/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000092/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000092/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000092/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000092/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000093/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000093/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000093/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000093/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000094/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000094/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Number.000094/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Number.000094/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000005/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000005/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000005/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000005/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000006/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000006/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000006/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000006/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000007/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000007/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000007/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000007/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000008/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000008/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000008/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000008/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000009/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000009/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000009/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000009/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000010/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000010/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000010/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000010/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000011/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000011/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000011/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000011/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000012/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000012/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000012/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000012/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000013/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000013/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000013/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000013/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000014/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000014/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000014/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000014/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000015/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000015/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000015/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000015/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000016/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000016/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000016/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000016/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000017/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000017/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phone.000017/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phone.000017/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Phrase.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phrase.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Phrase.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Phrase.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Rating.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Rating.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Rating.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Rating.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Rating.000002/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Rating.000002/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Rating.000002/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Rating.000002/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Song.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Song.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Song.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Song.000001/spec.json -------------------------------------------------------------------------------- /Transformation.Text/State.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/State.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/State.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/State.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Team.000003/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Team.000003/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Team.000003/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Team.000003/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Url.000004/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Url.000004/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Url.000004/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Url.000004/spec.json -------------------------------------------------------------------------------- /Transformation.Text/Word.000001/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Word.000001/meta.json -------------------------------------------------------------------------------- /Transformation.Text/Word.000001/spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/prose-benchmarks/HEAD/Transformation.Text/Word.000001/spec.json --------------------------------------------------------------------------------