Hello, can anyone help me find details of zing.sh commands and parameters. It is very difficult to understand what each parameter does.
I am using the following commands. zingg.sh --phase findTrainingData --conf /zingg1/config.json zingg.sh --phase label --conf /zingg1/config.json zingg.sh --phase train --conf /zingg1/config.json zingg.sh --phase exportModel --conf /zingg1/config.json --location /zingg1/ zingg.sh --phase match --conf /zingg1/config.json zingg.sh --phase exportModel --conf /zingg1/config.json --location /zingg1/ - This command is giving null pointer exception. zingg.sh --phase match --conf /zingg1/config.json - This command gives error 'FileOutputCommitter: Mkdirs failed to create file:/zing1/_temporary/'
https://docs.zingg.ai/zingg/stepbystep/zingg-command-line - details of zingg.sh parameters https://docs.zingg.ai/zingg/stepbystep/createtrainingdata - different phases with their functions
Asking: can you please tell about Zingg command line parameters?
Can you please tell about Zingg command line parameters?
The Zingg command line interface allows you to interact with Zingg to perform various functions such as labeling, training, and matching jobs. You can invoke the command line with the following parameters:
1. To pass a JSON configuration:
bash
./scripts/zingg.sh <optional --properties-file path to zingg.conf> --phase <phase> --conf <path to json>
2. To run Python programs:
bash
./scripts/zingg.sh <optional --properties-file path-to-zingg.conf> --run <path-to-python-program>
Sources:
Want to know more? Try these questions:
What are the different phases available in Zingg?
How do I create a JSON configuration for Zingg?
Can I run other types of scripts using the Zingg command line?