We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Can you please guide me how can I pass multiple text files to generate output files on them?
The text was updated successfully, but these errors were encountered:
@hemant-git10 This is an OS-specific problem/doubt. You are better off asking this in StackOverflow, rather than the author :)
Sorry, something went wrong.
I haven't tried this out with brown-cluster, but the usual way is either:
cat file1 file2 file3 > bigfile ./wcluster --text bigfile --c 50
or 2. Concatenate all the files to stdin, then use /dev/stdin:
cat file1 file2 file3 | ./wcluster --text /dev/stdin --c 50 --output_dir combined-input
No branches or pull requests
Hi,
Can you please guide me how can I pass multiple text files to generate output files on them?
The text was updated successfully, but these errors were encountered: