91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中語法定義的示例分析

發布時間:2021-08-12 13:55:06 來源:億速云 閱讀:126 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關python中語法定義的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

1. 括號與函數調用

def devided_3(x):
   return x/3.

print(a)    #不帶括號調用的結果:<function a at 0x139c756a8>
print(a(3)) #帶括號調用的結果:1

不帶括號時,調用的是函數在內存在的首地址; 帶括號時,調用的是函數在內存區的代碼塊,輸入參數后執行函數體。

2. 括號與類調用

class test():
  y = 'this is out of __init__()'
  def __init__(self):
    self.y = 'this is in the __init__()'
 
x = test  # x是類位置的首地址
print(x.y) # 輸出類的內容:this is out of __init__()
x = test() # 類的實例化
print(x.y) # 輸出類的屬性:this is in the __init__() ;

3. function(#) (input)

def With_func_rtn(a):
  print("this is func with another func as return")
  print(a)
  def func(b):
    print("this is another function")
    print(b)
  return func
func(2018)(11)
>>> this is func with another func as return
  2018
  this is another function
  11

其實,這種情況最常用在卷積神經網絡中:

def model(input_shape):
  # Define the input placeholder as a tensor with shape input_shape.
  X_input = Input(input_shape)
  # Zero-Padding: pads the border of X_input with zeroes
  X = ZeroPadding2D((3, 3))(X_input)
  # CONV -> BN -> RELU Block applied to X
  X = Conv2D(32, (7, 7), strides = (1, 1), name = 'conv0')(X)
  X = BatchNormalization(axis = 3, name = 'bn0')(X)
  X = Activation('relu')(X)
  # MAXPOOL
  X = MaxPooling2D((2, 2), name='max_pool')(X)
  # FLATTEN X (means convert it to a vector) + FULLYCONNECTED
  X = Flatten()(X)
  X = Dense(1, activation='sigmoid', name='fc')(X)
  # Create model. This creates your Keras model instance, you'll use this instance to train/test the model.
  model = Model(inputs = X_input, outputs = X, name='HappyModel')
  return model

感謝各位的閱讀!關于“python中語法定義的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万安县| 镇远县| 天峻县| 海淀区| 方正县| 吴堡县| 安阳县| 阿克苏市| 汉阴县| 眉山市| 克什克腾旗| 施甸县| 项城市| 柞水县| 伊春市| 高青县| 阳朔县| 昌都县| 广西| 宁波市| 临安市| 唐山市| 大连市| 霍邱县| 海阳市| 商河县| 泰和县| 新巴尔虎左旗| 紫金县| 正蓝旗| 岚皋县| 红安县| 扬中市| 张家川| 马龙县| 玉林市| 延寿县| 上饶县| 甘德县| 静乐县| 天柱县|