Skip to content
Snippets Groups Projects
Commit 6192d783 authored by Nikit Srivastava's avatar Nikit Srivastava
Browse files

updating comments

parent cc1c1e69
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# This script is used to initialize the environment for the project.
\ No newline at end of file
# NOTE: This script is used to initialize the environment for the project.
\ No newline at end of file
......@@ -2,6 +2,7 @@
export N_PROCS=20000 # Number of total processes to spawn. This is just an example, your utility should be ready to scale up or down when this value is changed.
# Loading the environment
source environment_initialization.sh
# Call to some preparation logic (optional)
......@@ -10,4 +11,4 @@ bash prepare.sh
# Spawner calling your preprocessing script N_PROCS times across the computing cluster
super_duper_process_spawner -n $N_PROCS python text_preprocessor.py
echo "Finishing preprocessing data."
\ No newline at end of file
echo "Finished preprocessing data."
\ No newline at end of file
# list of all the packages required for this project
\ No newline at end of file
# TODO: list of all the packages required for this project
\ No newline at end of file
#!/bin/bash
# This script is used to set up the environment for running your code.
\ No newline at end of file
# NOTE: This script is used to set up the environment for running your code.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment