-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- tests of multimodal data class are finished
- now if text column contains a lot of nans, it's dropped
- Loading branch information
1 parent
8bb8f5a
commit e2554e7
Showing
3 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
0,1,2,3,4,5,6,7,8,9,10,11,12,13,14 | ||
0.0,,1.0,1.0,1.0,,monday,a ,True,,,1.0,0,a,no | ||
,5.0,2.0,2.0,0.0,,tuesday,b,,,2.3,0.0,1,inf,yes | ||
2.0,,3.0,3.0,,,3,c,False,,,1.0,?,c,yes | ||
3.0,,4.0,4.0,3.0,,4, a ,True,,,0.0,2,d,yes | ||
4.0,,5.0,5.0,0.0,,5, b ,,,,0.0,3,e,no | ||
5.0,,6.0,6.0,0.0,,6, c ,False,,,0.0,4,f,no | ||
6.0,inf,7.0,7.0,0.0,,7, a ,True,sample text,sample text,1.0,5,g,no | ||
7.0,inf,8.0,8.0,1.0,,1, b ,,,4,0.0,6,h,no | ||
inf,inf,9.0,9.0,2.0,,2,,True,,,1.0,7,i,no | ||
9.0,inf,10.0,10.0,2.0,,3, c ,False,,,0.0,8,j,yes | ||
10.0,,11.0,11.0,0.0,,4,c ,False,,0.0001,0.0,9,k,yes | ||
11.0,,12.0,12.0,2.0,,5,,False,,,1.0,10,l,yes | ||
12.0,,1.0,1.0,1.0,,6, b ,False,,,0.0,11,m,yes | ||
13.0,,2.0,2.0,1.0,,7, c ,True,,,,12,n,yes | ||
14.0,,3.0,3.0,2.0,,1,a,False,,,,error,o,no | ||
15.0,,4.0,4.0,1.0,,2,a ,False,,,,13,p,no | ||
16.0,2.0,5.0,12.0,0.0,,3, d ,True,,,1.0,16,r,yes | ||
17.0,3.0,6.0,13.0,0.0,sample text,4, d ,False,another sample text,another sample text,0.0,17,s,no | ||
,0,1,2,3,4,5,6,7,8,9,10,11,12,13 | ||
0,0.0,,1.0,1.0,1.0,Lorem Ipsum is simply dummy text of the printing and typesetting,monday,a ,True,,,1.0,0,no | ||
1,,5.0,2.0,2.0,0.0,industry. Lorem Ipsum has been the industry standard dummy text ever since,tuesday,b,,,2.3,0.0,1,yes | ||
2,2.0,,3.0,3.0,,"the 1500s, when an unknown printer took a galley of type and scrambled it to",3,c,False,,,1.0,?,yes | ||
3,3.0,,4.0,4.0,3.0,"make a type specimen book. It has survived not only five centuries, but also",4, a ,True,,,0.0,2,yes | ||
4,4.0,,5.0,5.0,0.0,"the leap into electronic typesetting, remaining essentially unchanged. It was",5, b ,,,,0.0,3,no | ||
5,5.0,,6.0,6.0,0.0,popularised in the 1960s with the release of Letraset sheets containing Lorem ,6, c ,False,,,0.0,4,no | ||
6,6.0,inf,7.0,7.0,0.0,"Ipsum passages, and more recently with desktop publishing software like Aldus ",7, a ,True,sample text,sample text,1.0,5,no | ||
7,7.0,inf,8.0,8.0,1.0,PageMaker including versions of Lorem Ipsum.,1, b ,,,4,0.0,6,no | ||
8,inf,inf,9.0,9.0,2.0,"Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots ",2,,True,,,1.0,7,no | ||
9,9.0,inf,10.0,10.0,2.0,"in a piece of classical Latin literature from 45 BC, making it over 2000 years ",3, c ,False,,,0.0,8,yes | ||
10,10.0,,11.0,11.0,0.0,"old. Richard McClintock, a Latin professor at Hampden-Sydney College in ",4,c ,False,,0.0001,0.0,9,yes | ||
11,11.0,,12.0,12.0,2.0,"Virginia, looked up one of the more obscure Latin words, consectetur, from a ",5,,False,,,1.0,10,yes | ||
12,12.0,,1.0,1.0,1.0,"Lorem Ipsum passage, and going through the cites of the word in classical",6, b ,False,,,0.0,11,yes | ||
13,13.0,,2.0,2.0,1.0,"literature, discovered the undoubtable source. Lorem Ipsum comes from sections ",7, c ,True,,,,12,yes | ||
14,14.0,,3.0,3.0,2.0,"1.10.32 and 1.10.33 of ""de Finibus Bonorum et Malorum"" (The Extremes of Good ",1,a,False,,,,error,no | ||
15,15.0,,4.0,4.0,1.0,"and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of",2,a ,False,,,,13,no | ||
16,16.0,2.0,5.0,12.0,0.0,"ethics, very popular during the Renaissance. The first line of Lorem Ipsum,",3, d ,True,,,1.0,16,yes | ||
17,17.0,3.0,6.0,13.0,0.0,"""Lorem ipsum dolor sit amet.."", comes from a line in section 1.10.32.",4, d ,False,another sample text,another sample text,0.0,17,no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters