├── .gitignore ├── DOCUMENTATION.md ├── LICENSE.txt ├── README.md ├── TUTORIAL.md ├── cl_worksheet.txt ├── data ├── tutorial-arithmetic.examples └── tutorial-arithmetic.grammar ├── demo-www ├── bullet.png ├── index.html ├── main.css └── main.js ├── freebase ├── README.md ├── data │ ├── demo1.grammar │ ├── emnlp2013.grammar │ ├── free917.test.examples.canonicalized.json │ ├── free917.train.examples.canonicalized.json │ ├── tutorial-freebase.grammar │ ├── tutorial-freebase.lexicon │ ├── tutorial.ttl │ ├── unittest-learn-ccg.grammar │ ├── unittest-learn.examples │ └── unittest-learn.grammar └── scripts │ ├── extract-freebase-schema.rb │ ├── fbshell.rb │ └── virtuoso ├── interactive ├── README.md ├── analyze_data.ipynb ├── community-server │ ├── install-deps.py │ ├── requirements.txt │ └── server.py ├── csscolors.lexicon ├── dal.grammar ├── datavis.grammar ├── definitions.lisp ├── experiments.py ├── plotting-client.ipynb ├── queries │ ├── README.md │ ├── freebuild.def.json.gz │ ├── freebuild.json.gz │ ├── rawqueries │ │ ├── freebuild1-0121.json.gz │ │ ├── freebuild2-0126.json.gz │ │ ├── freebuild2-0127.json.gz │ │ ├── freebuildbig-0206.json.gz │ │ ├── qualifier1-0118.json.gz │ │ ├── qualifier2-0129.json.gz │ │ └── qualifier3-0201.json.gz │ └── sidaw.json ├── run ├── subdal.grammar ├── testng.xml └── voxelurn.grammar ├── overnight ├── README.md ├── basketball.grammar ├── blocks.grammar ├── calendar-canonical.examples ├── calendar.grammar ├── calendar.turk.examples ├── general.grammar ├── geo880-unittest.examples ├── geo880.grammar ├── housing-unittest.examples ├── housing.grammar ├── null.examples ├── publications.grammar ├── recipes.grammar ├── restaurants-unittest.examples ├── restaurants.grammar ├── socialnetwork-unittest.examples ├── socialnetwork.grammar ├── templates.grammar ├── unittest.db └── unittest.grammar ├── plot ├── CanonicalUtteranceGenerator.java ├── README.md ├── analyze-specs.py ├── cl_run.sh ├── css-color-names.json ├── differ.py ├── error_analysis_html.py ├── generate_lexicon.py ├── get_log_counts.py ├── initial-templates.json ├── js-lib │ ├── nashorn-polyfill.js │ ├── synchronous-promise.js │ ├── vega-lite.js │ └── vega.js ├── makedir.sh ├── params.txt ├── plot.grammar ├── run ├── testng.xml ├── vega-lite.json ├── vega-lite.version ├── vega_lite_paths.py └── visualize │ ├── README.md │ ├── bundle │ ├── bundle.js │ ├── edgebundle2.html │ ├── packages.js │ └── style.css │ ├── collapsible.html │ ├── d3 │ ├── d3.js │ └── d3.layout.js │ ├── data │ └── .gitignore │ ├── dendrogram.html │ ├── dndTree.js │ ├── edgebundle.html │ ├── graph.html │ ├── radial.html │ └── tidy.html ├── pull-dependencies ├── run ├── scripts ├── agenda-stats ├── checkstyle.sh ├── checkstyle.xml ├── create-geo-simple-lexicon.py ├── evaluation.py ├── extract-module-classes.rb ├── filterGeneratedNegations.py ├── find-first-pred-diff.sh ├── find-hard-coded-paths.rb ├── fix-checkstyle.rb ├── generate-prediction-file.sh ├── tunnel └── verify-code-loop.rb ├── src └── edu │ └── stanford │ └── nlp │ └── sempre │ ├── AbstractReinforcementParserState.java │ ├── ActionFormula.java │ ├── AggregateFormula.java │ ├── ArithmeticFormula.java │ ├── AtomicSemType.java │ ├── BadFormulaException.java │ ├── BeamParser.java │ ├── BooleanValue.java │ ├── BoundedPriorityQueue.java │ ├── Builder.java │ ├── CallFormula.java │ ├── CallTypeInfo.java │ ├── CanonicalNames.java │ ├── CatSizeBound.java │ ├── ChartParserState.java │ ├── ChildDerivationsGroup.java │ ├── CoarseParser.java │ ├── Colorizer.java │ ├── ConcatFn.java │ ├── ConstantFn.java │ ├── ContextFn.java │ ├── ContextValue.java │ ├── Dataset.java │ ├── DateFn.java │ ├── DateRangeFn.java │ ├── DateValue.java │ ├── DefaultDerivationPruningComputer.java │ ├── DerivOpCountFeatureComputer.java │ ├── Derivation.java │ ├── DerivationPruner.java │ ├── DerivationPruningComputer.java │ ├── DerivationStream.java │ ├── DescriptionValue.java │ ├── ErrorValue.java │ ├── ExactValueEvaluator.java │ ├── Example.java │ ├── ExampleUtils.java │ ├── Executor.java │ ├── FeatureComputer.java │ ├── FeatureExtractor.java │ ├── FeatureMatcher.java │ ├── FeatureVector.java │ ├── FilterNerSpanFn.java │ ├── FilterPosTagFn.java │ ├── FilterSpanLengthFn.java │ ├── FilterTokenFn.java │ ├── FloatingFeatureComputer.java │ ├── FloatingParser.java │ ├── FloatingRuleUtils.java │ ├── Formula.java │ ├── FormulaMatchExecutor.java │ ├── Formulas.java │ ├── FuncSemType.java │ ├── FuzzyMatchFn.java │ ├── FuzzyMatchable.java │ ├── Grammar.java │ ├── HasScore.java │ ├── IdentityFn.java │ ├── JavaExecutor.java │ ├── JoinFn.java │ ├── JoinFormula.java │ ├── Json.java │ ├── JsonValue.java │ ├── KnowledgeGraph.java │ ├── LambdaFormula.java │ ├── LanguageAnalyzer.java │ ├── LanguageInfo.java │ ├── Learner.java │ ├── LearnerParallelProcessor.java │ ├── ListValue.java │ ├── Main.java │ ├── MarkFormula.java │ ├── Master.java │ ├── MergeFn.java │ ├── MergeFormula.java │ ├── MixParser.java │ ├── MultipleDerivationStream.java │ ├── NaiveKnowledgeGraph.java │ ├── NameValue.java │ ├── NotFormula.java │ ├── NullExecutor.java │ ├── NullTypeLookup.java │ ├── NumberFn.java │ ├── NumberValue.java │ ├── PairListValue.java │ ├── Params.java │ ├── Parser.java │ ├── ParserAgenda.java │ ├── ParserState.java │ ├── PrimitiveFormula.java │ ├── ReinforcementParser.java │ ├── ReinforcementUtils.java │ ├── ReverseFormula.java │ ├── Rule.java │ ├── RuleSource.java │ ├── SelectFn.java │ ├── SemType.java │ ├── SemTypeHierarchy.java │ ├── SemanticFn.java │ ├── SempreUtils.java │ ├── Server.java │ ├── Session.java │ ├── SimpleAnalyzer.java │ ├── SimpleLexicon.java │ ├── SimpleLexiconFn.java │ ├── SingleDerivationStream.java │ ├── StringValue.java │ ├── SuperlativeFormula.java │ ├── TableValue.java │ ├── TargetValuePreprocessor.java │ ├── TimeValue.java │ ├── TopSemType.java │ ├── Trie.java │ ├── TypeInference.java │ ├── TypeLookup.java │ ├── UnionSemType.java │ ├── UriValue.java │ ├── Value.java │ ├── ValueEvaluator.java │ ├── ValueFormula.java │ ├── Values.java │ ├── VariableFormula.java │ ├── cache │ ├── FileStringCache.java │ ├── LruCallback.java │ ├── LruMap.java │ ├── RemoteStringCache.java │ ├── StringCache.java │ ├── StringCacheServer.java │ ├── StringCacheUtils.java │ └── test │ │ └── StringCacheTest.java │ ├── corenlp │ ├── CoreNLPAnalyzer.java │ └── test │ │ └── CoreNLPSemanticFnTest.java │ ├── freebase │ ├── BinaryLexicon.java │ ├── BridgeFn.java │ ├── BuildCanonicalIdMap.java │ ├── BuildTypesMap.java │ ├── CanonicalizeExamples.java │ ├── CanonicalizeIds.java │ ├── EntityLexicon.java │ ├── ExecuteExamples.java │ ├── FbFormulasInfo.java │ ├── FilterFreebase.java │ ├── Free917Converter.java │ ├── FreebaseInfo.java │ ├── FreebaseSearch.java │ ├── FreebaseTypeLookup.java │ ├── FreebaseValueEvaluator.java │ ├── LambdaCalculusConverter.java │ ├── Lexicon.java │ ├── LexiconFn.java │ ├── SparqlExecutor.java │ ├── SparqlExpr.java │ ├── Stemmer.java │ ├── TextToTextMatcher.java │ ├── UnaryLexicon.java │ ├── Utils.java │ ├── index │ │ ├── FbEntityIndexer.java │ │ ├── FbEntitySearcher.java │ │ └── FbIndexField.java │ ├── lexicons │ │ ├── EntrySource.java │ │ ├── ExtremeValueWrapper.java │ │ ├── LexicalEntry.java │ │ ├── TokenLevelMatchFeatures.java │ │ └── normalizers │ │ │ ├── BinaryNormalizer.java │ │ │ ├── EntryNormalizer.java │ │ │ ├── IdentityNormalizer.java │ │ │ └── PrepDropNormalizer.java │ ├── test │ │ ├── FbFormulasTest.java │ │ ├── FreebaseInfoTest.java │ │ ├── FreebaseSemTypeTest.java │ │ ├── FreebaseTypeInferenceTest.java │ │ ├── LexiconTest.java │ │ ├── PrepDropNormalizerTest.java │ │ ├── SparqlExecutorTest.java │ │ ├── StemmerTest.java │ │ └── TokenMatchTest.java │ └── utils │ │ ├── CollectionUtils.java │ │ ├── DoubleContainer.java │ │ ├── FileUtils.java │ │ ├── FormatConverter.java │ │ ├── FreebaseUtils.java │ │ ├── LinkedExtractionFileUtils.java │ │ ├── MathUtils.java │ │ ├── SemparseLogTools.java │ │ ├── ShortContainer.java │ │ ├── WnExpander.java │ │ └── WordNet.java │ ├── geo880 │ ├── Geo880TypeLookup.java │ └── Geo880ValueEvaluator.java │ ├── interactive │ ├── ApplyFn.java │ ├── BadInteractionException.java │ ├── BlockFn.java │ ├── CitationTracker.java │ ├── DALAnalyzer.java │ ├── DALExecutor.java │ ├── DALFeatureComputer.java │ ├── DefinitionAligner.java │ ├── DefinitionTree.java │ ├── GrammarInducer.java │ ├── InteractiveBeamParser.java │ ├── InteractiveMaster.java │ ├── InteractiveServer.java │ ├── InteractiveUtils.java │ ├── Item.java │ ├── JsonFn.java │ ├── JsonInitFn.java │ ├── JsonMaster.java │ ├── JsonSchema.java │ ├── JsonUtils.java │ ├── JsonlDatasetReader.java │ ├── QueryStats.java │ ├── SimulationAnalyzer.java │ ├── Simulator.java │ ├── SubFn.java │ ├── SymbolTable.java │ ├── UtilsFn.java │ ├── VegaEngine.java │ ├── VegaExecutor.java │ ├── VegaFeatureComputer.java │ ├── VegaFn.java │ ├── VegaJsonContextValue.java │ ├── VegaLitePathMatcher.java │ ├── VegaRandomizer.java │ ├── VegaResources.java │ ├── VegaValueEvaluator.java │ ├── World.java │ ├── test │ │ ├── DALExecutorTest.java │ │ ├── FloatingParsingTest.java │ │ ├── GrammarInducerTest.java │ │ ├── JsonSchemaTest.java │ │ └── SymbolTest.java │ └── voxelurn │ │ ├── Color.java │ │ ├── Direction.java │ │ ├── Voxel.java │ │ └── VoxelWorld.java │ ├── overnight │ ├── Aligner.java │ ├── ConvertTargetValueFromListToString.java │ ├── CreateBerkeleyAlignerInputFromLispTree.java │ ├── GenerationMain.java │ ├── OvernightDerivationPruningComputer.java │ ├── OvernightFeatureComputer.java │ ├── PPDBModel.java │ ├── SimpleWorld.java │ └── test │ │ └── SimpleWorldTest.java │ ├── tables │ ├── DenotationTypeInference.java │ ├── InfiniteListValue.java │ ├── ScopedFormula.java │ ├── ScopedValue.java │ ├── StringNormalizationUtils.java │ ├── TableCell.java │ ├── TableCellProperties.java │ ├── TableColumn.java │ ├── TableDerivationPruningComputer.java │ ├── TableFormulaEvaluator.java │ ├── TableKnowledgeGraph.java │ ├── TableRow.java │ ├── TableTypeLookup.java │ ├── TableTypeSystem.java │ ├── TableValueEvaluator.java │ ├── TableValuePreprocessor.java │ ├── alter │ │ ├── AggregatedTurkData.java │ │ ├── AlteredTablesExecutor.java │ │ ├── BatchTableAlterer.java │ │ ├── CachedSubsetChooser.java │ │ ├── DenotationData.java │ │ ├── EntropySubsetChooser.java │ │ ├── PureSubsetChooser.java │ │ ├── Subset.java │ │ ├── SubsetChooser.java │ │ ├── TableAlterer.java │ │ ├── TableAltererCache.java │ │ ├── TurkEquivalentClassInfo.java │ │ └── ValueCanonicalizer.java │ ├── baseline │ │ ├── TableBaselineFeatureComputer.java │ │ └── TableBaselineParser.java │ ├── dpd │ │ ├── DPDErrorValue.java │ │ └── DPDParser.java │ ├── features │ │ ├── HeadwordInfo.java │ │ ├── PhraseDenotationFeatureComputer.java │ │ ├── PhraseInfo.java │ │ ├── PhrasePredicateFeatureComputer.java │ │ └── PredicateInfo.java │ ├── grow │ │ ├── ApplyFn.java │ │ ├── BeginGrowFn.java │ │ └── EndGrowFn.java │ ├── lambdadcs │ │ ├── BinaryDenotation.java │ │ ├── BinaryTypeHint.java │ │ ├── Binarylike.java │ │ ├── DenotationUtils.java │ │ ├── ExecutorCache.java │ │ ├── ExplicitPairList.java │ │ ├── ExplicitUnaryDenotation.java │ │ ├── InfiniteUnaryDenotation.java │ │ ├── LambdaDCSException.java │ │ ├── LambdaDCSExecutor.java │ │ ├── LambdaDCSExecutorTest.java │ │ ├── MappingDenotation.java │ │ ├── PairList.java │ │ ├── PredicatePairList.java │ │ ├── TypeHint.java │ │ ├── UnaryDenotation.java │ │ ├── Unarylike.java │ │ └── UnarylikeTypeHint.java │ ├── match │ │ ├── ClosedClassFn.java │ │ ├── EditDistanceFuzzyMatcher.java │ │ ├── FuzzyMatchCache.java │ │ ├── FuzzyMatcher.java │ │ └── OriginalMatcher.java │ ├── serialize │ │ ├── DumpFilterer.java │ │ ├── LazyLoadedExampleList.java │ │ ├── SerializedDataset.java │ │ ├── SerializedDumper.java │ │ ├── SerializedLoader.java │ │ ├── SerializedParser.java │ │ ├── TSVGenerator.java │ │ ├── TableReader.java │ │ ├── TableWriter.java │ │ ├── TaggedDatasetGenerator.java │ │ ├── TaggedFuzzyGenerator.java │ │ └── TaggedTableGenerator.java │ └── test │ │ ├── CustomExample.java │ │ ├── DPDParserChecker.java │ │ ├── DPDParserCheckerProcessor.java │ │ ├── TableFormulaCanonicalizer.java │ │ └── TableStatsComputer.java │ └── test │ ├── DerivationStreamTest.java │ ├── DerivationTest.java │ ├── FormulaTest.java │ ├── GrammarTest.java │ ├── GrammarValidityTest.java │ ├── JavaExecutorTest.java │ ├── JsonTest.java │ ├── L1RegularizationTest.java │ ├── ParserTest.java │ ├── SemTypeTest.java │ ├── SemanticFnTest.java │ ├── SystemSanityTest.java │ ├── TestUtils.java │ ├── TypeInferenceTest.java │ └── VegaLitePathMatcherTest.java ├── tables ├── README.md ├── alignment │ ├── .gitignore │ ├── commands.sh │ ├── find-average.py │ ├── find-top.py │ ├── get-header-frequencies.py │ ├── get-phrase-predicate.py │ └── ibm-align.py ├── codalab-schema ├── dump-parsers │ ├── convert-to-postfix.py │ ├── convert-to-prefix.py │ ├── count-sizes.py │ ├── derivation-lisptree-to-tsv.py │ ├── generate-train-and-test.py │ ├── lisptree.py │ ├── print-formulas.py │ ├── split.py │ └── write-simple-s2s-dataset.py ├── grammars │ ├── base-predicates.grammar │ ├── combined.grammar │ ├── fuzzy-dump.grammar │ ├── grow.grammar │ ├── restrict.grammar │ └── simple.grammar ├── log-parsers │ ├── count-predicates.py │ ├── get-base-predicates.py │ ├── get-error-analysis.py │ ├── get-first-trues.py │ ├── get-oracles.py │ ├── get-predictions.py │ ├── get-trues.py │ ├── plot-beam-vs-dpd.py │ └── plot-num-denotations.py ├── mturk-www │ ├── table-alter │ │ ├── cookies.js │ │ ├── cookies.min.js │ │ ├── data │ │ │ └── 501-alter │ │ │ │ └── 0.js │ │ ├── index.html │ │ ├── index.min.html │ │ ├── jquery.min.js │ │ ├── main.js │ │ ├── main.min.js │ │ ├── style.css │ │ ├── style.min.css │ │ └── sync │ ├── trivia-answer-multi │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── main.js │ │ └── style.css │ ├── trivia-answer │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── main.js │ │ └── style.css │ └── trivia-question │ │ ├── img │ │ └── shuffle.png │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── main.js │ │ ├── style.css │ │ ├── templates.js │ │ ├── view.html │ │ └── view.js ├── package-dataset │ ├── README-internal.md │ └── README.md ├── stats-computer │ └── word-shape-counter.py ├── table-alter │ ├── checker-summarize.py │ ├── concat-cache.py │ ├── count-num-classes.py │ ├── fictitious-dump-lf.py │ ├── fictitious-experiments-turk.py │ ├── fictitious-experiments.py │ ├── find-class-sizes.py │ ├── generate-json.py │ ├── old-fictitious-experiments.py │ ├── parse-turk-info.py │ └── subtract-agreed.py ├── toy-examples │ ├── 203-839.tsv │ ├── 204-495.tsv │ └── nikos_machlas.csv ├── view ├── wikipedia-scripts │ ├── README │ ├── convert-all-to-html │ ├── convert-to-html │ ├── decode-html │ ├── display.css │ ├── display.html │ ├── display.js │ ├── download-wikipedia-pages.py │ ├── dump.py │ ├── extract.py │ ├── find-good-tables.py │ ├── format.py │ ├── get-wikipedia-pages.py │ ├── process-exemplars.sh │ ├── table-to-csv.py │ └── weblib │ │ ├── AsciiDammit.py │ │ ├── __init__.py │ │ ├── blacklist.py │ │ ├── clean_html.py │ │ ├── external │ │ ├── .gitignore │ │ └── README │ │ ├── table.py │ │ ├── tee.py │ │ └── web.py └── x ├── testng.xml └── unittest-files ├── README ├── binaryInfoStringAndAlignment.txt └── unaryInfoStringAndAlignment.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/.gitignore -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/README.md -------------------------------------------------------------------------------- /TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/TUTORIAL.md -------------------------------------------------------------------------------- /cl_worksheet.txt: -------------------------------------------------------------------------------- 1 | nlp::sempre-plot 2 | -------------------------------------------------------------------------------- /data/tutorial-arithmetic.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/data/tutorial-arithmetic.examples -------------------------------------------------------------------------------- /data/tutorial-arithmetic.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/data/tutorial-arithmetic.grammar -------------------------------------------------------------------------------- /demo-www/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/demo-www/bullet.png -------------------------------------------------------------------------------- /demo-www/index.html: -------------------------------------------------------------------------------- 1 | Hello there. 2 | -------------------------------------------------------------------------------- /demo-www/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/demo-www/main.css -------------------------------------------------------------------------------- /demo-www/main.js: -------------------------------------------------------------------------------- 1 | function submit() { 2 | } 3 | -------------------------------------------------------------------------------- /freebase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/README.md -------------------------------------------------------------------------------- /freebase/data/demo1.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/demo1.grammar -------------------------------------------------------------------------------- /freebase/data/emnlp2013.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/emnlp2013.grammar -------------------------------------------------------------------------------- /freebase/data/free917.test.examples.canonicalized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/free917.test.examples.canonicalized.json -------------------------------------------------------------------------------- /freebase/data/free917.train.examples.canonicalized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/free917.train.examples.canonicalized.json -------------------------------------------------------------------------------- /freebase/data/tutorial-freebase.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/tutorial-freebase.grammar -------------------------------------------------------------------------------- /freebase/data/tutorial-freebase.lexicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/tutorial-freebase.lexicon -------------------------------------------------------------------------------- /freebase/data/tutorial.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/tutorial.ttl -------------------------------------------------------------------------------- /freebase/data/unittest-learn-ccg.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/unittest-learn-ccg.grammar -------------------------------------------------------------------------------- /freebase/data/unittest-learn.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/unittest-learn.examples -------------------------------------------------------------------------------- /freebase/data/unittest-learn.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/data/unittest-learn.grammar -------------------------------------------------------------------------------- /freebase/scripts/extract-freebase-schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/scripts/extract-freebase-schema.rb -------------------------------------------------------------------------------- /freebase/scripts/fbshell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/scripts/fbshell.rb -------------------------------------------------------------------------------- /freebase/scripts/virtuoso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/freebase/scripts/virtuoso -------------------------------------------------------------------------------- /interactive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/README.md -------------------------------------------------------------------------------- /interactive/analyze_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/analyze_data.ipynb -------------------------------------------------------------------------------- /interactive/community-server/install-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/community-server/install-deps.py -------------------------------------------------------------------------------- /interactive/community-server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/community-server/requirements.txt -------------------------------------------------------------------------------- /interactive/community-server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/community-server/server.py -------------------------------------------------------------------------------- /interactive/csscolors.lexicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/csscolors.lexicon -------------------------------------------------------------------------------- /interactive/dal.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/dal.grammar -------------------------------------------------------------------------------- /interactive/datavis.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/datavis.grammar -------------------------------------------------------------------------------- /interactive/definitions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/definitions.lisp -------------------------------------------------------------------------------- /interactive/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/experiments.py -------------------------------------------------------------------------------- /interactive/plotting-client.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/plotting-client.ipynb -------------------------------------------------------------------------------- /interactive/queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/README.md -------------------------------------------------------------------------------- /interactive/queries/freebuild.def.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/freebuild.def.json.gz -------------------------------------------------------------------------------- /interactive/queries/freebuild.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/freebuild.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/freebuild1-0121.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/freebuild1-0121.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/freebuild2-0126.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/freebuild2-0126.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/freebuild2-0127.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/freebuild2-0127.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/freebuildbig-0206.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/freebuildbig-0206.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/qualifier1-0118.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/qualifier1-0118.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/qualifier2-0129.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/qualifier2-0129.json.gz -------------------------------------------------------------------------------- /interactive/queries/rawqueries/qualifier3-0201.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/rawqueries/qualifier3-0201.json.gz -------------------------------------------------------------------------------- /interactive/queries/sidaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/queries/sidaw.json -------------------------------------------------------------------------------- /interactive/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/run -------------------------------------------------------------------------------- /interactive/subdal.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/subdal.grammar -------------------------------------------------------------------------------- /interactive/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/testng.xml -------------------------------------------------------------------------------- /interactive/voxelurn.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/interactive/voxelurn.grammar -------------------------------------------------------------------------------- /overnight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/README.md -------------------------------------------------------------------------------- /overnight/basketball.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/basketball.grammar -------------------------------------------------------------------------------- /overnight/blocks.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/blocks.grammar -------------------------------------------------------------------------------- /overnight/calendar-canonical.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/calendar-canonical.examples -------------------------------------------------------------------------------- /overnight/calendar.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/calendar.grammar -------------------------------------------------------------------------------- /overnight/calendar.turk.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/calendar.turk.examples -------------------------------------------------------------------------------- /overnight/general.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/general.grammar -------------------------------------------------------------------------------- /overnight/geo880-unittest.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/geo880-unittest.examples -------------------------------------------------------------------------------- /overnight/geo880.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/geo880.grammar -------------------------------------------------------------------------------- /overnight/housing-unittest.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/housing-unittest.examples -------------------------------------------------------------------------------- /overnight/housing.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/housing.grammar -------------------------------------------------------------------------------- /overnight/null.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/null.examples -------------------------------------------------------------------------------- /overnight/publications.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/publications.grammar -------------------------------------------------------------------------------- /overnight/recipes.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/recipes.grammar -------------------------------------------------------------------------------- /overnight/restaurants-unittest.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/restaurants-unittest.examples -------------------------------------------------------------------------------- /overnight/restaurants.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/restaurants.grammar -------------------------------------------------------------------------------- /overnight/socialnetwork-unittest.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/socialnetwork-unittest.examples -------------------------------------------------------------------------------- /overnight/socialnetwork.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/socialnetwork.grammar -------------------------------------------------------------------------------- /overnight/templates.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/templates.grammar -------------------------------------------------------------------------------- /overnight/unittest.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/unittest.db -------------------------------------------------------------------------------- /overnight/unittest.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/overnight/unittest.grammar -------------------------------------------------------------------------------- /plot/CanonicalUtteranceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/CanonicalUtteranceGenerator.java -------------------------------------------------------------------------------- /plot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/README.md -------------------------------------------------------------------------------- /plot/analyze-specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/analyze-specs.py -------------------------------------------------------------------------------- /plot/cl_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/cl_run.sh -------------------------------------------------------------------------------- /plot/css-color-names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/css-color-names.json -------------------------------------------------------------------------------- /plot/differ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/differ.py -------------------------------------------------------------------------------- /plot/error_analysis_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/error_analysis_html.py -------------------------------------------------------------------------------- /plot/generate_lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/generate_lexicon.py -------------------------------------------------------------------------------- /plot/get_log_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/get_log_counts.py -------------------------------------------------------------------------------- /plot/initial-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/initial-templates.json -------------------------------------------------------------------------------- /plot/js-lib/nashorn-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/js-lib/nashorn-polyfill.js -------------------------------------------------------------------------------- /plot/js-lib/synchronous-promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/js-lib/synchronous-promise.js -------------------------------------------------------------------------------- /plot/js-lib/vega-lite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/js-lib/vega-lite.js -------------------------------------------------------------------------------- /plot/js-lib/vega.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/js-lib/vega.js -------------------------------------------------------------------------------- /plot/makedir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/makedir.sh -------------------------------------------------------------------------------- /plot/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/params.txt -------------------------------------------------------------------------------- /plot/plot.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/plot.grammar -------------------------------------------------------------------------------- /plot/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/run -------------------------------------------------------------------------------- /plot/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/testng.xml -------------------------------------------------------------------------------- /plot/vega-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/vega-lite.json -------------------------------------------------------------------------------- /plot/vega-lite.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/vega-lite.version -------------------------------------------------------------------------------- /plot/vega_lite_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/vega_lite_paths.py -------------------------------------------------------------------------------- /plot/visualize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/README.md -------------------------------------------------------------------------------- /plot/visualize/bundle/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/bundle/bundle.js -------------------------------------------------------------------------------- /plot/visualize/bundle/edgebundle2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/bundle/edgebundle2.html -------------------------------------------------------------------------------- /plot/visualize/bundle/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/bundle/packages.js -------------------------------------------------------------------------------- /plot/visualize/bundle/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/bundle/style.css -------------------------------------------------------------------------------- /plot/visualize/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/collapsible.html -------------------------------------------------------------------------------- /plot/visualize/d3/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/d3/d3.js -------------------------------------------------------------------------------- /plot/visualize/d3/d3.layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/d3/d3.layout.js -------------------------------------------------------------------------------- /plot/visualize/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/data/.gitignore -------------------------------------------------------------------------------- /plot/visualize/dendrogram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/dendrogram.html -------------------------------------------------------------------------------- /plot/visualize/dndTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/dndTree.js -------------------------------------------------------------------------------- /plot/visualize/edgebundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/edgebundle.html -------------------------------------------------------------------------------- /plot/visualize/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/graph.html -------------------------------------------------------------------------------- /plot/visualize/radial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/radial.html -------------------------------------------------------------------------------- /plot/visualize/tidy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/plot/visualize/tidy.html -------------------------------------------------------------------------------- /pull-dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/pull-dependencies -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/run -------------------------------------------------------------------------------- /scripts/agenda-stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/agenda-stats -------------------------------------------------------------------------------- /scripts/checkstyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/checkstyle.sh -------------------------------------------------------------------------------- /scripts/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/checkstyle.xml -------------------------------------------------------------------------------- /scripts/create-geo-simple-lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/create-geo-simple-lexicon.py -------------------------------------------------------------------------------- /scripts/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/evaluation.py -------------------------------------------------------------------------------- /scripts/extract-module-classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/extract-module-classes.rb -------------------------------------------------------------------------------- /scripts/filterGeneratedNegations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/filterGeneratedNegations.py -------------------------------------------------------------------------------- /scripts/find-first-pred-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/find-first-pred-diff.sh -------------------------------------------------------------------------------- /scripts/find-hard-coded-paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/find-hard-coded-paths.rb -------------------------------------------------------------------------------- /scripts/fix-checkstyle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/fix-checkstyle.rb -------------------------------------------------------------------------------- /scripts/generate-prediction-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/generate-prediction-file.sh -------------------------------------------------------------------------------- /scripts/tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/tunnel -------------------------------------------------------------------------------- /scripts/verify-code-loop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/scripts/verify-code-loop.rb -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/AbstractReinforcementParserState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/AbstractReinforcementParserState.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ActionFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ActionFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/AggregateFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/AggregateFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ArithmeticFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ArithmeticFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/AtomicSemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/AtomicSemType.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/BadFormulaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/BadFormulaException.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/BeamParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/BeamParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/BooleanValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/BooleanValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/BoundedPriorityQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/BoundedPriorityQueue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Builder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Builder.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/CallFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/CallFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/CallTypeInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/CallTypeInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/CanonicalNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/CanonicalNames.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/CatSizeBound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/CatSizeBound.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ChartParserState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ChartParserState.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ChildDerivationsGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ChildDerivationsGroup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/CoarseParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/CoarseParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Colorizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Colorizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ConcatFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ConcatFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ConstantFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ConstantFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ContextFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ContextFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ContextValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ContextValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Dataset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Dataset.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DateFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DateFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DateRangeFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DateRangeFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DateValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DateValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DefaultDerivationPruningComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DefaultDerivationPruningComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DerivOpCountFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DerivOpCountFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Derivation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Derivation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DerivationPruner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DerivationPruner.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DerivationPruningComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DerivationPruningComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DerivationStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DerivationStream.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/DescriptionValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/DescriptionValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ErrorValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ErrorValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ExactValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ExactValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Example.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ExampleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ExampleUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Executor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Executor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FeatureExtractor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FeatureExtractor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FeatureMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FeatureMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FeatureVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FeatureVector.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FilterNerSpanFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FilterNerSpanFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FilterPosTagFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FilterPosTagFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FilterSpanLengthFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FilterSpanLengthFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FilterTokenFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FilterTokenFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FloatingFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FloatingFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FloatingParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FloatingParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FloatingRuleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FloatingRuleUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Formula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Formula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FormulaMatchExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FormulaMatchExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Formulas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Formulas.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FuncSemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FuncSemType.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FuzzyMatchFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FuzzyMatchFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/FuzzyMatchable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/FuzzyMatchable.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Grammar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Grammar.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/HasScore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/HasScore.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/IdentityFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/IdentityFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/JavaExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/JavaExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/JoinFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/JoinFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/JoinFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/JoinFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Json.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Json.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/JsonValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/JsonValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/KnowledgeGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/KnowledgeGraph.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/LambdaFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/LambdaFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/LanguageAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/LanguageAnalyzer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/LanguageInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/LanguageInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Learner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Learner.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/LearnerParallelProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/LearnerParallelProcessor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ListValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ListValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Main.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/MarkFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/MarkFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Master.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Master.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/MergeFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/MergeFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/MergeFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/MergeFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/MixParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/MixParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/MultipleDerivationStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/MultipleDerivationStream.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NaiveKnowledgeGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NaiveKnowledgeGraph.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NameValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NameValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NotFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NotFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NullExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NullExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NullTypeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NullTypeLookup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NumberFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NumberFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/NumberValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/NumberValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/PairListValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/PairListValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Params.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Params.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Parser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Parser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ParserAgenda.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ParserAgenda.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ParserState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ParserState.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/PrimitiveFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/PrimitiveFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ReinforcementParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ReinforcementParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ReinforcementUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ReinforcementUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ReverseFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ReverseFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Rule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Rule.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/RuleSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/RuleSource.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SelectFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SelectFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SemType.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SemTypeHierarchy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SemTypeHierarchy.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SemanticFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SemanticFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SempreUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SempreUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Server.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Session.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SimpleAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SimpleAnalyzer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SimpleLexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SimpleLexicon.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SimpleLexiconFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SimpleLexiconFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SingleDerivationStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SingleDerivationStream.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/StringValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/StringValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/SuperlativeFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/SuperlativeFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TableValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TableValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TargetValuePreprocessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TargetValuePreprocessor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TimeValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TimeValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TopSemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TopSemType.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Trie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Trie.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TypeInference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TypeInference.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/TypeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/TypeLookup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/UnionSemType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/UnionSemType.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/UriValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/UriValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Value.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Value.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/ValueFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/ValueFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/Values.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/Values.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/VariableFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/VariableFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/FileStringCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/FileStringCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/LruCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/LruCallback.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/LruMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/LruMap.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/RemoteStringCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/RemoteStringCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/StringCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/StringCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/StringCacheServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/StringCacheServer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/StringCacheUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/StringCacheUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/cache/test/StringCacheTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/cache/test/StringCacheTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/corenlp/CoreNLPAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/corenlp/CoreNLPAnalyzer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/corenlp/test/CoreNLPSemanticFnTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/corenlp/test/CoreNLPSemanticFnTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/BinaryLexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/BinaryLexicon.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/BridgeFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/BridgeFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/BuildCanonicalIdMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/BuildCanonicalIdMap.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/BuildTypesMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/BuildTypesMap.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/CanonicalizeExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/CanonicalizeExamples.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/CanonicalizeIds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/CanonicalizeIds.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/EntityLexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/EntityLexicon.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/ExecuteExamples.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/ExecuteExamples.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FbFormulasInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FbFormulasInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FilterFreebase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FilterFreebase.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/Free917Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/Free917Converter.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FreebaseInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FreebaseInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FreebaseSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FreebaseSearch.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FreebaseTypeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FreebaseTypeLookup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/FreebaseValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/FreebaseValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/LambdaCalculusConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/LambdaCalculusConverter.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/Lexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/Lexicon.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/LexiconFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/LexiconFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/SparqlExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/SparqlExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/SparqlExpr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/SparqlExpr.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/Stemmer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/Stemmer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/TextToTextMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/TextToTextMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/UnaryLexicon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/UnaryLexicon.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/Utils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/index/FbEntityIndexer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/index/FbEntityIndexer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/index/FbEntitySearcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/index/FbEntitySearcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/index/FbIndexField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/index/FbIndexField.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/EntrySource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/EntrySource.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/ExtremeValueWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/ExtremeValueWrapper.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/LexicalEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/LexicalEntry.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/TokenLevelMatchFeatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/TokenLevelMatchFeatures.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/BinaryNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/BinaryNormalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/EntryNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/EntryNormalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/IdentityNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/IdentityNormalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/PrepDropNormalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/lexicons/normalizers/PrepDropNormalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/FbFormulasTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/FbFormulasTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/FreebaseInfoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/FreebaseInfoTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/FreebaseSemTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/FreebaseSemTypeTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/FreebaseTypeInferenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/FreebaseTypeInferenceTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/LexiconTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/LexiconTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/PrepDropNormalizerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/PrepDropNormalizerTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/SparqlExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/SparqlExecutorTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/StemmerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/StemmerTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/test/TokenMatchTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/test/TokenMatchTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/CollectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/CollectionUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/DoubleContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/DoubleContainer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/FileUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/FormatConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/FormatConverter.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/FreebaseUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/FreebaseUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/LinkedExtractionFileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/LinkedExtractionFileUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/MathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/MathUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/SemparseLogTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/SemparseLogTools.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/ShortContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/ShortContainer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/WnExpander.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/WnExpander.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/freebase/utils/WordNet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/freebase/utils/WordNet.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/geo880/Geo880TypeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/geo880/Geo880TypeLookup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/geo880/Geo880ValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/geo880/Geo880ValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/ApplyFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/ApplyFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/BadInteractionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/BadInteractionException.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/BlockFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/BlockFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/CitationTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/CitationTracker.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/DALAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/DALAnalyzer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/DALExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/DALExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/DALFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/DALFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/DefinitionAligner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/DefinitionAligner.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/DefinitionTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/DefinitionTree.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/GrammarInducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/GrammarInducer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/InteractiveBeamParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/InteractiveBeamParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/InteractiveMaster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/InteractiveMaster.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/InteractiveServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/InteractiveServer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/InteractiveUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/InteractiveUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/Item.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonInitFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonInitFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonMaster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonMaster.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonSchema.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/JsonlDatasetReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/JsonlDatasetReader.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/QueryStats.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/QueryStats.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/SimulationAnalyzer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/SimulationAnalyzer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/Simulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/Simulator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/SubFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/SubFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/SymbolTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/SymbolTable.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/UtilsFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/UtilsFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaEngine.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaJsonContextValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaJsonContextValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaLitePathMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaLitePathMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaRandomizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaRandomizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaResources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaResources.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/VegaValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/VegaValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/World.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/World.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/test/DALExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/test/DALExecutorTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/test/FloatingParsingTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/test/FloatingParsingTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/test/GrammarInducerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/test/GrammarInducerTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/test/JsonSchemaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/test/JsonSchemaTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/test/SymbolTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/test/SymbolTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/voxelurn/Color.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/voxelurn/Color.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/voxelurn/Direction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/voxelurn/Direction.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/voxelurn/Voxel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/voxelurn/Voxel.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/interactive/voxelurn/VoxelWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/interactive/voxelurn/VoxelWorld.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/Aligner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/Aligner.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/ConvertTargetValueFromListToString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/ConvertTargetValueFromListToString.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/CreateBerkeleyAlignerInputFromLispTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/CreateBerkeleyAlignerInputFromLispTree.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/GenerationMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/GenerationMain.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/OvernightDerivationPruningComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/OvernightDerivationPruningComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/OvernightFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/OvernightFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/PPDBModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/PPDBModel.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/SimpleWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/SimpleWorld.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/overnight/test/SimpleWorldTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/overnight/test/SimpleWorldTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/DenotationTypeInference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/DenotationTypeInference.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/InfiniteListValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/InfiniteListValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/ScopedFormula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/ScopedFormula.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/ScopedValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/ScopedValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/StringNormalizationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/StringNormalizationUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableCell.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableCellProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableCellProperties.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableColumn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableColumn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableDerivationPruningComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableDerivationPruningComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableFormulaEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableFormulaEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableKnowledgeGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableKnowledgeGraph.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableRow.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableTypeLookup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableTypeLookup.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableTypeSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableTypeSystem.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableValueEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableValueEvaluator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/TableValuePreprocessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/TableValuePreprocessor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/AggregatedTurkData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/AggregatedTurkData.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/AlteredTablesExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/AlteredTablesExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/BatchTableAlterer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/BatchTableAlterer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/CachedSubsetChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/CachedSubsetChooser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/DenotationData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/DenotationData.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/EntropySubsetChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/EntropySubsetChooser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/PureSubsetChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/PureSubsetChooser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/Subset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/Subset.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/SubsetChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/SubsetChooser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/TableAlterer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/TableAlterer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/TableAltererCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/TableAltererCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/TurkEquivalentClassInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/TurkEquivalentClassInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/alter/ValueCanonicalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/alter/ValueCanonicalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/baseline/TableBaselineFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/baseline/TableBaselineFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/baseline/TableBaselineParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/baseline/TableBaselineParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/dpd/DPDErrorValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/dpd/DPDErrorValue.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/dpd/DPDParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/dpd/DPDParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/features/HeadwordInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/features/HeadwordInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/features/PhraseDenotationFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/features/PhraseDenotationFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/features/PhraseInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/features/PhraseInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/features/PhrasePredicateFeatureComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/features/PhrasePredicateFeatureComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/features/PredicateInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/features/PredicateInfo.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/grow/ApplyFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/grow/ApplyFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/grow/BeginGrowFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/grow/BeginGrowFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/grow/EndGrowFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/grow/EndGrowFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/BinaryDenotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/BinaryDenotation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/BinaryTypeHint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/BinaryTypeHint.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/Binarylike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/Binarylike.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/DenotationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/DenotationUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/ExecutorCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/ExecutorCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/ExplicitPairList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/ExplicitPairList.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/ExplicitUnaryDenotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/ExplicitUnaryDenotation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/InfiniteUnaryDenotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/InfiniteUnaryDenotation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSException.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSExecutor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/LambdaDCSExecutorTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/MappingDenotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/MappingDenotation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/PairList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/PairList.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/PredicatePairList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/PredicatePairList.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/TypeHint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/TypeHint.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/UnaryDenotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/UnaryDenotation.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/Unarylike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/Unarylike.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/lambdadcs/UnarylikeTypeHint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/lambdadcs/UnarylikeTypeHint.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/match/ClosedClassFn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/match/ClosedClassFn.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/match/EditDistanceFuzzyMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/match/EditDistanceFuzzyMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/match/FuzzyMatchCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/match/FuzzyMatchCache.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/match/FuzzyMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/match/FuzzyMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/match/OriginalMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/match/OriginalMatcher.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/DumpFilterer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/DumpFilterer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/LazyLoadedExampleList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/LazyLoadedExampleList.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/SerializedDataset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/SerializedDataset.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/SerializedDumper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/SerializedDumper.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/SerializedLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/SerializedLoader.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/SerializedParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/SerializedParser.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TSVGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TSVGenerator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TableReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TableReader.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TableWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TableWriter.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TaggedDatasetGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TaggedDatasetGenerator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TaggedFuzzyGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TaggedFuzzyGenerator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/serialize/TaggedTableGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/serialize/TaggedTableGenerator.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/test/CustomExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/test/CustomExample.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/test/DPDParserChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/test/DPDParserChecker.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/test/DPDParserCheckerProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/test/DPDParserCheckerProcessor.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/test/TableFormulaCanonicalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/test/TableFormulaCanonicalizer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/tables/test/TableStatsComputer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/tables/test/TableStatsComputer.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/DerivationStreamTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/DerivationStreamTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/DerivationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/DerivationTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/FormulaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/FormulaTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/GrammarTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/GrammarTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/GrammarValidityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/GrammarValidityTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/JavaExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/JavaExecutorTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/JsonTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/JsonTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/L1RegularizationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/L1RegularizationTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/ParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/ParserTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/SemTypeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/SemTypeTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/SemanticFnTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/SemanticFnTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/SystemSanityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/SystemSanityTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/TestUtils.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/TypeInferenceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/TypeInferenceTest.java -------------------------------------------------------------------------------- /src/edu/stanford/nlp/sempre/test/VegaLitePathMatcherTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/src/edu/stanford/nlp/sempre/test/VegaLitePathMatcherTest.java -------------------------------------------------------------------------------- /tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/README.md -------------------------------------------------------------------------------- /tables/alignment/.gitignore: -------------------------------------------------------------------------------- 1 | phrase-predicate 2 | out 3 | -------------------------------------------------------------------------------- /tables/alignment/commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/commands.sh -------------------------------------------------------------------------------- /tables/alignment/find-average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/find-average.py -------------------------------------------------------------------------------- /tables/alignment/find-top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/find-top.py -------------------------------------------------------------------------------- /tables/alignment/get-header-frequencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/get-header-frequencies.py -------------------------------------------------------------------------------- /tables/alignment/get-phrase-predicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/get-phrase-predicate.py -------------------------------------------------------------------------------- /tables/alignment/ibm-align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/alignment/ibm-align.py -------------------------------------------------------------------------------- /tables/codalab-schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/codalab-schema -------------------------------------------------------------------------------- /tables/dump-parsers/convert-to-postfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/convert-to-postfix.py -------------------------------------------------------------------------------- /tables/dump-parsers/convert-to-prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/convert-to-prefix.py -------------------------------------------------------------------------------- /tables/dump-parsers/count-sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/count-sizes.py -------------------------------------------------------------------------------- /tables/dump-parsers/derivation-lisptree-to-tsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/derivation-lisptree-to-tsv.py -------------------------------------------------------------------------------- /tables/dump-parsers/generate-train-and-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/generate-train-and-test.py -------------------------------------------------------------------------------- /tables/dump-parsers/lisptree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/lisptree.py -------------------------------------------------------------------------------- /tables/dump-parsers/print-formulas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/print-formulas.py -------------------------------------------------------------------------------- /tables/dump-parsers/split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/split.py -------------------------------------------------------------------------------- /tables/dump-parsers/write-simple-s2s-dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/dump-parsers/write-simple-s2s-dataset.py -------------------------------------------------------------------------------- /tables/grammars/base-predicates.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/base-predicates.grammar -------------------------------------------------------------------------------- /tables/grammars/combined.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/combined.grammar -------------------------------------------------------------------------------- /tables/grammars/fuzzy-dump.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/fuzzy-dump.grammar -------------------------------------------------------------------------------- /tables/grammars/grow.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/grow.grammar -------------------------------------------------------------------------------- /tables/grammars/restrict.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/restrict.grammar -------------------------------------------------------------------------------- /tables/grammars/simple.grammar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/grammars/simple.grammar -------------------------------------------------------------------------------- /tables/log-parsers/count-predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/count-predicates.py -------------------------------------------------------------------------------- /tables/log-parsers/get-base-predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-base-predicates.py -------------------------------------------------------------------------------- /tables/log-parsers/get-error-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-error-analysis.py -------------------------------------------------------------------------------- /tables/log-parsers/get-first-trues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-first-trues.py -------------------------------------------------------------------------------- /tables/log-parsers/get-oracles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-oracles.py -------------------------------------------------------------------------------- /tables/log-parsers/get-predictions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-predictions.py -------------------------------------------------------------------------------- /tables/log-parsers/get-trues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/get-trues.py -------------------------------------------------------------------------------- /tables/log-parsers/plot-beam-vs-dpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/plot-beam-vs-dpd.py -------------------------------------------------------------------------------- /tables/log-parsers/plot-num-denotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/log-parsers/plot-num-denotations.py -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/cookies.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/cookies.min.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/data/501-alter/0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/data/501-alter/0.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/index.html -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/index.min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/index.min.html -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/jquery.min.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/main.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/main.min.js -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/style.css -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/style.min.css -------------------------------------------------------------------------------- /tables/mturk-www/table-alter/sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/table-alter/sync -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer-multi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer-multi/index.html -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer-multi/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer-multi/jquery.min.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer-multi/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer-multi/main.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer-multi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer-multi/style.css -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer/index.html -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer/jquery.min.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer/main.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-answer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-answer/style.css -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/img/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/img/shuffle.png -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/index.html -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/jquery.min.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/main.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/style.css -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/templates.js -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/view.html -------------------------------------------------------------------------------- /tables/mturk-www/trivia-question/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/mturk-www/trivia-question/view.js -------------------------------------------------------------------------------- /tables/package-dataset/README-internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/package-dataset/README-internal.md -------------------------------------------------------------------------------- /tables/package-dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/package-dataset/README.md -------------------------------------------------------------------------------- /tables/stats-computer/word-shape-counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/stats-computer/word-shape-counter.py -------------------------------------------------------------------------------- /tables/table-alter/checker-summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/checker-summarize.py -------------------------------------------------------------------------------- /tables/table-alter/concat-cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/concat-cache.py -------------------------------------------------------------------------------- /tables/table-alter/count-num-classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/count-num-classes.py -------------------------------------------------------------------------------- /tables/table-alter/fictitious-dump-lf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/fictitious-dump-lf.py -------------------------------------------------------------------------------- /tables/table-alter/fictitious-experiments-turk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/fictitious-experiments-turk.py -------------------------------------------------------------------------------- /tables/table-alter/fictitious-experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/fictitious-experiments.py -------------------------------------------------------------------------------- /tables/table-alter/find-class-sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/find-class-sizes.py -------------------------------------------------------------------------------- /tables/table-alter/generate-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/generate-json.py -------------------------------------------------------------------------------- /tables/table-alter/old-fictitious-experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/old-fictitious-experiments.py -------------------------------------------------------------------------------- /tables/table-alter/parse-turk-info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/parse-turk-info.py -------------------------------------------------------------------------------- /tables/table-alter/subtract-agreed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/table-alter/subtract-agreed.py -------------------------------------------------------------------------------- /tables/toy-examples/203-839.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/toy-examples/203-839.tsv -------------------------------------------------------------------------------- /tables/toy-examples/204-495.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/toy-examples/204-495.tsv -------------------------------------------------------------------------------- /tables/toy-examples/nikos_machlas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/toy-examples/nikos_machlas.csv -------------------------------------------------------------------------------- /tables/view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/view -------------------------------------------------------------------------------- /tables/wikipedia-scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/README -------------------------------------------------------------------------------- /tables/wikipedia-scripts/convert-all-to-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/convert-all-to-html -------------------------------------------------------------------------------- /tables/wikipedia-scripts/convert-to-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/convert-to-html -------------------------------------------------------------------------------- /tables/wikipedia-scripts/decode-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/decode-html -------------------------------------------------------------------------------- /tables/wikipedia-scripts/display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/display.css -------------------------------------------------------------------------------- /tables/wikipedia-scripts/display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/display.html -------------------------------------------------------------------------------- /tables/wikipedia-scripts/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/display.js -------------------------------------------------------------------------------- /tables/wikipedia-scripts/download-wikipedia-pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/download-wikipedia-pages.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/dump.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/extract.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/find-good-tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/find-good-tables.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/format.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/get-wikipedia-pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/get-wikipedia-pages.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/process-exemplars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/process-exemplars.sh -------------------------------------------------------------------------------- /tables/wikipedia-scripts/table-to-csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/table-to-csv.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/AsciiDammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/AsciiDammit.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/blacklist.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/clean_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/clean_html.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/external/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/external/.gitignore -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/external/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/external/README -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/table.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/tee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/tee.py -------------------------------------------------------------------------------- /tables/wikipedia-scripts/weblib/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/wikipedia-scripts/weblib/web.py -------------------------------------------------------------------------------- /tables/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/tables/x -------------------------------------------------------------------------------- /testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/testng.xml -------------------------------------------------------------------------------- /unittest-files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/unittest-files/README -------------------------------------------------------------------------------- /unittest-files/binaryInfoStringAndAlignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/unittest-files/binaryInfoStringAndAlignment.txt -------------------------------------------------------------------------------- /unittest-files/unaryInfoStringAndAlignment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanfordnlp/sempre-plot/HEAD/unittest-files/unaryInfoStringAndAlignment.txt --------------------------------------------------------------------------------