├── .gitignore ├── README.md ├── fasttext-lang-detect ├── README.md ├── pom.xml └── src │ ├── main │ └── scala │ │ └── net │ │ └── alexott │ │ └── fasttext_langdetect │ │ ├── FastTextLangDetectTransformer.scala │ │ └── FastTextLangDetector.scala │ └── test │ └── scala │ └── net │ └── alexott │ └── fasttext_langdetect │ ├── FastTextLangDetectTransformerTest.scala │ └── FastTextLangDetectorTest.scala ├── graphframes ├── pom.xml └── src │ └── main │ └── scala │ └── net │ └── alexott │ └── demos │ └── spark │ └── GraphframeToZeppelin.scala ├── spark-nlp ├── pom.xml └── src │ └── main │ └── scala │ └── net │ └── alexott │ └── demos │ └── spark │ └── SparkNLPLangDetectionTest.scala ├── testing ├── Pipfile ├── Pipfile.lock ├── README.md ├── pom.xml ├── pytest.ini └── src │ ├── python │ ├── test-builtin.py │ ├── test-chispa.py │ ├── test-delta.py │ ├── test-pytest-spark.py │ └── test-spark-testing-base.py │ └── test │ └── scala │ └── net │ └── alexott │ └── demos │ └── spark │ ├── TestSparkFastTests.scala │ ├── TestSparkSuite.scala │ └── TestSparkTestingBase.scala └── xgboost ├── pom.xml └── src └── main └── scala └── net └── alexott └── demos └── spark └── XGBoostTest.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/README.md -------------------------------------------------------------------------------- /fasttext-lang-detect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/README.md -------------------------------------------------------------------------------- /fasttext-lang-detect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/pom.xml -------------------------------------------------------------------------------- /fasttext-lang-detect/src/main/scala/net/alexott/fasttext_langdetect/FastTextLangDetectTransformer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/src/main/scala/net/alexott/fasttext_langdetect/FastTextLangDetectTransformer.scala -------------------------------------------------------------------------------- /fasttext-lang-detect/src/main/scala/net/alexott/fasttext_langdetect/FastTextLangDetector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/src/main/scala/net/alexott/fasttext_langdetect/FastTextLangDetector.scala -------------------------------------------------------------------------------- /fasttext-lang-detect/src/test/scala/net/alexott/fasttext_langdetect/FastTextLangDetectTransformerTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/src/test/scala/net/alexott/fasttext_langdetect/FastTextLangDetectTransformerTest.scala -------------------------------------------------------------------------------- /fasttext-lang-detect/src/test/scala/net/alexott/fasttext_langdetect/FastTextLangDetectorTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/fasttext-lang-detect/src/test/scala/net/alexott/fasttext_langdetect/FastTextLangDetectorTest.scala -------------------------------------------------------------------------------- /graphframes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/graphframes/pom.xml -------------------------------------------------------------------------------- /graphframes/src/main/scala/net/alexott/demos/spark/GraphframeToZeppelin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/graphframes/src/main/scala/net/alexott/demos/spark/GraphframeToZeppelin.scala -------------------------------------------------------------------------------- /spark-nlp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/spark-nlp/pom.xml -------------------------------------------------------------------------------- /spark-nlp/src/main/scala/net/alexott/demos/spark/SparkNLPLangDetectionTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/spark-nlp/src/main/scala/net/alexott/demos/spark/SparkNLPLangDetectionTest.scala -------------------------------------------------------------------------------- /testing/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/Pipfile -------------------------------------------------------------------------------- /testing/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/Pipfile.lock -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/pom.xml -------------------------------------------------------------------------------- /testing/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/pytest.ini -------------------------------------------------------------------------------- /testing/src/python/test-builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/python/test-builtin.py -------------------------------------------------------------------------------- /testing/src/python/test-chispa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/python/test-chispa.py -------------------------------------------------------------------------------- /testing/src/python/test-delta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/python/test-delta.py -------------------------------------------------------------------------------- /testing/src/python/test-pytest-spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/python/test-pytest-spark.py -------------------------------------------------------------------------------- /testing/src/python/test-spark-testing-base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/python/test-spark-testing-base.py -------------------------------------------------------------------------------- /testing/src/test/scala/net/alexott/demos/spark/TestSparkFastTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/test/scala/net/alexott/demos/spark/TestSparkFastTests.scala -------------------------------------------------------------------------------- /testing/src/test/scala/net/alexott/demos/spark/TestSparkSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/test/scala/net/alexott/demos/spark/TestSparkSuite.scala -------------------------------------------------------------------------------- /testing/src/test/scala/net/alexott/demos/spark/TestSparkTestingBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/testing/src/test/scala/net/alexott/demos/spark/TestSparkTestingBase.scala -------------------------------------------------------------------------------- /xgboost/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/xgboost/pom.xml -------------------------------------------------------------------------------- /xgboost/src/main/scala/net/alexott/demos/spark/XGBoostTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/spark-playground/HEAD/xgboost/src/main/scala/net/alexott/demos/spark/XGBoostTest.scala --------------------------------------------------------------------------------