Search is not available for this dataset
repo_id
stringlengths
12
110
file_path
stringlengths
24
164
content
stringlengths
3
89.3M
__index_level_0__
int64
0
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/austen-sense.txt
The Project Gutenberg Etext of Sense and Sensibility, by Austen Please take a look at the important information in this header. We encourage you to keep this file on your own disk, keeping an electronic path open for the next readers. Do not remove this. **Welcome To The World of Free Plain Vanilla Electronic Texts...
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/run.bat
@echo off cat filelist.txt | python tf_map.py | python sort.py | python tf_reduce.py > ntcir_gb_tf_out.txt cat ntcir_gb_tf_out.txt | python idf_map.py | python sort.py | python idf_reduce.py > ntcir_gb_idf_out.txt cat ntcir_gb_tf_out.txt ntcir_gb_idf_out.txt | python tfidf_map1.py| python sort.py | python tfidf_re...
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/filelist.txt
austen-persuasion.txt austen-sense.txt
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/run.sh
#!/bin/sh export LC_ALL=C cat filelist.txt | ./tf_map.py | sort | ./tf_reduce.py > tf_out.txt cat tf_out.txt | ./idf_map.py | sort | ./idf_reduce.py > idf_out.txt cat tf_out.txt idf_out.txt | ./tfidf_map1.py| sort | ./tfidf_reduce1.py | sort | ./tfidf_map2.py
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/ntcir_gb_idf_out.txt
"'Tis All 1 "'Twill All 1 "A All 2 "AS-IS". All 2 "About All 2 "Add All 1 "Ah! All 2 "Ah!" All 2 "Ah!--no,--have All 1 "Ah, All 1 "All All 2 "Almost All 1 "Altered All 1 "And All 2 "And--were All 1 "Anne, All 1 "Anne," All 1 "Another All 2 "Any All 1 "Are All 2 "As All 2 "At All 1 "Ay, All 2 "Aye, All 2 "Bartlett's All...
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/ntcir_gb_tf_out.txt
"'Tis austen-sense.txt 1 "'Twill austen-sense.txt 1 "A austen-persuasion.txt 9 "A austen-sense.txt 10 "AS-IS". austen-persuasion.txt 1 "AS-IS". austen-sense.txt 1 "About austen-persuasion.txt 1 "About austen-sense.txt 2 "Add austen-sense.txt 1 "Ah! austen-persuasion.txt 4 "Ah! austen-sense.txt 3 "Ah!" austen-persuasion...
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/austen-persuasion.txt
The Project Gutenberg Etext of Persuasion by Jane Austin Please take a look at the important information in this header. We encourage you to keep this file on your own disk, keeping an electronic path open for the next readers. Do not remove this. **Welcome To The World of Free Plain Vanilla Electronic Texts** **E...
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/sort.py
""" sort program in windows sometimes behaves strangely so we write a small sorting program to be used in testing """ import sys li = [] for line in sys.stdin: li.append(line) li.sort() for e in li: print e,
0
public_repos/nltk_contrib/nltk_contrib/hadoop
public_repos/nltk_contrib/nltk_contrib/hadoop/tf_idf/runStreaming.sh
#!/bin/sh streamer="/usr/local/hadoop/contrib/streaming/hadoop-*-streaming.jar" hadoop="/usr/local/hadoop/bin/hadoop" $hadoop dfs -rmr tf_out $hadoop jar $streamer -mapper tf_map.py -reducer tf_reduce.py -input filelist -output tf_out -file tf_map.py -file tf_reduce.py -file ../../../data/corpora/gutenberg/austen-e...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/constraint.py
#!/usr/bin/python # # Copyright 2005 Gustavo Niemeyer <niemeyer@conectiva.com> # Originally licensed under the GNU General Public License # # Relicensed with permission under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance with the # License. You may obtai...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/drawers.py
from random import shuffle from full_brevity import * from relational import * from incremental import * from util import generate_phrase, generate_phrase_rel if __name__ == '__main__': # This data is based on the drawer pictures from Vienthen and Dale (2006) # Drawers are numbered (oddly) from left to right on ev...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/README
About ----- This package contains code for generating referring expressions using Viethen and Dale's algorithms. It was implemented by: Rebecca Ingram <raingram@cs.indiana.edu> Michael Hansen <mihansen@cs.indiana.edu> Jason Yoder <jasoyode@cs.indiana.edu> Sample Data ----------- Both drawers.py and gre3d_facts.py con...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/gre3d_facts.py
from full_brevity import * from incremental import * from relational import * import util def getFacts(): """ Always numbered from left to right Referent is alwasy r1 Distractors are labeled based on the first letter of their type s1 = first sphere, c1= first cube, s2 = second sphere etc. This...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/full_brevity.py
# Copyright 2010 Rebecca Ingram, Michael Hansen, Jason Yoder # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appli...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/util.py
# Copyright 2010 Rebecca Ingram, Michael Hansen, Jason Yoder # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appli...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/incremental.py
import string from copy import copy, deepcopy from util import validate_facts, Type, Rel, generate_phrase class Incremental: """ Implementation of the "incremental" referring expression algorithm from Reiter and Dale (1992). """ def __init__(self, facts, ranked_attrs, taxonomy): """ ...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/refexpr/relational.py
# Copyright 2010 Rebecca Ingram, Michael Hansen, Jason Yoder # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appli...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/instancetests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import instance as ins, attribute, discretisedattribute as da, numrange as r import un...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/run_tests.sh
#!/bin/bash python ./alltests.py
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/cfiletests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import cfile, item, format from nltk_contrib.classifier_tests import * class FileTest...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/classifytests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import classify as c from nltk_contrib.classifier_tests import * class ClassifyTestCas...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/alltests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT import unittest import re, os def allTestsSuite(): testfilenames = [] for dn,d,f in os.walk('.'): ...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/attributestests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import attribute as a, discretisedattribute as da, numrange as nr from nltk_contrib.cl...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/zerortests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import zeror as z, instances as ins from nltk_contrib.classifier.exceptions import inv...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/commandlinetests.py
# Natural Language Toolkit CommandLine # understands the command line interaction # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contr...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/attributetests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import attribute as a from nltk_contrib.classifier_tests import * import math class A...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/instancestests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import instances as ins, instance, attribute as a, discretisedattribute as da, numrang...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/naivebayestests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import instances as ins, instance, attribute as a, naivebayes from nltk_contrib.classi...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/decisionstumptests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import decisionstump as ds, instances as ins, instance from nltk_contrib.classifier_te...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/formattests.py
# Natural Language Toolkit - Format tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import format, instance as i...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/discretisedattributetests.py
# Natural Language Toolkit Discretized attribute tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import discretisedattribute as da, numrange as nr, attribut...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/numrangetests.py
# Natural Language Toolkit - RangeTest # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> from nltk_contrib.classifier import numrange as r from nltk_contrib.classifier_tests import * from nltk_contrib.classifier.exceptions import systemerror as se class RangeTestCase(unitte...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/knntests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import knn, instance as ins, instances as inss from nltk_contrib.classifier_tests impo...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/sanity_tests.sh
echo 'Zero R test' python ../classifier/classify.py -f datasets/minigolf/weather echo 'Zero R verify' python ../classifier/classify.py -vf datasets/minigolf/weather echo 'One R test' python ../classifier/classify.py -a 1R -f datasets/minigolf/weather echo 'One R verify' python ../classifier/classify.py -a 1R -vf datase...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/confusionmatrixtests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import confusionmatrix as cm from nltk_contrib.classifier.exceptions import systemerro...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/onertests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import oner, instances as ins, format from nltk_contrib.classifier_tests import * from...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/itemtests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import item import unittest class ItemTestCase(unittest.TestCase): def testRemove...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/decisiontreetests.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import decisiontree, decisionstump as ds, ...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/discretisetests.py
# Natural Language Toolkit - Discretise tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import discretise from n...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/distancemetrictests.py
# Natural Language Toolkit - Distance Metric tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import distancemetr...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/featureselecttests.py
# Natural Language Toolkit - Feature Select tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import featureselect...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/autoclasstests.py
# Natural Language Toolkit - Attribute # can extract the name and values from a line and operate on them # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier import ...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/inittests.py
# Natural Language Toolkit - Format tests # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk_contrib.classifier_tests import * from nltk_contrib.classifier import * from nltk.probabili...
0
public_repos/nltk_contrib/nltk_contrib
public_repos/nltk_contrib/nltk_contrib/classifier_tests/__init__.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT import unittest, os, re from nltk_contrib.classifier import format SEP = os.path.sep def thisFileDir(self): t...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests
public_repos/nltk_contrib/nltk_contrib/classifier_tests/utilities/stats.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT from nltk import probability from nltk_contrib.classifier import format import os def class_distribution(base_path)...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests
public_repos/nltk_contrib/nltk_contrib/classifier_tests/utilities/batchtest.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT import os import os.path from nltk_contrib.classifier import format as fmt, discretise as d, featureselect as f, c...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests
public_repos/nltk_contrib/nltk_contrib/classifier_tests/utilities/convert.py
# Natural Language Toolkit # # Author: Sumukh Ghodke <sumukh dot ghodke at gmail dot com> # # URL: <http://www.nltk.org/> # This software is distributed under GPL, for license information see LICENSE.TXT import re from nltk_contrib.classifier import format, discretise as ds, featureselect as fs, classify, util import...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_phones/phoney.names
a,b,c. band: dual,tri,quad. size: big,small,medium. os: symbian,wince,linux,other. pda: y,n. mp3: y,n.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_phones/phoney.data
dual,small,symbian,n,n,c tri,medium,symbian,n,y,b dual,big,other,n,n,c tri,big,linux,y,y,a quad,big,wince,y,y,a tri,small,other,n,y,b tri,medium,other,n,y,b
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_phones/phoney.test
dual,big,symbian,n,n tri,medium,symbian,n,y quad,big,other,y,y tri,small,other,n,y
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_phones/phoney.gold
dual,small,symbian,n,n,c tri,medium,symbian,n,y,b dual,big,other,n,n,c tri,big,linux,y,y,a quad,big,wince,y,y,a tri,small,other,n,y,b tri,medium,other,n,y,b
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/person.test
256,26,salaried,single,0,0,80000,2 257,20,unemployed,single,0,0,0,8
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/weather.test
overcast,25.4,high,true
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/person.names
yes,no. id: continuous. age: continuous. occupation: salaried,self-employed,unemployed. maritalstatus: single,married,divorced. dependents: continuous. existingloans: continuous. annualincome: continuous. creditrating: continuous.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/weather.names
yes,no. outlook: sunny,overcast,rainy. temperature: continuous. humidity: high,normal. windy: true,false.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/person.data
0,25,salaried,single,0,0,65000,3,yes 1,19,unemployed,single,0,0,0,8,no 2,21,salaried,married,0,0,45000,5,yes 3,34,self-employed,married,2,3,120000,2,yes 4,31,salaried,single,2,0,75000,3,yes 5,42,salaried,married,2,6,65000,6,no
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/weather.gold
sunny,21,normal,true,yes overcast,18,high,true,yes overcast,28.3,notmal,false,yes rainy,17.9,high,true,no
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/numerical/weather.data
sunny,27.5,high,false,no sunny,33.1,high,true,no overcast,32,high,false,yes rainy,18,high,false,yes rainy,12,normal,false,yes rainy,10.7,normal,true,no overcast,6,normal,true,yes sunny,14.1,high,false,no sunny,9,normal,false,yes overcast,9,normal,true,no sunny,12,normal,false,yes overcast,12,normal,false,yes
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/minigolf/weather.test
overcast,mild,high,true
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/minigolf/weather.names
yes,no. outlook: sunny,overcast,rainy temperature: hot,mild,cool humidity: high,normal windy: true,false
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/minigolf/weather.gold
sunny,mild,normal,true,yes overcast,mild,high,true,yes overcast,hot,notmal,false,yes rainy,mild,high,true,no
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/minigolf/weather.data
sunny,hot,high,false,no sunny,hot,high,true,no overcast,hot,high,false,yes rainy,mild,high,false,yes rainy,cool,normal,false,yes rainy,cool,normal,true,no overcast,cool,normal,true,yes sunny,mild,high,false,no sunny,cool,normal,false,yes
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_faulty/invalid_attributes.names
a,b. foo: bar,foobar,baz. count: one,two,three.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/test_faulty/invalid_attributes.data
foo,one,a bar, two,a wrong,one,b foobar, one, b
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/loan/loan.data
yes,single,125000,no no,married,100000,no no,single,70000,no yes,married,120000,no no,divorced,95000,yes no,married,60000,no yes,divorced,220000,no no,single,85000,yes no,married,75000,no no,single,90000,yes
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/loan/loan.names
yes,no. home-owner:yes,no. marital-status:single,married,divorced. annual-income:continuous.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/datasets/loan/loan.test
no,married,120000
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/diabetes/pima-indians-diabetes.names
0,1. times-pregnant:continuous. plasma-glucose-concentration:continuous. diastolic-blood-pressure:continuous. triceps-skin-fold-thickness:continuous. 2-hour-serum-insulin:continuous. body-mass-index:continuous. diabetes-pedigree-function:continuous. age:continuous.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/diabetes/README
1. Title: Pima Indians Diabetes Database 2. Sources: (a) Original owners: National Institute of Diabetes and Digestive and Kidney Diseases (b) Donor of database: Vincent Sigillito (vgs@aplcen.apl.jhu.edu) Research Center, RMI Group Leader ...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/diabetes/pima-indians-diabetes.data
6,148,72,35,0,33.6,0.627,50,1 1,85,66,29,0,26.6,0.351,31,0 8,183,64,0,0,23.3,0.672,32,1 1,89,66,23,94,28.1,0.167,21,0 0,137,40,35,168,43.1,2.288,33,1 5,116,74,0,0,25.6,0.201,30,0 3,78,50,32,88,31.0,0.248,26,1 10,115,0,0,0,35.3,0.134,29,0 2,197,70,45,543,30.5,0.158,53,1 8,125,96,0,0,0.0,0.232,54,1 4,110,92,0,0,37.6,0.19...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/votes/house-votes-84.names
democrat,republican. handicapped-infants:y,n,?. water-project-cost-sharing:y,n,?. adoption-of-the-budget-resolution:y,n,?. physician-fee-freeze:y,n,?. el-salvador-aid:y,n,?. religious-groups-in-schools:y,n,?. anti-satellite-test-ban:y,n,?. aid-to-nicaraguan-contras:y,n,?. mx-missile:y,n,?. immigration:y,n,?. synfuels-c...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/votes/house-votes-84.data
n,y,n,y,y,y,n,n,n,y,?,y,y,y,n,y,republican n,y,n,y,y,y,n,n,n,n,n,y,y,y,n,?,republican ?,y,y,?,y,y,n,n,n,n,y,n,y,y,n,n,democrat n,y,y,n,?,y,n,n,n,n,y,n,y,n,n,y,democrat y,y,y,n,y,y,n,n,n,n,y,?,y,y,y,y,democrat n,y,y,n,y,y,n,n,n,n,n,n,y,y,y,y,democrat n,y,n,y,y,y,n,n,n,n,n,n,?,y,y,y,democrat n,y,n,y,y,y,n,n,n,n,n,n,y,y,?...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/votes/README
1. Title: 1984 United States Congressional Voting Records Database 2. Source Information: (a) Source: Congressional Quarterly Almanac, 98th Congress, 2nd session 1984, Volume XL: Congressional Quarterly Inc. Washington, D.C., 1985. (b) Donor: Jeff Schlimmer (Jeffrey.Schlimm...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/glass/glass.data
1,1.52101,13.64,4.49,1.10,71.78,0.06,8.75,0.00,0.00,1 2,1.51761,13.89,3.60,1.36,72.73,0.48,7.83,0.00,0.00,1 3,1.51618,13.53,3.55,1.54,72.99,0.39,7.78,0.00,0.00,1 4,1.51766,13.21,3.69,1.29,72.61,0.57,8.22,0.00,0.00,1 5,1.51742,13.27,3.62,1.24,73.08,0.55,8.07,0.00,0.00,1 6,1.51596,12.79,3.61,1.62,72.97,0.64,8.07,0.00,0.2...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/glass/README
| 1. Title: Glass Identification Database | | 2. Sources: | (a) Creator: B. German | -- Central Research Establishment | Home Office Forensic Science Service | Aldermaston, Reading, Berkshire RG7 4PN | (b) Donor: Vina Spiehler, Ph.D., DABFT | Diagnostic Products Cor...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/glass/glass.names
1,2,3,4,5,6,7. id:continuous. RI:continuous. Na:continuous. Mg:continuous. Al:continuous. Si:continuous. K:continuous. Ca:continuous. Ba:continuous. Fe:continuous.
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/annealing/anneal.names
1,2,3,4,5,U. family:?,GB,GK,GS,TN,ZA,ZF,ZH,ZM,ZS. product-type:C, H, G. steel:?,R,A,U,K,M,S,W,V. carbon:continuous. hardness:continuous. temper_rolling:?,T. condition:?,S,A,X. formability:?,1,2,3,4,5. strength:continuous. non-ageing:?,N. surface-finish:P,M,?. surface-quality:?,D,E,F,G. enamelability:?,1,2,3,4,5. bc:Y,?...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/annealing/README
1. Title of Database: Annealing Data 2. Source Information: donated by David Sterling and Wray Buntine. 3. Past Usage: unknown 4. Relevant Information: -- Explanation: I suspect this was left by Ross Quinlan in 1987 at the 4th Machine Learning Workshop. I'd have to check with Jeff Schlimmer to double...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/annealing/anneal.gold
?,C,A,00,45,?,S,?,000,?,?,D,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,COIL,1.600,0610.0,0000,?,0000,?,3 ?,C,A,00,00,?,S,3,000,N,?,E,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,Y,?,?,?,COIL,0.699,0609.9,0000,?,0000,?,3 ZS,C,A,00,85,T,?,?,000,?,?,E,?,?,?,Y,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,SHEET,0.400,0610.0,0762,?,0000,?,U ZS,C,A,00,50,T,?,?...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/annealing/anneal.data
?,C,A,08,00,?,S,?,000,?,?,G,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,COIL,0.700,0610.0,0000,?,0000,?,3 ?,C,R,00,00,?,S,2,000,?,?,E,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,Y,?,?,?,COIL,3.200,0610.0,0000,?,0000,?,3 ?,C,R,00,00,?,S,2,000,?,?,E,?,?,Y,?,B,?,?,?,?,?,?,?,?,?,?,?,?,?,?,SHEET,0.700,1300.0,0762,?,0000,?,3 ?,C,A,00,60,T,?,?,0...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/breast-cancer/breast-cancer.data
no-recurrence-events,30-39,premeno,30-34,0-2,no,3,left,left_low,no no-recurrence-events,40-49,premeno,20-24,0-2,no,2,right,right_up,no no-recurrence-events,40-49,premeno,20-24,0-2,no,2,left,left_low,no no-recurrence-events,60-69,ge40,15-19,0-2,no,2,right,left_up,no no-recurrence-events,40-49,premeno,0-4,0-2,no,2,right,...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/breast-cancer/README
Citation Request: This breast cancer domain was obtained from the University Medical Centre, Institute of Oncology, Ljubljana, Yugoslavia. Thanks go to M. Zwitter and M. Soklic for providing the data. Please include this citation if you plan to use this database. 1. Title: Breast cancer data (Michalski ...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/breast-cancer/breast-cancer.names
yes,no. class:no-recurrence-events,recurrence-events age:10-19,20-29,30-39,40-49,50-59,60-69,70-79,80-89,90-99. menopause:lt40,ge40,premeno. tumor-size:0-4,5-9,10-14,15-19,20-24,25-29,30-34,35-39,40-44,45-49,50-54,55-59. inv-nodes:0-2,3-5,6-8,9-11,12-14,15-17,18-20,21-23,24-26,27-29,30-32,33-35,36-39. node-caps:yes,no,...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/vehicle/vehicle.data
95,48,83,178,72,10,162,42,20,159,176,379,184,70,6,16,187,197,van 91,41,84,141,57,9,149,45,19,143,170,330,158,72,9,14,189,199,van 104,50,106,209,66,10,207,32,23,158,223,635,220,73,14,9,188,196,saab 93,41,82,159,63,9,144,46,19,143,160,309,127,63,6,10,199,207,van 85,44,70,205,103,52,149,45,19,144,241,325,188,127,9,11,180,...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/vehicle/vehicle.names
opel,saab,bus,van. compactness:continuous. circularity:continuous. distance-circularity:continuous. radius-ratio:continuous. praxis-aspect-ratio:continuous. max-length-aspect-ratio:continuous. scatter-ratio:continuous. elongatedness:continuous. praxis-rectangularity:continuous. max-length-rectangularity:continuous. sc...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/vehicle/README
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!IMPORTANT!!!!!!!!!!!!!!!!!!!!!!!!!!!! This dataset comes from the Turing Institute, Glasgow, Scotland. If you use this dataset in any publication you must acknowledge this source. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! NAME vehicle silhou...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/german/german.names
1,2. account-status:A11,A12,A13,A14. duration:continuous. credit-history:A30,A31,A32,A33,A34. purpose:A40,A41,A42,A43,A44,A45,A46,A47,A48,A49,A410. credit-amount:continuous. saving-acc/bonds:A61,A62,A63,A64,A65. employment-since:A71,A72,A73,A74,A75. installment-rate:continuous. status-and-sex:A91,A92,A93,A94,A95. guara...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/german/README
Description of the German credit dataset. 1. Title: German Credit data 2. Source Information Professor Dr. Hans Hofmann Institut f"ur Statistik und "Okonometrie Universit"at Hamburg FB Wirtschaftswissenschaften Von-Melle-Park 5 2000 Hamburg 13 3. Number of Instances: 1000 Two datasets are provided. ...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/german/german.data
A11,6,A34,A43,1169,A65,A75,4,A93,A101,4,A121,67,A143,A152,2,A173,1,A192,A201,1 A12,48,A32,A43,5951,A61,A73,2,A92,A101,2,A121,22,A143,A152,1,A173,1,A191,A201,2 A14,12,A34,A46,2096,A61,A74,2,A93,A101,3,A121,49,A143,A152,1,A172,2,A191,A201,1 A11,42,A32,A42,7882,A61,A74,2,A93,A103,4,A122,45,A143,A153,1,A173,2,A191,A201,1 A...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/australian/README
Description of the Dataset: THIS CREDIT DATA ORIGINATES FROM QUINLAN (see below). 1. Title: Australian Credit Approval 2. Sources: (confidential) Submitted by quinlan@cs.su.oz.au 3. Past Usage: See Quinlan, * "Simplifying decision trees", Int J Man-Machine Studies 27, Dec 1987, pp. 221-2...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/australian/australian.data
1,22.08,11.46,2,4,4,1.585,0,0,0,1,2,100,1213,0 0,22.67,7,2,8,4,0.165,0,0,0,0,2,160,1,0 0,29.58,1.75,1,4,4,1.25,0,0,0,1,2,280,1,0 0,21.67,11.5,1,5,3,0,1,1,11,1,2,0,1,1 1,20.17,8.17,2,6,4,1.96,1,1,14,0,2,60,159,1 0,15.83,0.585,2,8,8,1.5,1,1,2,0,2,100,1,1 1,17.42,6.5,2,3,4,0.125,0,0,0,0,2,60,101,0 0,58.67,4.46,2,11,8,3.04...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/australian/australian.names
0,1. A1:0,1. A2:continuous. A3:continuous. A4:1,2,3. | p,g,gg A5:1 ,2,3,4,5,6 ,7,8,9,10,11,12,13,14. | ff,d,i,k,j,aa,m,c,w, e, q, r,cc, x A6:1 ,2 ,3,4 ,5,6,7,8,9. | ff,dd,j,bb,v,n,o,h,z A7:continuous. A8:1,0. | t, f A9:1,0. | t, f. A10:continuous. A11:1,0. | t,f. A12:1,2,3. | s,g,p A13:continuou...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/README
1. Title: The Monk's Problems 2. Sources: (a) Donor: Sebastian Thrun School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213, USA E-mail: thrun@cs.cmu.edu (b) Date: October 1992 3. Past Usage: - See File: thrun.comparison.ps.Z - Wnek, J., "Hypoth...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/3/monks.gold
1,1,1,1,1,1,data_1,1 1,1,1,1,1,2,data_2,1 1,1,1,1,2,1,data_3,1 1,1,1,1,2,2,data_4,1 1,1,1,1,3,1,data_5,1 1,1,1,1,3,2,data_6,1 1,1,1,1,4,1,data_7,0 1,1,1,1,4,2,data_8,0 1,1,1,2,1,1,data_9,1 1,1,1,2,1,2,data_10,1 1,1,1,2,2,1,data_11,1 1,1,1,2,2,2,data_12,1 1,1,1,2,3,1,data_13,1 1,1,1,2,3,2,data_14,1 1,1,1,2,4,1,data_15,0...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/3/monks.data
1,1,1,1,1,2,data_2,1 1,1,1,1,2,1,data_3,1 1,1,1,1,2,2,data_4,1 1,1,1,1,3,1,data_5,0 1,1,1,1,4,1,data_7,0 1,1,1,2,1,1,data_9,1 1,1,1,2,2,2,data_12,1 1,1,1,2,4,2,data_16,0 1,1,2,1,2,2,data_28,1 1,1,2,1,4,2,data_32,0 1,1,2,2,2,2,data_36,1 1,1,2,2,4,1,data_39,0 1,1,2,2,4,2,data_40,0 1,1,2,3,1,1,data_41,1 1,1,2,3,1,2,data_4...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/3/monks.names
0,1. a1:1, 2, 3 a2:1, 2, 3 a3:1, 2 a4:1, 2, 3 a5:1, 2, 3, 4 a6:1, 2 Id:data_1,data_2,data_3,data_4,data_5,data_6,data_7,data_8,data_9,data_10,data_11,data_12,data_13,data_14,data_15,data_16,data_17,data_18,data_19,data_20,data_21,data_22,data_23,data_24,data_25,data_26,data_27,data_28,data_29,data_30,data_31,data_32,d...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/1/monks.gold
1,1,1,1,1,1,data_1,1 1,1,1,1,1,2,data_2,1 1,1,1,1,2,1,data_3,1 1,1,1,1,2,2,data_4,1 1,1,1,1,3,1,data_5,1 1,1,1,1,3,2,data_6,1 1,1,1,1,4,1,data_7,1 1,1,1,1,4,2,data_8,1 1,1,1,2,1,1,data_9,1 1,1,1,2,1,2,data_10,1 1,1,1,2,2,1,data_11,1 1,1,1,2,2,2,data_12,1 1,1,1,2,3,1,data_13,1 1,1,1,2,3,2,data_14,1 1,1,1,2,4,1,data_15,1...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/1/monks.data
1,1,1,1,3,1,data_5,1 1,1,1,1,3,2,data_6,1 1,1,1,3,2,1,data_19,1 1,1,1,3,3,2,data_22,1 1,1,2,1,2,1,data_27,1 1,1,2,1,2,2,data_28,1 1,1,2,2,3,1,data_37,1 1,1,2,2,4,1,data_39,1 1,1,2,3,1,2,data_42,1 1,2,1,1,1,2,data_50,1 1,2,1,1,2,1,data_51,0 1,2,1,1,3,1,data_53,0 1,2,1,1,4,2,data_56,0 1,2,1,2,1,1,data_57,1 1,2,1,2,3,1,da...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/1/monks.names
0,1. a1:1, 2, 3 a2:1, 2, 3 a3:1, 2 a4:1, 2, 3 a5:1, 2, 3, 4 a6:1, 2 Id:data_1,data_2,data_3,data_4,data_5,data_6,data_7,data_8,data_9,data_10,data_11,data_12,data_13,data_14,data_15,data_16,data_17,data_18,data_19,data_20,data_21,data_22,data_23,data_24,data_25,data_26,data_27,data_28,data_29,data_30,data_31,data_32,d...
0
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks
public_repos/nltk_contrib/nltk_contrib/classifier_tests/ucidatasets/monks/2/monks.gold
1,1,1,1,1,1,data_1,0 1,1,1,1,1,2,data_2,0 1,1,1,1,2,1,data_3,0 1,1,1,1,2,2,data_4,0 1,1,1,1,3,1,data_5,0 1,1,1,1,3,2,data_6,0 1,1,1,1,4,1,data_7,0 1,1,1,1,4,2,data_8,0 1,1,1,2,1,1,data_9,0 1,1,1,2,1,2,data_10,0 1,1,1,2,2,1,data_11,0 1,1,1,2,2,2,data_12,0 1,1,1,2,3,1,data_13,0 1,1,1,2,3,2,data_14,0 1,1,1,2,4,1,data_15,0...
0