We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6695cb commit 8682b1bCopy full SHA for 8682b1b
Dockerfile.tmpl
@@ -407,6 +407,7 @@ RUN pip install bleach && \
407
408
RUN pip install flashtext && \
409
pip install wandb && \
410
+ pip install vaex && \
411
pip install marisa-trie && \
412
pip install pyemd && \
413
pip install pyupset && \
tests/test_vaex.py
@@ -0,0 +1,10 @@
1
+import unittest
2
+
3
+import vaex
4
5
+class TestVaex(unittest.TestCase):
6
+ def test_read_csv(self):
7
+ df = vaex.read_csv("/input/tests/data/train.csv")
8
9
+ self.assertEqual((100, 785), df.shape)
10
+ self.assertEqual(10, df['label'].nunique())
0 commit comments