2025年10月16日
摘要:
本次報告聚焦神經網絡核心原理與發展脈絡。神經網絡模擬生物神經元結構,通過輸入層、隱藏層、輸出層的節點互聯傳遞信息,以反向傳播算法不斷調整連接權重,實現對數據規律的學習與預測。 其發展歷經三次浪潮:從感知機的初步探索,到BP算法推動多層網絡突破,再到深度學習憑借深度架構與海量數據實現圖像識別、自然語言
閱讀全文
posted @ 2025-10-16 11:22
湯圓233
閱讀(7)
推薦(0)
2025年10月15日
摘要:
 
推薦(0)
2025年6月22日
摘要:
import pygame import sys import random import math from pygame.math import Vector2 pygame.init() CELL_SIZE = 30 GRID_WIDTH = 20 GRID_HEIGHT = 15 SCREE
閱讀全文
posted @ 2025-06-22 01:40
湯圓233
閱讀(12)
推薦(0)
2025年5月25日
摘要:
8.1 from random import random def printInatro(): print("這個程序模擬兩個選手A何B的某種競技比賽") print("程序運行需要A和B的能力值(用0到1之間的小數表示)") def getInputs(): a = eval(input("請輸
閱讀全文
posted @ 2025-05-25 21:20
湯圓233
閱讀(25)
推薦(0)
2025年4月20日
摘要:
5.1 def drawaq(n): line = 3n+1 for i in range(1,line+1): if i%3 == 1: print(n"+ ",end="") print("+") else: print("| "*n,end="") print("|") n = eval(in
閱讀全文
posted @ 2025-04-20 21:12
湯圓233
閱讀(24)
推薦(0)
2025年4月7日
摘要:
target = 425 guess = 0 cishu = 0 while guess != target: guess = eval(input('請輸入一個猜測的整數(1至1000):')) if guess > target: print('猜大了') cishu = cishu + 1 p
閱讀全文
posted @ 2025-04-07 11:30
湯圓233
閱讀(23)
推薦(0)
2025年3月30日
摘要:
  
推薦(0)
2025年3月23日
摘要:
  
推薦(0)
2025年3月16日
摘要:
wenduzhuanhuan2 wendu=input("請輸入帶有符號的溫度:") if wendu[-2:] in ['fa','Fa']: C=(eval(wendu[0:-2])-32)/1.8 print ("轉換的溫度是{:.2f}C".format(C)) elif wendu[-2:
閱讀全文
posted @ 2025-03-16 20:32
湯圓233
閱讀(9)
推薦(0)
摘要:
蟒蛇繪圖(彩色版): DrawColorfulPython.py import turtle colors = ['red', 'orange', 'yellow', 'green', 'cyan', 'blue', 'purple'] turtle.setup(650, 350, 200, 200
閱讀全文
posted @ 2025-03-16 20:28
湯圓233
閱讀(7)
推薦(0)