Posts

Showing posts from March 24, 2019

Bradshaw Peak

Image
Not to be confused with Mount Bradshaw. Bradshaw Peak ( 81°3′S 158°34′E  /  81.050°S 158.567°E  / -81.050; 158.567 Coordinates: 81°3′S 158°34′E  /  81.050°S 158.567°E  / -81.050; 158.567 ) is a peak rising to 1,640 metres (5,380 ft), 4 kilometres (2.5 mi) south east of Turk Peak, Churchill Mountains. It is situated on the south west side of McLay Glacier. The peak was named in honor of Margaret Bradshaw, geological scientist, University of Canterbury. Margaret is an eminent geologist and in 1979 was the first woman to lead a deep field party in the Antarctic. Margaret is also the only New Zealand woman to be awarded the Polar Medal. References  This article incorporates public domain material from the United States Geological Survey document "Bradshaw Peak" (content from the Geographic Names Information System). This Oates Land location article is a stub. You can help Wikipedia by expanding it. v t e This page is only for reference, If you nee

Tensor Flow increment nested variable_scope

Image
2 2 I know I can increment a variable_scope using the 'default_name' argument: import tensorflow as tf tf.variable_scope("A") # This is scope "A" tf.variable_scope(None, "A") # incremented scope "A_1" However, this no longer works when an outer context is re-entered reuse= tf.AUTO_REUSE with tf.variable_scope("A", reuse=reuse): with tf.variable_scope("B", reuse=tf.AUTO_REUSE): print tf.get_variable("x", (), tf.float32) # 'A/B/x:0' with tf.variable_scope(None, "B"): # Increment B, as expected print tf.get_variable("x", (), tf.float32) # 'A/B_1/x:0' # Re-enter A and try to increment B with tf.variable_scope("A", reuse=reuse): with tf.variabl

模擬遊戲

Image
  本條目介紹的是电子游戏类型。關於电子游戏系列,請見“ 模拟游戏列表 ”。 本条目属于 模擬遊戲系列 子类型 建造與經營模擬 模拟经营 城市建造 政府模拟 生活模拟 戀愛模擬 电子宠物 上帝模拟 社会模拟 体育类 竞速 模拟竞速游戏 赛车 驾驶模拟 飞行模拟 业余飞行模拟 战斗飞行模拟 太空飞行模拟 潜艇模拟 列车模拟 查 论 编 模擬遊戲 (simulation game),簡稱 SIM 或 SLG 。以電腦模擬真實世界當中的環境與事件,提供玩者一個近似於現實生活當中可能發生的情境的遊戲,都可以稱作模擬遊戲。除了戀愛模擬遊戲,這一類的遊戲大多沒有明顯結局。 目录 1 類型 1.1 战争模拟 1.2 城市模拟 1.3 经营模拟 1.4 培育模拟 1.5 人生模拟 1.6 交通工具模拟 1.6.1 舰船模拟 1.6.2 飞行模拟 1.6.3 赛车模拟 1.6.4 其他交通工具模擬 1.7 太空交易战斗模拟 1.8 太空战斗模拟 2 相關條目 類型 战争模拟 命令与征服系列 城市模拟 城市模擬,大多是沒有明確目標的遊戲,遊戲時間通常在仍有資源可以持續發展城市的前提下,沒有明確結束的時間點。玩家可自由建設或拆除建築物,或是藉由各種災難使城市產生模擬上的壓力。 模擬城市系列 模擬農場 模擬大樓 Lincity OpenCity Cities XL CIties skylines 经营模拟 OpenTTD Simutrans Bygfoot 都市运输 铁路大亨系列(Railroad Tycoon) 培育模拟 更多信息:电子宠物和养成游戏 培育模擬以養寵物,或是培養子女為主。 任天狗 Goat simulator ( 英语 : Goat Simulator ) 模擬山羊 人生模拟 模拟人生系列(不包括第一代) 第二人生 虛擬人生 交通工具模拟 交通工具模擬,在提高遊戲畫面的精緻度與操作擬

Mount Liard

Image
Mount Liard ( 80°58′S 158°51′E  /  80.967°S 158.850°E  / -80.967; 158.850 Coordinates: 80°58′S 158°51′E  /  80.967°S 158.850°E  / -80.967; 158.850 ) is a peak 6 nautical miles (11 km) east of Mount Durnford in the Churchill Mountains of Antarctica. It rises to 1,770 metres (5,800 ft) on the ridge south of Cooper Snowfield. The peak was named by the Advisory Committee on Antarctic Names after Theodore J. Liard, Jr. (1918–2002), a geographer with the Department of Interior and the Department of Defense in toponymic research for the U.S. Board on Geographic Names, 1949–80. Liard was Chief of the Geographic Names Division at the Defense Mapping Agency, 1969–80. [1] References ^ "Mount Liard". Geographic Names Information System . United States Geological Survey . Retrieved 2013-06-13 . .mw-parser-output cite.citation{font-style:inherit}.mw-parser-output .citation q{quotes:"""""""'""'"}.mw-parser-output

Is there a modulo operation in Graphite?

Image
0 I'm trying to set up a graph that will show non 0 values only on specific hours of day (and 0 for everything else). So I got an hour since the beginning of time scale(timeFunction("now"), 0.000277777777778) 1/3600 = 0.000277777777778 now all I have left is to % the result by 24 and get an our in a day but I can't find the % function in graphite documentation. graphite share | improve this question edited Nov 22 '18 at 12:10 talonx 1,147 1 9 26 asked Nov 21 '18 at 12:49