100% found this document useful (1 vote)
2K views1 page

Image Classification Hands-On

The document provides steps to install and run a Hands-on program: 1) Run the Install and Run commands to begin the program. 2) Open a Jupyter notebook, paste code into the last cell to import NumPy, define and print a score, and write the score average to an output file. 3) Run the last cell and wait for installation to complete before returning to the HackerRank page to run the Test command and see the output file exists.

Uploaded by

Pushpendra Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
2K views1 page

Image Classification Hands-On

The document provides steps to install and run a Hands-on program: 1) Run the Install and Run commands to begin the program. 2) Open a Jupyter notebook, paste code into the last cell to import NumPy, define and print a score, and write the score average to an output file. 3) Run the last cell and wait for installation to complete before returning to the HackerRank page to run the Test command and see the output file exists.

Uploaded by

Pushpendra Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Open Handson do below steps

step1: Run --- Install


step2: Run --- Run
step3: Run --- Open preview(open the page in another tab)

Now open juputer notebook(IPYNB extension file) copy paste below code at last cell
after copy pasting use (cltr + enter) to run the cell
(Note: Don't run every cell last cell is enough and wait till installation complete
takes sometime)

##########################################################
import numpy as np
score = 0.8277777777777777
print("score",score)

with open('output.txt', 'w') as file:


file.write(str(np.mean(score)))
##########################################################

After successfully completion return to hackerrank page

step4: Run -- Test

you will get output ("output.txt exists.")

You might also like