├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── codes ├── 00_DNN_Regression.py ├── 01_DNN_Classification.py ├── 02_CNN_Img_Classification.py ├── 03_RNN_Text_Classification.py ├── 04_LSTM_Ts_Prediction.py ├── 05_Bidirectional_RNN_Text_Classification.py ├── 06_Autoencoder_Anomaly_Detection.py └── 07_Variational_Autoencoder_Anomaly_Detection.py ├── data ├── Metro_Interstate_Traffic_Volume.csv ├── SeoulBikeData.csv ├── SouthGermanCredit.csv ├── breastw.mat ├── clinc150_full.json └── weather │ ├── train │ ├── cloudy │ │ ├── cloudy1.jpg │ │ ├── cloudy10.jpg │ │ ├── cloudy100.jpg │ │ ├── cloudy101.jpg │ │ ├── cloudy102.jpg │ │ ├── cloudy103.jpg │ │ ├── cloudy104.jpg │ │ ├── cloudy105.jpg │ │ ├── cloudy106.jpg │ │ ├── cloudy107.jpg │ │ ├── cloudy108.jpg │ │ ├── cloudy109.jpg │ │ ├── cloudy11.jpg │ │ ├── cloudy110.jpg │ │ ├── cloudy111.jpg │ │ ├── cloudy112.jpg │ │ ├── cloudy113.jpg │ │ ├── cloudy114.jpg │ │ ├── cloudy115.jpg │ │ ├── cloudy116.jpg │ │ ├── cloudy117.jpg │ │ ├── cloudy118.jpg │ │ ├── cloudy119.jpg │ │ ├── cloudy12.jpg │ │ ├── cloudy120.jpg │ │ ├── cloudy121.jpg │ │ ├── cloudy122.jpg │ │ ├── cloudy123.jpg │ │ ├── cloudy124.jpg │ │ ├── cloudy125.jpg │ │ ├── cloudy126.jpg │ │ ├── cloudy127.jpg │ │ ├── cloudy128.jpg │ │ ├── cloudy129.jpg │ │ ├── cloudy13.jpg │ │ ├── cloudy130.jpg │ │ ├── cloudy131.jpg │ │ ├── cloudy132.jpg │ │ ├── cloudy133.jpg │ │ ├── cloudy134.jpg │ │ ├── cloudy135.jpg │ │ ├── cloudy136.jpg │ │ ├── cloudy137.jpg │ │ ├── cloudy138.jpg │ │ ├── cloudy139.jpg │ │ ├── cloudy14.jpg │ │ ├── cloudy140.jpg │ │ ├── cloudy141.jpg │ │ ├── cloudy142.jpg │ │ ├── cloudy143.jpg │ │ ├── cloudy144.jpg │ │ ├── cloudy145.jpg │ │ ├── cloudy146.jpg │ │ ├── cloudy147.jpg │ │ ├── cloudy148.jpg │ │ ├── cloudy149.jpg │ │ ├── cloudy15.jpg │ │ ├── cloudy150.jpg │ │ ├── cloudy16.jpg │ │ ├── cloudy17.jpg │ │ ├── cloudy18.jpg │ │ ├── cloudy19.jpg │ │ ├── cloudy2.jpg │ │ ├── cloudy20.jpg │ │ ├── cloudy21.jpg │ │ ├── cloudy22.jpg │ │ ├── cloudy23.jpg │ │ ├── cloudy24.jpg │ │ ├── cloudy25.jpg │ │ ├── cloudy26.jpg │ │ ├── cloudy27.jpg │ │ ├── cloudy28.jpg │ │ ├── cloudy29.jpg │ │ ├── cloudy3.jpg │ │ ├── cloudy30.jpg │ │ ├── cloudy31.jpg │ │ ├── cloudy32.jpg │ │ ├── cloudy33.jpg │ │ ├── cloudy34.jpg │ │ ├── cloudy35.jpg │ │ ├── cloudy36.jpg │ │ ├── cloudy37.jpg │ │ ├── cloudy38.jpg │ │ ├── cloudy39.jpg │ │ ├── cloudy4.jpg │ │ ├── cloudy40.jpg │ │ ├── cloudy41.jpg │ │ ├── cloudy42.jpg │ │ ├── cloudy43.jpg │ │ ├── cloudy44.jpg │ │ ├── cloudy45.jpg │ │ ├── cloudy46.jpg │ │ ├── cloudy47.jpg │ │ ├── cloudy48.jpg │ │ ├── cloudy49.jpg │ │ ├── cloudy5.jpg │ │ ├── cloudy50.jpg │ │ ├── cloudy51.jpg │ │ ├── cloudy52.jpg │ │ ├── cloudy53.jpg │ │ ├── cloudy54.jpg │ │ ├── cloudy55.jpg │ │ ├── cloudy56.jpg │ │ ├── cloudy57.jpg │ │ ├── cloudy58.jpg │ │ ├── cloudy59.jpg │ │ ├── cloudy6.jpg │ │ ├── cloudy60.jpg │ │ ├── cloudy61.jpg │ │ ├── cloudy62.jpg │ │ ├── cloudy63.jpg │ │ ├── cloudy64.jpg │ │ ├── cloudy65.jpg │ │ ├── cloudy66.jpg │ │ ├── cloudy67.jpg │ │ ├── cloudy68.jpg │ │ ├── cloudy69.jpg │ │ ├── cloudy7.jpg │ │ ├── cloudy70.jpg │ │ ├── cloudy71.jpg │ │ ├── cloudy72.jpg │ │ ├── cloudy73.jpg │ │ ├── cloudy74.jpg │ │ ├── cloudy75.jpg │ │ ├── cloudy76.jpg │ │ ├── cloudy77.jpg │ │ ├── cloudy78.jpg │ │ ├── cloudy79.jpg │ │ ├── cloudy8.jpg │ │ ├── cloudy80.jpg │ │ ├── cloudy81.jpg │ │ ├── cloudy82.jpg │ │ ├── cloudy83.jpg │ │ ├── cloudy84.jpg │ │ ├── cloudy85.jpg │ │ ├── cloudy86.jpg │ │ ├── cloudy87.jpg │ │ ├── cloudy88.jpg │ │ ├── cloudy89.jpg │ │ ├── cloudy9.jpg │ │ ├── cloudy90.jpg │ │ ├── cloudy91.jpg │ │ ├── cloudy92.jpg │ │ ├── cloudy93.jpg │ │ ├── cloudy94.jpg │ │ ├── cloudy95.jpg │ │ ├── cloudy96.jpg │ │ ├── cloudy97.jpg │ │ ├── cloudy98.jpg │ │ └── cloudy99.jpg │ ├── rain │ │ ├── rain1.jpg │ │ ├── rain10.jpg │ │ ├── rain100.jpg │ │ ├── rain11.jpg │ │ ├── rain12.jpg │ │ ├── rain13.jpg │ │ ├── rain14.jpg │ │ ├── rain15.jpg │ │ ├── rain16.jpg │ │ ├── rain17.jpg │ │ ├── rain18.jpg │ │ ├── rain19.jpg │ │ ├── rain2.jpg │ │ ├── rain20.jpg │ │ ├── rain21.jpg │ │ ├── rain22.jpeg │ │ ├── rain23.jpg │ │ ├── rain24.jpeg │ │ ├── rain25.jpg │ │ ├── rain26.jpg │ │ ├── rain27.jpg │ │ ├── rain28.jpg │ │ ├── rain29.jpg │ │ ├── rain3.jpg │ │ ├── rain30.jpg │ │ ├── rain31.jpg │ │ ├── rain32.jpg │ │ ├── rain33.jpg │ │ ├── rain34.jpg │ │ ├── rain35.jpg │ │ ├── rain36.jpg │ │ ├── rain37.jpg │ │ ├── rain38.jpg │ │ ├── rain39.jpg │ │ ├── rain4.jpg │ │ ├── rain40.jpg │ │ ├── rain41.jpg │ │ ├── rain42.jpg │ │ ├── rain43.jpg │ │ ├── rain44.jpg │ │ ├── rain45.jpg │ │ ├── rain46.jpg │ │ ├── rain47.jpg │ │ ├── rain48.jpg │ │ ├── rain49.jpg │ │ ├── rain5.jpg │ │ ├── rain50.jpg │ │ ├── rain51.jpg │ │ ├── rain52.jpg │ │ ├── rain53.jpg │ │ ├── rain54.jpg │ │ ├── rain55.jpg │ │ ├── rain56.jpg │ │ ├── rain57.jpg │ │ ├── rain58.jpg │ │ ├── rain59.jpg │ │ ├── rain6.jpg │ │ ├── rain60.jpg │ │ ├── rain61.jpg │ │ ├── rain62.jpg │ │ ├── rain63.jpg │ │ ├── rain64.jpg │ │ ├── rain65.jpg │ │ ├── rain66.jpg │ │ ├── rain67.jpg │ │ ├── rain68.jpg │ │ ├── rain69.jpg │ │ ├── rain7.jpg │ │ ├── rain70.jpg │ │ ├── rain71.jpg │ │ ├── rain72.jpg │ │ ├── rain73.jpg │ │ ├── rain74.jpg │ │ ├── rain75.jpg │ │ ├── rain76.jpg │ │ ├── rain77.jpg │ │ ├── rain78.jpg │ │ ├── rain79.jpg │ │ ├── rain8.jpg │ │ ├── rain80.jpg │ │ ├── rain81.jpg │ │ ├── rain82.jpg │ │ ├── rain83.jpg │ │ ├── rain84.jpg │ │ ├── rain85.jpg │ │ ├── rain86.jpg │ │ ├── rain87.jpg │ │ ├── rain88.jpg │ │ ├── rain89.jpg │ │ ├── rain9.jpg │ │ ├── rain90.jpg │ │ ├── rain91.jpg │ │ ├── rain92.jpg │ │ ├── rain93.jpg │ │ ├── rain94.jpg │ │ ├── rain95.jpg │ │ ├── rain96.jpg │ │ ├── rain97.jpg │ │ ├── rain98.jpg │ │ └── rain99.jpg │ ├── shine │ │ ├── shine1.jpg │ │ ├── shine10.jpg │ │ ├── shine100.jpg │ │ ├── shine101.jpg │ │ ├── shine102.jpg │ │ ├── shine103.jpg │ │ ├── shine104.jpg │ │ ├── shine105.jpg │ │ ├── shine106.jpg │ │ ├── shine107.jpg │ │ ├── shine108.jpg │ │ ├── shine109.jpg │ │ ├── shine11.jpg │ │ ├── shine110.jpg │ │ ├── shine111.jpg │ │ ├── shine112.jpg │ │ ├── shine113.jpg │ │ ├── shine114.jpg │ │ ├── shine115.jpg │ │ ├── shine116.jpg │ │ ├── shine117.jpg │ │ ├── shine118.jpg │ │ ├── shine119.jpg │ │ ├── shine12.jpg │ │ ├── shine120.jpg │ │ ├── shine121.jpg │ │ ├── shine122.jpg │ │ ├── shine123.jpg │ │ ├── shine124.jpg │ │ ├── shine125.jpg │ │ ├── shine126.jpg │ │ ├── shine127.jpg │ │ ├── shine128.jpg │ │ ├── shine129.jpg │ │ ├── shine13.jpg │ │ ├── shine130.jpg │ │ ├── shine131.jpg │ │ ├── shine132.jpg │ │ ├── shine133.jpg │ │ ├── shine134.jpg │ │ ├── shine135.jpg │ │ ├── shine136.jpg │ │ ├── shine137.jpg │ │ ├── shine138.jpg │ │ ├── shine139.jpg │ │ ├── shine14.jpg │ │ ├── shine140.jpg │ │ ├── shine15.jpg │ │ ├── shine16.jpg │ │ ├── shine17.jpg │ │ ├── shine18.jpg │ │ ├── shine19.jpg │ │ ├── shine2.jpg │ │ ├── shine20.jpg │ │ ├── shine21.jpg │ │ ├── shine22.jpg │ │ ├── shine23.jpg │ │ ├── shine24.jpg │ │ ├── shine25.jpg │ │ ├── shine26.jpg │ │ ├── shine27.jpg │ │ ├── shine28.jpg │ │ ├── shine29.jpg │ │ ├── shine3.jpg │ │ ├── shine30.jpg │ │ ├── shine31.jpg │ │ ├── shine32.jpg │ │ ├── shine33.jpg │ │ ├── shine34.jpg │ │ ├── shine35.jpg │ │ ├── shine36.jpg │ │ ├── shine37.jpg │ │ ├── shine38.jpg │ │ ├── shine39.jpg │ │ ├── shine4.jpg │ │ ├── shine40.jpg │ │ ├── shine41.jpg │ │ ├── shine42.jpg │ │ ├── shine43.jpg │ │ ├── shine44.jpg │ │ ├── shine45.jpg │ │ ├── shine46.jpg │ │ ├── shine47.jpg │ │ ├── shine48.jpg │ │ ├── shine49.jpg │ │ ├── shine5.jpg │ │ ├── shine50.jpg │ │ ├── shine51.jpg │ │ ├── shine52.jpg │ │ ├── shine53.jpg │ │ ├── shine54.jpg │ │ ├── shine55.jpg │ │ ├── shine56.jpg │ │ ├── shine57.jpg │ │ ├── shine58.jpg │ │ ├── shine59.jpg │ │ ├── shine6.jpg │ │ ├── shine60.jpg │ │ ├── shine61.jpg │ │ ├── shine62.jpg │ │ ├── shine63.jpg │ │ ├── shine64.jpg │ │ ├── shine65.jpg │ │ ├── shine66.jpg │ │ ├── shine67.jpg │ │ ├── shine68.jpg │ │ ├── shine69.jpg │ │ ├── shine7.jpg │ │ ├── shine70.jpg │ │ ├── shine71.jpg │ │ ├── shine72.jpg │ │ ├── shine73.jpg │ │ ├── shine74.jpg │ │ ├── shine75.jpg │ │ ├── shine76.jpg │ │ ├── shine77.jpg │ │ ├── shine78.jpg │ │ ├── shine79.jpg │ │ ├── shine8.jpg │ │ ├── shine80.jpg │ │ ├── shine81.jpg │ │ ├── shine82.jpg │ │ ├── shine83.jpg │ │ ├── shine84.jpg │ │ ├── shine85.jpg │ │ ├── shine86.jpg │ │ ├── shine87.jpg │ │ ├── shine88.jpg │ │ ├── shine89.jpg │ │ ├── shine9.jpg │ │ ├── shine90.jpg │ │ ├── shine91.jpg │ │ ├── shine92.jpg │ │ ├── shine93.jpg │ │ ├── shine94.jpg │ │ ├── shine95.jpg │ │ ├── shine96.jpg │ │ ├── shine97.jpg │ │ ├── shine98.jpg │ │ └── shine99.jpg │ └── sunrise │ │ ├── sunrise1.jpg │ │ ├── sunrise10.jpg │ │ ├── sunrise100.jpg │ │ ├── sunrise101.jpg │ │ ├── sunrise102.jpg │ │ ├── sunrise103.jpg │ │ ├── sunrise104.jpg │ │ ├── sunrise105.jpg │ │ ├── sunrise106.jpg │ │ ├── sunrise107.jpg │ │ ├── sunrise108.jpg │ │ ├── sunrise109.jpg │ │ ├── sunrise11.jpg │ │ ├── sunrise110.jpg │ │ ├── sunrise111.jpg │ │ ├── sunrise112.jpg │ │ ├── sunrise113.jpg │ │ ├── sunrise114.jpg │ │ ├── sunrise115.jpg │ │ ├── sunrise116.jpg │ │ ├── sunrise117.jpg │ │ ├── sunrise118.jpg │ │ ├── sunrise119.jpg │ │ ├── sunrise12.jpg │ │ ├── sunrise120.jpg │ │ ├── sunrise121.jpg │ │ ├── sunrise122.jpg │ │ ├── sunrise123.jpg │ │ ├── sunrise124.jpg │ │ ├── sunrise125.jpg │ │ ├── sunrise126.jpg │ │ ├── sunrise127.jpg │ │ ├── sunrise128.jpg │ │ ├── sunrise129.jpg │ │ ├── sunrise13.jpg │ │ ├── sunrise130.jpg │ │ ├── sunrise131.jpg │ │ ├── sunrise132.jpg │ │ ├── sunrise133.jpg │ │ ├── sunrise134.jpg │ │ ├── sunrise135.jpg │ │ ├── sunrise136.jpg │ │ ├── sunrise137.jpg │ │ ├── sunrise138.jpg │ │ ├── sunrise139.jpg │ │ ├── sunrise14.jpg │ │ ├── sunrise140.jpg │ │ ├── sunrise141.jpg │ │ ├── sunrise142.jpg │ │ ├── sunrise143.jpg │ │ ├── sunrise144.jpg │ │ ├── sunrise145.jpg │ │ ├── sunrise146.jpg │ │ ├── sunrise147.jpg │ │ ├── sunrise148.jpg │ │ ├── sunrise149.jpg │ │ ├── sunrise15.jpg │ │ ├── sunrise150.jpg │ │ ├── sunrise16.jpg │ │ ├── sunrise17.jpg │ │ ├── sunrise18.jpg │ │ ├── sunrise19.jpg │ │ ├── sunrise2.jpg │ │ ├── sunrise20.jpg │ │ ├── sunrise21.jpg │ │ ├── sunrise22.jpg │ │ ├── sunrise23.jpg │ │ ├── sunrise24.jpg │ │ ├── sunrise25.jpg │ │ ├── sunrise26.jpg │ │ ├── sunrise27.jpg │ │ ├── sunrise28.jpg │ │ ├── sunrise29.jpg │ │ ├── sunrise3.jpg │ │ ├── sunrise30.jpg │ │ ├── sunrise31.jpg │ │ ├── sunrise32.jpg │ │ ├── sunrise33.jpg │ │ ├── sunrise34.jpg │ │ ├── sunrise35.jpg │ │ ├── sunrise36.jpg │ │ ├── sunrise37.jpg │ │ ├── sunrise38.jpg │ │ ├── sunrise39.jpg │ │ ├── sunrise4.jpg │ │ ├── sunrise40.jpg │ │ ├── sunrise41.jpg │ │ ├── sunrise42.jpg │ │ ├── sunrise43.jpg │ │ ├── sunrise44.jpg │ │ ├── sunrise45.jpg │ │ ├── sunrise46.jpg │ │ ├── sunrise47.jpg │ │ ├── sunrise48.jpg │ │ ├── sunrise49.jpg │ │ ├── sunrise5.jpg │ │ ├── sunrise50.jpg │ │ ├── sunrise51.jpg │ │ ├── sunrise52.jpg │ │ ├── sunrise53.jpg │ │ ├── sunrise54.jpg │ │ ├── sunrise55.jpg │ │ ├── sunrise56.jpg │ │ ├── sunrise57.jpg │ │ ├── sunrise58.jpg │ │ ├── sunrise59.jpg │ │ ├── sunrise6.jpg │ │ ├── sunrise60.jpg │ │ ├── sunrise61.jpg │ │ ├── sunrise62.jpg │ │ ├── sunrise63.jpg │ │ ├── sunrise64.jpg │ │ ├── sunrise65.jpg │ │ ├── sunrise66.jpg │ │ ├── sunrise67.jpg │ │ ├── sunrise68.jpg │ │ ├── sunrise69.jpg │ │ ├── sunrise7.jpg │ │ ├── sunrise70.jpg │ │ ├── sunrise71.jpg │ │ ├── sunrise72.jpg │ │ ├── sunrise73.jpg │ │ ├── sunrise74.jpg │ │ ├── sunrise75.jpg │ │ ├── sunrise76.jpg │ │ ├── sunrise77.jpg │ │ ├── sunrise78.jpg │ │ ├── sunrise79.jpg │ │ ├── sunrise8.jpg │ │ ├── sunrise80.jpg │ │ ├── sunrise81.jpg │ │ ├── sunrise82.jpg │ │ ├── sunrise83.jpg │ │ ├── sunrise84.jpg │ │ ├── sunrise85.jpg │ │ ├── sunrise86.jpg │ │ ├── sunrise87.jpg │ │ ├── sunrise88.jpg │ │ ├── sunrise89.jpeg │ │ ├── sunrise9.jpg │ │ ├── sunrise90.jpg │ │ ├── sunrise91.jpg │ │ ├── sunrise92.jpg │ │ ├── sunrise93.jpg │ │ ├── sunrise94.jpg │ │ ├── sunrise95.jpg │ │ ├── sunrise96.jpg │ │ ├── sunrise97.jpg │ │ ├── sunrise98.jpg │ │ └── sunrise99.jpg │ └── validation │ ├── cloudy │ ├── cloudy151.jpg │ ├── cloudy152.jpg │ ├── cloudy153.jpg │ ├── cloudy154.jpg │ ├── cloudy155.jpg │ ├── cloudy156.jpg │ ├── cloudy157.jpg │ ├── cloudy158.jpg │ ├── cloudy159.jpg │ ├── cloudy160.jpg │ ├── cloudy161.jpg │ ├── cloudy162.jpg │ ├── cloudy163.jpg │ ├── cloudy164.jpg │ ├── cloudy165.jpg │ ├── cloudy166.jpg │ ├── cloudy167.jpg │ ├── cloudy168.jpg │ ├── cloudy169.jpg │ ├── cloudy170.jpg │ ├── cloudy171.jpg │ ├── cloudy172.jpg │ ├── cloudy173.jpg │ ├── cloudy174.jpg │ ├── cloudy175.jpg │ ├── cloudy176.jpg │ ├── cloudy177.jpg │ ├── cloudy178.jpg │ ├── cloudy179.jpg │ ├── cloudy180.jpg │ ├── cloudy181.jpg │ ├── cloudy182.jpg │ ├── cloudy183.jpg │ ├── cloudy184.jpg │ ├── cloudy185.jpg │ ├── cloudy186.jpg │ ├── cloudy187.jpg │ ├── cloudy188.jpg │ ├── cloudy189.jpg │ ├── cloudy190.jpg │ ├── cloudy191.jpg │ ├── cloudy192.jpg │ ├── cloudy193.jpg │ ├── cloudy194.jpg │ ├── cloudy195.jpg │ ├── cloudy196.jpg │ ├── cloudy197.jpg │ ├── cloudy198.jpg │ ├── cloudy199.jpg │ ├── cloudy200.jpg │ ├── cloudy201.jpg │ ├── cloudy202.jpg │ ├── cloudy203.jpg │ ├── cloudy204.jpg │ ├── cloudy205.jpg │ ├── cloudy206.jpg │ ├── cloudy207.jpg │ ├── cloudy208.jpg │ ├── cloudy209.jpg │ ├── cloudy210.jpg │ ├── cloudy211.jpg │ ├── cloudy212.jpg │ ├── cloudy213.jpg │ ├── cloudy214.jpg │ ├── cloudy215.jpg │ ├── cloudy216.jpg │ ├── cloudy217.jpg │ ├── cloudy218.jpg │ ├── cloudy219.jpg │ ├── cloudy220.jpg │ ├── cloudy221.jpg │ ├── cloudy222.jpg │ ├── cloudy223.jpg │ ├── cloudy224.jpg │ ├── cloudy225.jpg │ ├── cloudy226.jpg │ ├── cloudy227.jpg │ ├── cloudy228.jpg │ ├── cloudy229.jpg │ ├── cloudy230.jpg │ ├── cloudy231.jpg │ ├── cloudy232.jpg │ ├── cloudy233.jpg │ ├── cloudy234.jpg │ ├── cloudy235.jpg │ ├── cloudy236.jpg │ ├── cloudy237.jpg │ ├── cloudy238.jpg │ ├── cloudy239.jpg │ ├── cloudy240.jpg │ ├── cloudy241.jpg │ ├── cloudy242.jpg │ ├── cloudy243.jpg │ ├── cloudy244.jpg │ ├── cloudy245.jpg │ ├── cloudy246.jpg │ ├── cloudy247.jpg │ ├── cloudy248.jpg │ ├── cloudy249.jpg │ ├── cloudy250.jpg │ ├── cloudy251.jpg │ ├── cloudy252.jpg │ ├── cloudy253.jpg │ ├── cloudy254.jpg │ ├── cloudy255.jpg │ ├── cloudy256.jpg │ ├── cloudy257.jpg │ ├── cloudy258.jpg │ ├── cloudy259.jpg │ ├── cloudy260.jpg │ ├── cloudy261.jpg │ ├── cloudy262.jpg │ ├── cloudy263.jpg │ ├── cloudy264.jpg │ ├── cloudy265.jpg │ ├── cloudy266.jpg │ ├── cloudy267.jpg │ ├── cloudy268.jpg │ ├── cloudy269.jpg │ ├── cloudy270.jpg │ ├── cloudy271.jpg │ ├── cloudy272.jpg │ ├── cloudy273.jpg │ ├── cloudy274.jpg │ ├── cloudy275.jpg │ ├── cloudy276.jpg │ ├── cloudy277.jpg │ ├── cloudy278.jpg │ ├── cloudy279.jpg │ ├── cloudy280.jpg │ ├── cloudy281.jpg │ ├── cloudy282.jpg │ ├── cloudy283.jpg │ ├── cloudy284.jpg │ ├── cloudy285.jpg │ ├── cloudy286.jpg │ ├── cloudy287.jpg │ ├── cloudy288.jpg │ ├── cloudy289.jpg │ ├── cloudy290.jpg │ ├── cloudy291.jpg │ ├── cloudy292.jpg │ ├── cloudy293.jpg │ ├── cloudy294.jpg │ ├── cloudy295.jpg │ ├── cloudy296.jpg │ ├── cloudy297.jpg │ ├── cloudy298.jpg │ ├── cloudy299.jpg │ └── cloudy300.jpg │ ├── rain │ ├── rain101.jpg │ ├── rain102.jpg │ ├── rain103.jpg │ ├── rain104.jpg │ ├── rain105.jpg │ ├── rain106.jpg │ ├── rain107.jpg │ ├── rain108.jpg │ ├── rain109.jpg │ ├── rain110.jpg │ ├── rain111.jpg │ ├── rain112.jpg │ ├── rain113.jpg │ ├── rain114.jpg │ ├── rain115.jpg │ ├── rain116.jpg │ ├── rain117.jpg │ ├── rain118.jpg │ ├── rain119.jpg │ ├── rain120.jpg │ ├── rain121.jpg │ ├── rain122.jpg │ ├── rain123.jpg │ ├── rain124.jpg │ ├── rain125.jpg │ ├── rain126.jpg │ ├── rain127.jpg │ ├── rain128.jpg │ ├── rain129.jpg │ ├── rain130.jpg │ ├── rain131.jpg │ ├── rain132.jpg │ ├── rain133.jpg │ ├── rain134.jpg │ ├── rain135.jpg │ ├── rain136.jpg │ ├── rain137.jpg │ ├── rain138.jpg │ ├── rain139.jpg │ ├── rain140.jpg │ ├── rain141.jpg │ ├── rain142.jpg │ ├── rain143.jpg │ ├── rain144.jpg │ ├── rain145.jpg │ ├── rain146.jpg │ ├── rain147.jpg │ ├── rain148.jpg │ ├── rain149.jpg │ ├── rain150.jpg │ ├── rain151.jpg │ ├── rain152.jpg │ ├── rain153.jpg │ ├── rain154.jpg │ ├── rain155.jpg │ ├── rain156.jpg │ ├── rain157.jpg │ ├── rain158.jpg │ ├── rain159.jpg │ ├── rain160.jpg │ ├── rain161.jpg │ ├── rain162.jpg │ ├── rain163.jpg │ ├── rain164.jpg │ ├── rain165.jpg │ ├── rain166.jpg │ ├── rain167.jpg │ ├── rain168.jpg │ ├── rain169.jpg │ ├── rain170.jpg │ ├── rain171.jpg │ ├── rain172.jpg │ ├── rain173.jpg │ ├── rain174.jpg │ ├── rain175.jpg │ ├── rain176.jpg │ ├── rain177.jpg │ ├── rain178.jpg │ ├── rain179.jpg │ ├── rain180.jpg │ ├── rain181.jpg │ ├── rain182.jpg │ ├── rain183.jpg │ ├── rain184.jpg │ ├── rain185.jpg │ ├── rain186.jpg │ ├── rain187.jpg │ ├── rain188.jpg │ ├── rain189.jpg │ ├── rain190.jpg │ ├── rain191.jpg │ ├── rain192.jpg │ ├── rain193.jpg │ ├── rain194.jpg │ ├── rain195.jpg │ ├── rain196.jpg │ ├── rain197.jpg │ ├── rain198.jpg │ ├── rain199.jpg │ ├── rain200.jpg │ ├── rain201.jpg │ ├── rain202.jpg │ ├── rain203.jpg │ ├── rain204.jpg │ ├── rain205.jpg │ ├── rain206.jpg │ ├── rain207.jpg │ ├── rain208.jpg │ ├── rain209.jpg │ ├── rain210.jpg │ ├── rain211.jpg │ ├── rain212.jpg │ ├── rain213.jpg │ ├── rain214.jpg │ └── rain215.jpg │ ├── shine │ ├── shine141.jpg │ ├── shine142.jpg │ ├── shine143.jpg │ ├── shine144.jpg │ ├── shine145.jpg │ ├── shine146.jpg │ ├── shine147.jpg │ ├── shine148.jpg │ ├── shine149.jpg │ ├── shine150.jpg │ ├── shine151.jpg │ ├── shine152.jpg │ ├── shine153.jpg │ ├── shine154.jpg │ ├── shine155.jpg │ ├── shine156.jpg │ ├── shine157.jpg │ ├── shine158.jpg │ ├── shine159.jpg │ ├── shine160.jpg │ ├── shine161.jpg │ ├── shine162.jpg │ ├── shine163.jpg │ ├── shine164.jpg │ ├── shine165.jpg │ ├── shine166.jpg │ ├── shine167.jpg │ ├── shine168.jpg │ ├── shine169.jpg │ ├── shine170.jpg │ ├── shine171.jpg │ ├── shine172.jpg │ ├── shine173.jpg │ ├── shine174.jpg │ ├── shine175.jpg │ ├── shine176.jpg │ ├── shine177.jpg │ ├── shine178.jpg │ ├── shine179.jpg │ ├── shine180.jpg │ ├── shine181.jpg │ ├── shine182.jpg │ ├── shine183.jpg │ ├── shine184.jpg │ ├── shine185.jpg │ ├── shine186.jpg │ ├── shine187.jpg │ ├── shine188.jpg │ ├── shine189.jpg │ ├── shine190.jpg │ ├── shine191.jpg │ ├── shine192.jpg │ ├── shine193.jpg │ ├── shine194.jpg │ ├── shine195.jpg │ ├── shine196.jpg │ ├── shine197.jpg │ ├── shine198.jpg │ ├── shine199.jpg │ ├── shine200.jpg │ ├── shine201.jpg │ ├── shine202.jpg │ ├── shine203.jpg │ ├── shine204.jpg │ ├── shine205.jpg │ ├── shine206.jpg │ ├── shine207.jpg │ ├── shine208.jpg │ ├── shine209.jpg │ ├── shine210.jpg │ ├── shine211.jpg │ ├── shine212.jpg │ ├── shine213.jpg │ ├── shine214.jpg │ ├── shine215.jpg │ ├── shine216.jpg │ ├── shine217.jpg │ ├── shine218.jpg │ ├── shine219.jpg │ ├── shine220.jpg │ ├── shine221.jpg │ ├── shine222.jpg │ ├── shine223.jpg │ ├── shine224.jpg │ ├── shine225.jpg │ ├── shine226.jpg │ ├── shine227.jpg │ ├── shine228.jpg │ ├── shine229.jpg │ ├── shine230.jpg │ ├── shine231.jpg │ ├── shine232.jpg │ ├── shine233.jpg │ ├── shine234.jpg │ ├── shine235.jpg │ ├── shine236.jpg │ ├── shine237.jpg │ ├── shine238.jpg │ ├── shine239.jpg │ ├── shine240.jpg │ ├── shine241.jpg │ ├── shine242.jpg │ ├── shine243.jpg │ ├── shine244.jpg │ ├── shine245.jpg │ ├── shine246.jpg │ ├── shine247.jpg │ ├── shine248.jpg │ ├── shine249.jpg │ ├── shine250.jpg │ ├── shine251.jpg │ ├── shine252.jpg │ └── shine253.jpg │ └── sunrise │ ├── sunrise151.jpg │ ├── sunrise152.jpg │ ├── sunrise153.jpg │ ├── sunrise154.jpg │ ├── sunrise155.jpg │ ├── sunrise156.jpg │ ├── sunrise157.jpg │ ├── sunrise158.jpg │ ├── sunrise159.jpg │ ├── sunrise160.jpg │ ├── sunrise161.jpg │ ├── sunrise162.jpg │ ├── sunrise163.jpg │ ├── sunrise164.jpg │ ├── sunrise165.jpg │ ├── sunrise166.jpg │ ├── sunrise167.jpg │ ├── sunrise168.jpg │ ├── sunrise169.jpg │ ├── sunrise170.jpg │ ├── sunrise171.jpg │ ├── sunrise172.jpg │ ├── sunrise173.jpg │ ├── sunrise174.jpg │ ├── sunrise175.jpg │ ├── sunrise176.jpg │ ├── sunrise177.jpg │ ├── sunrise178.jpg │ ├── sunrise179.jpg │ ├── sunrise180.jpg │ ├── sunrise181.jpg │ ├── sunrise182.jpg │ ├── sunrise183.jpg │ ├── sunrise184.jpg │ ├── sunrise185.jpg │ ├── sunrise186.jpg │ ├── sunrise187.jpg │ ├── sunrise188.jpg │ ├── sunrise189.jpg │ ├── sunrise190.jpg │ ├── sunrise191.jpg │ ├── sunrise192.jpg │ ├── sunrise193.jpg │ ├── sunrise194.jpg │ ├── sunrise195.jpg │ ├── sunrise196.jpg │ ├── sunrise197.jpg │ ├── sunrise198.jpg │ ├── sunrise199.jpg │ ├── sunrise200.jpg │ ├── sunrise201.jpg │ ├── sunrise202.jpg │ ├── sunrise203.jpg │ ├── sunrise204.jpg │ ├── sunrise205.jpg │ ├── sunrise206.jpg │ ├── sunrise207.jpg │ ├── sunrise208.jpg │ ├── sunrise209.jpg │ ├── sunrise210.jpg │ ├── sunrise211.jpg │ ├── sunrise212.jpg │ ├── sunrise213.jpg │ ├── sunrise214.jpg │ ├── sunrise215.jpg │ ├── sunrise216.jpg │ ├── sunrise217.jpg │ ├── sunrise218.jpg │ ├── sunrise219.jpg │ ├── sunrise220.jpg │ ├── sunrise221.jpg │ ├── sunrise222.jpg │ ├── sunrise223.jpg │ ├── sunrise224.jpg │ ├── sunrise225.jpg │ ├── sunrise226.jpg │ ├── sunrise227.jpg │ ├── sunrise228.jpg │ ├── sunrise229.jpg │ ├── sunrise230.jpg │ ├── sunrise231.jpg │ ├── sunrise232.jpg │ ├── sunrise233.jpg │ ├── sunrise234.jpg │ ├── sunrise235.jpg │ ├── sunrise236.jpg │ ├── sunrise237.jpg │ ├── sunrise238.jpg │ ├── sunrise239.jpg │ ├── sunrise240.jpg │ ├── sunrise241.jpg │ ├── sunrise242.jpg │ ├── sunrise243.jpg │ ├── sunrise244.jpg │ ├── sunrise245.jpg │ ├── sunrise246.jpg │ ├── sunrise247.jpg │ ├── sunrise248.jpg │ ├── sunrise249.jpg │ ├── sunrise250.jpg │ ├── sunrise251.jpg │ ├── sunrise252.jpg │ ├── sunrise253.jpg │ ├── sunrise254.jpg │ ├── sunrise255.jpg │ ├── sunrise256.jpg │ ├── sunrise257.jpg │ ├── sunrise258.jpg │ ├── sunrise259.jpg │ ├── sunrise260.jpg │ ├── sunrise261.jpg │ ├── sunrise262.jpg │ ├── sunrise263.jpg │ ├── sunrise264.jpg │ ├── sunrise265.jpg │ ├── sunrise266.jpg │ ├── sunrise267.jpg │ ├── sunrise268.jpg │ ├── sunrise269.jpg │ ├── sunrise270.jpg │ ├── sunrise271.jpg │ ├── sunrise272.jpg │ ├── sunrise273.jpg │ ├── sunrise274.jpg │ ├── sunrise275.jpg │ ├── sunrise276.jpg │ ├── sunrise277.jpg │ ├── sunrise278.jpg │ ├── sunrise279.jpg │ ├── sunrise280.jpg │ ├── sunrise281.jpg │ ├── sunrise282.jpg │ ├── sunrise283.jpg │ ├── sunrise284.jpg │ ├── sunrise285.jpg │ ├── sunrise286.jpg │ ├── sunrise287.jpg │ ├── sunrise288.jpg │ ├── sunrise289.jpg │ ├── sunrise290.jpg │ ├── sunrise291.jpg │ ├── sunrise292.jpg │ ├── sunrise293.jpg │ ├── sunrise294.jpg │ ├── sunrise295.jpg │ ├── sunrise296.jpg │ ├── sunrise297.jpg │ ├── sunrise298.jpg │ ├── sunrise299.jpg │ ├── sunrise300.jpg │ ├── sunrise301.jpg │ ├── sunrise302.jpg │ ├── sunrise303.jpg │ ├── sunrise304.jpg │ ├── sunrise305.jpg │ ├── sunrise306.jpg │ ├── sunrise307.jpg │ ├── sunrise308.jpg │ ├── sunrise309.jpg │ ├── sunrise310.jpg │ ├── sunrise311.jpg │ ├── sunrise312.jpg │ ├── sunrise313.jpg │ ├── sunrise314.jpg │ ├── sunrise315.jpg │ ├── sunrise316.jpg │ ├── sunrise317.jpg │ ├── sunrise318.jpg │ ├── sunrise319.jpg │ ├── sunrise320.jpg │ ├── sunrise321.jpg │ ├── sunrise322.jpg │ ├── sunrise323.jpg │ ├── sunrise324.jpg │ ├── sunrise325.jpg │ ├── sunrise326.jpg │ ├── sunrise327.jpg │ ├── sunrise328.jpg │ ├── sunrise329.jpg │ ├── sunrise330.jpg │ ├── sunrise331.jpg │ ├── sunrise332.jpg │ ├── sunrise333.jpg │ ├── sunrise334.jpg │ ├── sunrise335.jpg │ ├── sunrise336.jpg │ ├── sunrise337.jpg │ ├── sunrise338.jpg │ ├── sunrise339.jpg │ ├── sunrise340.jpg │ ├── sunrise341.jpg │ ├── sunrise342.jpg │ ├── sunrise343.jpg │ ├── sunrise344.jpg │ ├── sunrise345.jpg │ ├── sunrise346.jpg │ ├── sunrise347.jpg │ ├── sunrise348.jpg │ ├── sunrise349.jpg │ ├── sunrise350.jpg │ ├── sunrise351.jpg │ ├── sunrise352.jpg │ ├── sunrise353.jpg │ ├── sunrise354.jpg │ ├── sunrise355.jpg │ ├── sunrise356.jpg │ └── sunrise357.jpg ├── notebooks ├── 00_DNN_Regression.ipynb ├── 01_DNN_Classification.ipynb ├── 02_CNN_Img_Classification.ipynb ├── 03_RNN_Text_Classification.ipynb ├── 04_LSTM_Ts_Prediction.ipynb ├── 05_Bidirectional_RNN_Text_Classification.ipynb ├── 06_Autoencoder_Anomaly_Detection.ipynb └── 07_Variational_Autoencoder_Anomaly_Detection.ipynb └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: mrtkp9993 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/README.md -------------------------------------------------------------------------------- /codes/00_DNN_Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/00_DNN_Regression.py -------------------------------------------------------------------------------- /codes/01_DNN_Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/01_DNN_Classification.py -------------------------------------------------------------------------------- /codes/02_CNN_Img_Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/02_CNN_Img_Classification.py -------------------------------------------------------------------------------- /codes/03_RNN_Text_Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/03_RNN_Text_Classification.py -------------------------------------------------------------------------------- /codes/04_LSTM_Ts_Prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/04_LSTM_Ts_Prediction.py -------------------------------------------------------------------------------- /codes/06_Autoencoder_Anomaly_Detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/codes/06_Autoencoder_Anomaly_Detection.py -------------------------------------------------------------------------------- /data/Metro_Interstate_Traffic_Volume.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/Metro_Interstate_Traffic_Volume.csv -------------------------------------------------------------------------------- /data/SeoulBikeData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/SeoulBikeData.csv -------------------------------------------------------------------------------- /data/SouthGermanCredit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/SouthGermanCredit.csv -------------------------------------------------------------------------------- /data/breastw.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/breastw.mat -------------------------------------------------------------------------------- /data/clinc150_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/clinc150_full.json -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy1.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy10.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy100.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy101.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy102.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy103.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy104.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy105.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy106.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy107.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy108.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy109.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy11.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy110.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy111.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy112.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy113.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy114.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy115.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy116.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy117.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy118.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy119.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy12.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy120.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy121.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy122.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy123.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy124.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy125.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy126.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy127.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy128.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy129.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy13.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy130.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy131.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy132.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy133.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy134.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy135.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy136.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy137.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy138.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy139.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy14.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy140.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy141.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy142.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy143.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy144.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy145.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy146.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy147.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy148.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy149.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy15.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy150.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy16.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy17.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy18.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy19.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy2.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy20.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy21.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy22.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy23.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy24.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy25.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy26.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy27.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy28.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy29.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy3.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy30.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy31.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy32.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy33.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy34.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy35.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy36.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy37.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy38.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy39.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy4.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy40.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy41.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy42.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy43.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy44.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy45.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy46.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy47.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy48.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy49.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy5.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy50.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy51.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy52.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy53.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy54.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy55.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy56.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy57.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy58.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy59.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy6.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy60.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy61.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy62.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy63.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy64.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy65.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy66.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy67.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy68.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy69.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy7.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy70.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy71.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy72.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy73.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy74.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy75.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy76.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy77.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy78.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy79.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy8.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy80.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy81.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy82.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy83.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy84.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy85.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy86.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy87.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy88.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy89.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy9.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy90.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy91.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy92.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy93.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy94.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy95.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy96.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy97.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy98.jpg -------------------------------------------------------------------------------- /data/weather/train/cloudy/cloudy99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/cloudy/cloudy99.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain1.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain10.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain100.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain11.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain12.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain13.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain14.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain15.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain16.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain17.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain18.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain19.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain2.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain20.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain21.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain22.jpeg -------------------------------------------------------------------------------- /data/weather/train/rain/rain23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain23.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain24.jpeg -------------------------------------------------------------------------------- /data/weather/train/rain/rain25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain25.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain26.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain27.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain28.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain29.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain3.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain30.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain31.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain32.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain33.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain34.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain35.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain36.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain37.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain38.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain39.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain4.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain40.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain41.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain42.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain43.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain44.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain45.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain46.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain47.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain48.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain49.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain5.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain50.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain51.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain52.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain53.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain54.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain55.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain56.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain57.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain58.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain59.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain6.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain60.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain61.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain62.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain63.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain64.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain65.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain66.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain67.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain68.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain69.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain7.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain70.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain71.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain72.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain73.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain74.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain75.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain76.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain77.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain78.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain79.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain8.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain80.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain81.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain82.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain83.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain84.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain85.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain86.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain87.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain88.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain89.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain9.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain90.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain91.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain92.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain93.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain94.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain95.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain96.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain97.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain98.jpg -------------------------------------------------------------------------------- /data/weather/train/rain/rain99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/rain/rain99.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine1.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine10.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine100.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine101.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine102.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine103.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine104.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine105.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine106.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine107.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine108.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine109.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine11.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine110.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine111.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine112.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine113.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine114.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine115.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine116.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine117.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine118.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine119.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine12.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine120.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine121.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine122.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine123.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine124.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine125.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine126.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine127.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine128.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine129.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine13.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine130.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine131.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine132.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine133.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine134.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine135.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine136.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine137.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine138.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine139.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine14.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine140.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine15.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine16.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine17.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine18.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine19.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine2.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine20.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine21.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine22.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine23.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine24.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine25.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine26.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine27.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine28.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine29.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine3.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine30.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine31.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine32.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine33.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine34.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine35.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine36.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine37.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine38.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine39.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine4.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine40.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine41.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine42.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine43.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine44.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine45.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine46.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine47.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine48.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine49.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine5.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine50.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine51.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine52.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine53.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine54.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine55.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine56.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine57.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine58.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine59.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine6.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine60.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine61.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine62.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine63.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine64.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine65.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine66.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine67.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine68.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine69.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine7.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine70.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine71.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine72.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine73.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine74.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine75.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine76.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine77.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine78.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine79.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine8.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine80.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine81.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine82.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine83.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine84.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine85.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine86.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine87.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine88.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine89.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine89.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine9.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine90.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine91.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine92.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine93.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine94.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine95.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine96.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine97.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine98.jpg -------------------------------------------------------------------------------- /data/weather/train/shine/shine99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/shine/shine99.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise1.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise10.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise100.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise101.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise102.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise103.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise104.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise105.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise106.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise107.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise108.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise109.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise11.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise110.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise111.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise112.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise113.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise114.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise115.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise116.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise117.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise118.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise119.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise12.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise120.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise121.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise122.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise123.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise124.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise125.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise126.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise127.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise128.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise129.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise13.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise130.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise131.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise132.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise133.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise134.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise135.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise136.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise137.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise138.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise139.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise14.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise140.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise141.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise142.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise143.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise144.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise145.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise146.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise147.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise148.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise149.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise15.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise150.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise16.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise17.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise18.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise19.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise2.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise20.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise21.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise22.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise23.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise24.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise25.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise26.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise27.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise28.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise29.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise3.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise30.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise31.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise32.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise33.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise34.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise35.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise36.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise37.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise38.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise39.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise4.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise40.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise41.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise42.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise43.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise44.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise45.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise46.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise47.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise48.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise49.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise5.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise50.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise51.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise52.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise53.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise54.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise55.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise56.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise57.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise58.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise59.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise6.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise60.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise61.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise62.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise63.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise64.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise65.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise66.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise67.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise68.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise69.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise7.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise70.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise71.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise72.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise73.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise74.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise75.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise76.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise77.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise78.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise79.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise8.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise80.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise81.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise81.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise82.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise82.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise83.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise83.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise84.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise84.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise85.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise86.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise86.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise87.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise87.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise88.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise89.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise89.jpeg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise9.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise90.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise91.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise91.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise92.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise93.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise93.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise94.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise94.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise95.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise95.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise96.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise97.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise97.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise98.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise98.jpg -------------------------------------------------------------------------------- /data/weather/train/sunrise/sunrise99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/train/sunrise/sunrise99.jpg -------------------------------------------------------------------------------- /data/weather/validation/cloudy/cloudy151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/cloudy/cloudy151.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain101.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain102.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain102.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain103.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain103.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain104.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain105.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain105.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain106.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain107.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain108.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain109.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain109.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain110.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain111.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain112.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain113.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain114.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain114.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain115.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain116.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain117.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain118.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain119.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain119.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain120.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain120.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain121.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain122.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain122.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain123.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain124.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain125.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain125.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain126.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain127.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain127.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain128.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain129.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain130.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain131.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain132.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain133.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain134.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain134.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain135.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain135.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain136.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain136.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain137.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain138.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain138.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain139.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain139.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain140.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain141.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain142.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain143.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain144.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain145.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain146.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain147.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain148.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain149.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain150.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain151.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain152.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain153.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain154.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain155.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain156.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain157.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain158.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain159.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain160.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain161.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain162.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain163.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain164.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain165.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain166.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain167.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain168.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain169.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain170.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain171.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain172.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain173.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain174.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain175.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain176.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain177.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain178.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain179.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain180.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain181.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain182.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain183.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain184.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain185.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain186.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain187.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain188.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain189.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain190.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain191.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain192.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain193.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain194.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain195.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain196.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain196.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain197.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain198.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain199.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain200.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain201.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain202.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain203.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain204.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain204.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain205.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain206.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain207.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain208.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain209.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain209.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain210.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain211.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain212.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain213.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain214.jpg -------------------------------------------------------------------------------- /data/weather/validation/rain/rain215.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/rain/rain215.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine141.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine142.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine142.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine143.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine143.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine144.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine145.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine146.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine146.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine147.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine148.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine148.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine149.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine149.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine150.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine150.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine151.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine152.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine153.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine153.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine154.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine154.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine155.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine156.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine156.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine157.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine158.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine158.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine159.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine159.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine160.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine161.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine161.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine162.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine162.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine163.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine164.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine165.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine165.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine166.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine166.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine167.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine167.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine168.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine169.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine169.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine170.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine171.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine171.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine172.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine172.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine173.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine173.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine174.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine174.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine175.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine176.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine176.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine177.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine177.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine178.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine178.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine179.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine179.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine180.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine181.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine181.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine182.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine183.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine183.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine184.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine185.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine186.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine186.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine187.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine187.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine188.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine189.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine190.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine190.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine191.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine192.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine193.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine193.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine194.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine194.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine195.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine195.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine196.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine196.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine197.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine198.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine198.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine199.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine200.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine201.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine202.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine203.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine203.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine204.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine204.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine205.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine206.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine206.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine207.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine208.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine209.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine209.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine210.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine210.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine211.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine212.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine213.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine213.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine214.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine215.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine215.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine216.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine216.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine217.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine218.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine218.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine219.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine220.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine221.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine221.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine222.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine223.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine224.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine224.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine225.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine225.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine226.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine226.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine227.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine227.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine228.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine228.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine229.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine229.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine230.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine230.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine231.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine231.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine232.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine233.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine234.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine235.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine235.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine236.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine237.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine238.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine239.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine239.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine240.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine240.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine241.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine242.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine243.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine243.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine244.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine245.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine245.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine246.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine247.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine247.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine248.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine248.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine249.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine249.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine250.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine251.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine251.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine252.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine252.jpg -------------------------------------------------------------------------------- /data/weather/validation/shine/shine253.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/data/weather/validation/shine/shine253.jpg -------------------------------------------------------------------------------- /notebooks/00_DNN_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/notebooks/00_DNN_Regression.ipynb -------------------------------------------------------------------------------- /notebooks/01_DNN_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/notebooks/01_DNN_Classification.ipynb -------------------------------------------------------------------------------- /notebooks/02_CNN_Img_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/notebooks/02_CNN_Img_Classification.ipynb -------------------------------------------------------------------------------- /notebooks/03_RNN_Text_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/notebooks/03_RNN_Text_Classification.ipynb -------------------------------------------------------------------------------- /notebooks/04_LSTM_Ts_Prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/notebooks/04_LSTM_Ts_Prediction.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrtkp9993/DeepLearningExamples/HEAD/requirements.txt --------------------------------------------------------------------------------