Skip to content

Instantly share code, notes, and snippets.

View Mystify7777's full-sized avatar

Aryan Kumar Mystify7777

View GitHub Profile

Deep Learning Study Guide for CA3 Exam


1. Artificial Neural Networks (ANN)

  • Definition: A network of interconnected nodes (neurons) inspired by the human brain.
  • Structure:
    • Input Layer: Receives data
    • Hidden Layers: Perform computations
  • Output Layer: Produces results
@Mystify7777
Mystify7777 / While looped.py
Created July 29, 2021 08:51
A game of guessing the number
g=0
while True:
print("Welcome to the Guessing game. \n Game - #", g+1)
# Guessing game.
while True:
k = input("Enter the number to be guessed.\n")
try:
K = int(k)
@Mystify7777
Mystify7777 / Exercise 3.py
Created June 4, 2021 07:28
A game of guessing.
#Guess the number advanced.
while True:
k = int(input("Enter the number to be guessed.\n"))
print("Type 'start' to start the game or type anything else to reset the number.")
s = str(input())
if s == "start":
break
else: continue