I am using WinSCP to access ParamShakti service provided by IIT KGP. But I'm facing issue while transferring data. Although I'm using high speed internet but data transfer speed very very low (hardly go upto 100 kbps). Please let me know how to solve this, and is there any alternative software to transfer data?
@@pankajkasar9512thank you very much Sir for your prompt reply. I have tried mobaxterm, but not able to connect. Can you please please address how to login with the hostname using mobaxterm or how to configure it for the same.
As paramshakti there are 11 nodes having 2 GPUs each, which means for 10 GPUs you need to reserve 5 nodes, so mention Node =5, and why do you need 10 GPUs? accordingly, you need to write a script for distributed training otherwise it's not possible to use 10 GPUs.
Hello pankaj sir, this is Anup Mahato research scholar from IIT kharagpur, sir i have problem with Running Reg.cm model. in paramshakti Regcm is available and all libraries and mpi available but i made script file also but i am not geeting input file in the server from where i will get that file? please help me. Thanks in advance.
Sir, thanks for this knowledgeable post. When I am trying to plot a curve testing and validation curve for epochs i am getting this error (with paramshivay). How can i overcome this issue? QStandardPaths: XDG_RUNTIME_DIR points to non-existing path '/run/user/5475', please create it with 0700 permissions. qt.qpa.screen: QXcbConnection: Could not connect to display localhost:22.0 Could not connect to any X display.
Why you are displaying such graphs and plots on Supercomputer while training? Don't do that. What I suggest you use "CSVLogger(csv_path)" function available at "from tensorflow.keras.callbacks import CSVLogger". Create a csv file and stire all training performance parameters in that file and then you can download it and monitor it manually. Please add this call back at model.fit() and stored in one file then you can have graphs, visualization etc.
@@nitinkumarchauhan6559 Select the URL "github.com/keras-team/keras-applications/releases/download/densenet/densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5", paste at browser, download it manually and then use that manual downloaded weights instead of weights= "imagenet" use this weights="resnet50_weights_tf_dim_ordering_tf_kernels_notop.h5" with proper file path. then it will work. Do above changes at """ Pre-trained ResNet50 Model """ resnet50 = ResNet50(include_top=False, weights="resnet50_weights_tf_dim_ordering_tf_kernels_notop.h5", input_tensor=inputs) Similar is applicable for VGG16UNET and rest all