Coder Social home page Coder Social logo

Comments (4)

ChenghaoMou avatar ChenghaoMou commented on August 25, 2024

The Spark version might require some tinkering for your dataset.

In the error message above, the loading code is trying to load parquet files instead of txt files:

File "/home/scheible/git/github/text-dedup/text_dedup/minhash_spark.py", line 403, in <module>
    df: DataFrame = spark.read.option("mergeSchema", "true").parquet(args.input)

You should change this part to load text files properly. For example https://spark.apache.org/docs/latest/sql-data-sources-text.html

What you can do also is to convert your text-file-based dataset to a parque dataset first before using the script.

from text-dedup.

scheiblr avatar scheiblr commented on August 25, 2024

Thanks for the quick answer. The data loading was resolved quickly. However, I struggle now with the saving format. Currently it is saved as parquet files. Is it possible to change that behavior in such a way, that one text file will be the result containing the dedup corpus?

from text-dedup.

ChenghaoMou avatar ChenghaoMou commented on August 25, 2024

that one text file will be the result containing the dedup corpus

It is possible. You can change the save part to something like this:

(
	df # Assume only one column of text
	.coalesce(1) # One file instead of parts. Make sure it fits in memory
	.write
	.format("text")
	.option("header", "false")
	.mode("append")
	.save("output.txt")
)

from text-dedup.

scheiblr avatar scheiblr commented on August 25, 2024

Nice, thank you very much! That lead to a working solution!

God bless you!

from text-dedup.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.