日B视频 亚洲,啪啪啪网站一区二区,91色情精品久久,日日噜狠狠色综合久,超碰人妻少妇97在线,999青青视频,亚洲一区二卡,让本一区二区视频,日韩网站推荐

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

簡述開放域長格式問答系統(tǒng)的進步與挑戰(zhàn)

Tensorflowers ? 來源:Google Research 研究員 Aurko ? 作者:Google Research 研究員 ? 2021-05-31 10:02 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

發(fā)布人:Google Research 研究員 Aurko Roy

開放域長格式問答 (LFQA) 是自然語言處理 (NLP) 的一項基礎(chǔ)挑戰(zhàn),涉及檢索與給定問題相關(guān)的文檔,并使用這些文檔來生成一段詳盡答案。在事實型開放域問答 (QA) 中,簡單的短語或?qū)嶓w便足以回答問題。雖然我們近期在這一方面取得了顯著進展,但在長格式問答領(lǐng)域中卻做得遠遠不夠。盡管如此,LFQA 仍是一項非常重要的任務(wù),特別是它能提供一個測試平臺來衡量生成文本模型的真實性。但是,當前的基準和評估指標真的能在 LFQA 方面取得進展嗎?

在“在長格式問答領(lǐng)域取得進展的障礙”(Hurdles to Progress in Long-form Question Answering)(將在 NAACL 2021 會議上發(fā)表)中,我們介紹了一種新的開放域長格式問答系統(tǒng),它利用了 NLP 的兩項最新進展:

1.最先進的稀疏注意力模型(例如 Routing Transformer(RT)),能夠?qū)⒒谧⒁饬Φ哪P蛿U展至長序列;

2.基于檢索的模型(例如 REALM),有助于檢索與給定查詢相關(guān)的維基百科文章。

Routing Transformer

https://www.mitpressjournals.org/doi/full/10.1162/tacl_a_00353

為獲得更多的事實依據(jù),對于檢索到的與給定問題相關(guān)的一些維基百科文章,我們的系統(tǒng)會在答案生成之前將從中獲得的信息結(jié)合起來 ELI5 是唯一一個可用于長格式問答的大規(guī)模公開數(shù)據(jù)集,我們的系統(tǒng)在該數(shù)據(jù)集上取得了突破性進展。

ELI5

https://ai.facebook.com/blog/longform-qa/

不過,雖然這個系統(tǒng)在公開排行榜上名列前茅,但我們發(fā)現(xiàn) ELI5 數(shù)據(jù)集及其相關(guān)評估指標的一些趨勢令人擔憂。特別要強調(diào)的是,我們發(fā)現(xiàn) 1) 幾乎沒有證據(jù)表明模型實際使用了它們所要求的檢索;2) 平凡基線(例如輸入復(fù)制)擊敗了現(xiàn)代系統(tǒng),如 RAG/BART+DPR;以及 3) 數(shù)據(jù)集中存在大量訓(xùn)練/驗證重疊。我們的論文針對每一個問題提出了緩解策略。

輸入復(fù)制

https://eval.ai/web/challenges/challenge-page/689/leaderboard/1908#leaderboardrank-6

文本生成

NLP 模型的核心要件是 Transformer 架構(gòu),其序列中的每個 Token 都會關(guān)注序列中的其他所有 Toekn,從而形成一個隨序列長度呈二次增長的模型。RT 模型引入了一種基于內(nèi)容的動態(tài)稀疏注意力機制,將 Transformer 模型中的注意力復(fù)雜度從 n2 降到了 n1.5( 其中 n 是序列長度),使其能夠擴展到長序列。這使得每個單詞都可以關(guān)注整個文本中 任何地方的其他相關(guān)單詞, 而不像 Transformer XL 等類似方法,一個單詞只能關(guān)注其附近的單詞。

RT 發(fā)揮作用的關(guān)鍵在于每個 Token 對其他 Token 的關(guān)注通常是冗余的,并且可以通過結(jié)合局部和全局注意力進行估算。局部注意力允許每個 Token 在模型的幾個層上建立一個局部表征,其中每個 Token 關(guān)注一個局部鄰域,從而達到局部的一致性和流暢性。作為對局部注意力的補充,RT 模型還使用了小批量 k-均值集群, 使每個 Token 只關(guān)注一組最相關(guān)的 Token 。

我們以語言建模為目標,使用 ProjectGutenberg(PG-19) 數(shù)據(jù)集預(yù)先訓(xùn)練了一個 RT 模型,即在給定前面所有單詞的情況下,讓該模型學(xué)會預(yù)測下一個單詞,從而能夠生成流利的段落長文本。

ProjectGutenberg(PG-19)

https://deepmind.com/blog/article/A_new_model_and_dataset_for_long-range_memory

信息檢索

為了證明 RT 模型在 LFQA 任務(wù)中的有效性,我們將其與 REALM 中檢索到的內(nèi)容結(jié)合使用。REALM 模型(Guu 等人于 2020 年發(fā)布)是基于檢索的模型,使用最大內(nèi)積搜索來檢索與特定查詢或問題相關(guān)的維基百科文章。我們對該模型進行了微調(diào),以便根據(jù)自然問題數(shù)據(jù)集作出事實型問答。REALM 利用 BERT 模型學(xué)習問題的良好表征,并使用 SCANN 檢索與問題表征具有高度主題相似性的維基百科文章。接著進行端到端訓(xùn)練,以最大程度地提高 QA 任務(wù)的對數(shù)似然值。

通過使用對比損失,我們進一步提高了 REALM 檢索的質(zhì)量。其背后的想法是讓問題表征更靠近其基本事實答案,并與其他小批量答案有所不同。這樣可以確保,當系統(tǒng)使用此問題表征檢索相關(guān)項目時,會返回與基本事實答案“類似”的文章。我們稱這種檢索器為對比型-REALM 或 c-REALM。

對比損失

https://towardsdatascience.com/contrastive-loss-explaned-159f2d4a87ec

評估

我們使用 ELI5 數(shù)據(jù)集對該模型進行了長格式問答測試。ELI5 數(shù)據(jù)集是 KILT 基準的一部分, 也是唯一 公開可用的大規(guī)模 LFQA 數(shù)據(jù)集。KILT 基準使用準確率 (R-Prec) 衡量文本檢索質(zhì)量,并使用 ROUGE-L 衡量文本生成質(zhì)量。將這兩項得分相加即可得出一個 KILT R-L 得分,該得分決定了模型在排行榜上的排名。在 KILT 的 ELI5 數(shù)據(jù)集上,我們對預(yù)先訓(xùn)練好的 RT 模型和 c-REALM 檢索進行了微調(diào)。

我們提交的內(nèi)容在 ELI5 長格式問答 KILT 排行榜上名列前茅,綜合 KILT R-L 得分為 2.36。對比先前 BART + DPR 排行榜的排名(KILT R-L 得分為 1.9)有了提升,同時具有與排行榜上其他模型相似的參數(shù)數(shù)量。在文本生成質(zhì)量方面,我們發(fā)現(xiàn) Rouge-L 與 T5、BART + DPR 和 RAG 相比,得分分別提高了 4.11、5.78 和 9.14。

排行榜

https://eval.ai/web/challenges/challenge-page/689/leaderboard/1908

RT 模型生成的示例

Q1

Why are almost all boats white?

Boats are generally painted white for obvious reasons, as they are inexpensive and easy to clean. Ships are also often painted to provide a visible visual contrast to the sea. Boats also often have high visibility ports to allow for easy international trade.

In addition, many boats have an air-breathing function that makes them easier to spot and stay afloat, which is a good thing if you're a pirate or trying to get into some country's waters. Lastly, many ships are built in the last few decades, so they are not as exotic looking as they were thirty years ago.

And lastly, many ships are made out of materials that are easy to work with, and so many of them are painted white as a practical matter. There are many, many more reasons for why ships are white, but those are the ones I know of. I'm sure there are many other reasons, but those are the ones I know of.

Edit: I forgot to mention that the other answers about visibility and easy to see ports are also true. Ships are painted to appear to be larger, and more expensive. That makes them appear more impressive, and so they are more likely to be bought by people who want to show off their wealth and status.

Q2

What causes the trail behind jets at high altitude?

The same thing that causes the clouds you see at the start of a storm to form in the first place. The air pressure changes as the jet moves through the air, causing it to cool down and condense into water droplets. These droplets are in fact a lot bigger than the water droplets in the clouds, so when the plane passes through them, they can cause the air pressure to change, causing the water droplets to condense into clouds.

This is what you see when you look at a cloud formation from the ground. In addition to this, when the plane passes through the clouds, it also moves through the air, causing it to change its temperature, causing the water droplets to condense and form clouds.

These clouds are often quite large, and can block out the sun. This is what you see when you look at a contrail. Finally, the water vapor that forms at high altitudes is cooled by the air above, and as it cools, it condenses into clouds. This is what you see when you look at a cumulonimbus cloud. These clouds are even larger than the water droplets in the clouds, and they block out the sun.

Q3

How do shampoo and conditioner work?

The key ingredients in shampoo and conditioner are usually surfactants, they tend to attract oil from your skin. Shampoo will usually contain an anti-dandruff agent (dandruff is caused by fungi in your skin which cause dandruff). They also contain some moisturizing agents (moisturizers are things that stay in your skin longer and protect your scalp from cleaning),

And a lot of anti-dandruff (dandruff is a side effect of high doses of both surfactants and moisturizers) Conditioner will contain moisturizing agents, like a skin moisturizer. They tend to cause oils to be separated from your hair (e.g. wash your hair with conditioner instead of shampoo). They both have a foaming agent that makes them foam up (usually Hydrogen Peroxide). They also have a foaming agent that stops dirt from attaching to your hair. Some conditioner will also suppress the action of the shampoo (to help prevent dirt from attaching to your hair).

Q4

When glancing at a clock, why does the first second after glancing at it sometimes feel longer than the rest?

This is known as chronostasis. Your brain gets used to seeing the second hand move after the first, so it ignores the first one. If you were to look at the clock a lot, you'd see the second hand move a lot more than the first, and you'd be able to tell the difference between the second and the first.

The second hand will appear to move much slower than the first hand because your brain is used to seeing the second hand move a lot more than the first. If you were to go on a long trip, you'd get used to the second hand moving a lot more than the first, and you'd have no problem telling the difference between the second and the first hand.

It's kind of like how you don't notice your nose when you're driving, but if you look at it for a while, you start to notice it. Your brain is just getting used to seeing the nose move a lot more than the other, and it can't tell the difference between the two. It's kind of like that with your eyes.

Q5

Why do Britain and other English empire countries still bow to monarchs? What real purpose does the queen serve?

Depends what you define as "purpose". There is no specific purpose for the British monarch - rather, they are figureheads that serve a role. The role is to have a high degree of influence over a country, though the rules of the monarchy can somewhat vary from country to country, and the ceremony of "kissing the royal corpse" does not always involve kissing the monarch. Whether that's the only reason for the custom, or if it was the only reason,

I can't say, but that's the reasoning. When the U.K. was in full power, the monarch was a puppet of Parliament, and the powers of the monarch were transferred to the Prime Minister and thus to the Prime Minister's deputy, who then became the Prime Minister. Since then, Parliament has been able to vote on legislation that goes through the monarch,

although they may still act as the monarch's representative in negotiating treaties, which can have very very deep consequences. The Queen's role, as a representative of Britain, doesn't necessarily involve her formal approval of any of the laws or legislation that goes through Parliament, though.

Q6

What exactly is fire, in detail? How can light and heat come from something we can't really touch?

Fire is the chemical reaction of fuel (oxygen) with (what we call) impurities (ash, soot, oil etc). These impurities are created due to a number of things. If you were to study the chemical composition of a log (or a candle) and analyse it you would discover the chemical formula (A, C, and G) which is a simplified version of what actually happens. There is always fuel, and there is always the ash/soot. Wood is made up of mostly carbon and hydrogen and these are the fuels that create the fire. Hydrogen and oxygen are reactive, and they form water (H2O) and CO2 (CO2). If we split a log into smaller pieces, we start to see the process of combustion as it occurs. The carbon is burned, and with the explosion of CO, H2O and H2CO2, we get water and carbon dioxide (mostly). If we smash a log together, we start to see what happens when we also hit another log with another log...imagine smashing two sand castles together. We see how the sand castles and brick castles form and collapse at different rates...then it starts to burn. The smoke, ash and flames are the actual combustion of fuel.

Q7

What goes on in those tall tower buildings owned by major banks?

The actual buildings are not there for profit but for show. There are many real world historical buildings that have little to no effect other than being a symbol of an economic entity or symbol of an era or location, and nothing more. For example look at Sears, Sears didn't care what went on inside, it was all about the \_appearance\_ of its location, the prestige of the location, the facilities and so on. It didn't care about how long it took it to operate, it was about how much people would pay to go see it. Sears was a landmark as a cultural movement and other big companies followed suit, so if you want to see a building you've never seen before, you have to go see Sears, just like you have to see a Toyota Camry for Toyota Camry. They used to be all about building new factories, some of them if I recall, but now that they're bigger, that means that more factory jobs are coming to them. You've probably seen them in stores as stores where people buy and sell stuff, so there aren't that many places for them to come from. Instead, it's just for show, a symbol of rich people.

在 LFQA 領(lǐng)域取得進展的障礙

不過,雖然此處介紹的 RT 系統(tǒng)在公開排行榜中名列前茅,但對模型和 ELI5 數(shù)據(jù)庫的詳細分析仍揭示了一些令人擔憂的趨勢。

Train/Valid Overlap

Many held-out questions are paraphrased in the training set. Best answer to similar train questions gets 27.4 ROUGE-L.

Lack of Grounding

Conditioning answer generation on random documents instead of relevant ones does not measurably impact its factual correctness. Longer outputs get higher ROUGE-L.

我們發(fā)現(xiàn),幾乎沒有任何證據(jù)表明模型會將其文本生成實際定位到檢索文檔中。與 Wikipedia 中的隨機檢索搭配使用的微調(diào) RT 模型(例如,隨機檢索 + RT),幾乎與 c-REALM + RT 模型(24.2 與 24.4 ROUGE-L)表現(xiàn)得一樣好。在訓(xùn)練、驗證和測試 ELI5 數(shù)據(jù)集時,我們還發(fā)現(xiàn)了很多的重疊(幾個問題相互解釋),因此可能不再需要檢索。KILT 基準會單獨衡量檢索和生成的質(zhì)量,但不確定文本生成是否會在實際情況中使用檢索。

與 RAG 和 BART + DPR 相比,平凡基線會獲得更高的 Rouge-L 分數(shù)

此外,在使用 Rouge-L 指標和平凡無意義基線(如隨機訓(xùn)練集答案和輸入復(fù)制)來評估文本生成質(zhì)量的過程中,我們發(fā)現(xiàn)了一些問題,并導(dǎo)致 Rouge-L 分數(shù)相對較高(甚至超過了 BART + DPR 和 RAG)。

結(jié)論

我們?yōu)榛?Routing Transformers 和 REALM 的長格式問答推出了一個系統(tǒng),該系統(tǒng)在關(guān)于 ELI5 的 KILT 排行榜中名列前茅。但是,詳細的分析揭示了存在的一些問題,即無法使用基準來顯示有意義的建模進展。我們希望社區(qū)共同合作,一起解決這些問題,以便研究人員向正確的高峰攀登,在這個充滿挑戰(zhàn)但十分重要的任務(wù)中取得有意義的進展。

致謝

Routing Transformer 是 Aurko Roy、Mohammad Saffar、Ashish Vaswani 和 David Grangier 等人進行團隊協(xié)作的結(jié)果。有關(guān)開放域長格式問答的后續(xù)工作是由 Kalpesh Krishna、Aurko Roy 和 Mohit Iyyer 協(xié)作完成的。我們要感謝 Vidhisha Balachandran、Niki Parmar 和 Ashish Vaswani 提供的多條實用意見,感謝 REALM 團隊 (Kenton Lee、Kelvin Guu、Ming-Wei Chang 和 Zora Tung) 在代碼庫方面提供的幫助以及多條實用意見,這些意見幫助我們進一步完善了實驗。

我們非常感謝 Tu Vu 針對 QQP 分類器提供的幫助,這些分類器用于在 ELI5 訓(xùn)練集和測試集中檢測解釋。感謝 Jules Gagnon-Marchand 和 Sewon Min 對檢查 ROUGE-L 邊界提供的有用實驗建議。最后,感謝 Shufan Wang、Andrew Drozdov、Nader Akoury 以及 UMass NLP 小組的其他成員針對項目的不同階段提出的實用意見和建議。

編輯:jq

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 數(shù)據(jù)集
    +關(guān)注

    關(guān)注

    4

    文章

    1240

    瀏覽量

    26264
  • nlp
    nlp
    +關(guān)注

    關(guān)注

    1

    文章

    491

    瀏覽量

    23347

原文標題:開放域長格式問答系統(tǒng)的進步與挑戰(zhàn)

文章出處:【微信號:tensorflowers,微信公眾號:Tensorflowers】歡迎添加關(guān)注!文章轉(zhuǎn)載請注明出處。

收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關(guān)推薦
    熱點推薦

    華為智擎構(gòu)建運動全新架構(gòu)助力智能汽車發(fā)展

    “動”,運動是新能源汽車執(zhí)行層的物理基礎(chǔ),涵蓋驅(qū)動、制動、轉(zhuǎn)向、懸架等系統(tǒng),是對傳統(tǒng)動力和底盤的重新定義。
    的頭像 發(fā)表于 04-28 17:30 ?1066次閱讀

    Eclipse基金會到訪開放原子開源基金會座談交流

    3月26日,Eclipse基金會生態(tài)系統(tǒng)發(fā)展副總裁Michael Plagge到訪開放原子開源基金會,雙方就開源生態(tài)發(fā)展、項目合作等議題進行了交流。開放原子開源基金會秘書助理李博參加
    的頭像 發(fā)表于 03-30 11:31 ?521次閱讀

    京東方發(fā)布顯示行業(yè)首款全員開放AI問答系統(tǒng)

    2026年2月24日,BOE(京東方)正式發(fā)布基于京東方藍鯨顯示大模型的BOE AI 問答系統(tǒng),顯示行業(yè)內(nèi)率先面向企業(yè)全員開放應(yīng)用,以多項技術(shù)領(lǐng)先優(yōu)勢,樹立企業(yè)級AI創(chuàng)新應(yīng)用新標桿,標志著京東方以AI賦能開啟了智能驅(qū)動運營的新范
    的頭像 發(fā)表于 03-02 09:42 ?2613次閱讀

    小藝開放平臺平臺功能

    選擇插件、工作流,響應(yīng)用戶需求。LLM模式適用于簡單對話、知識問答、基礎(chǔ)內(nèi)容生成等場景。 工作流模式 工作流模式是一種基于規(guī)則化流程的智能體編排方式。開發(fā)者將復(fù)雜任務(wù)拆解為有序的規(guī)則化步驟(如數(shù)據(jù)獲取
    發(fā)表于 01-30 15:24

    航天宏圖與藍星光簽署戰(zhàn)略合作協(xié)議

    1月16日,航天宏圖與藍星光在安徽省宿州市簽署戰(zhàn)略合作協(xié)議。協(xié)議由航天宏圖董事王宇翔與藍星光創(chuàng)始人兼CEO閆志欣代表雙方共同簽署。
    的頭像 發(fā)表于 01-26 14:06 ?780次閱讀

    什么是位

    數(shù)據(jù)結(jié)構(gòu),稱為“位”或“位段”。 所謂“位”是把一個字節(jié)中的二進位劃分為幾個不同的區(qū)域,并說明每個區(qū)域的位數(shù)。 每個有一個域名,允許在程序中按域名進行操作。這樣就可以把幾個不同的對象用一個字
    發(fā)表于 12-15 08:07

    C語言位反轉(zhuǎn)的應(yīng)用

    反轉(zhuǎn)(Bit Reversal) unsigned int reverse_bits(unsigned int num) { unsigned int numOfBits = sizeof
    發(fā)表于 12-12 06:42

    時儲能元器件面臨三大挑戰(zhàn) 行業(yè)技術(shù)方案逐步落地

    電子發(fā)燒友網(wǎng)報道(文/黃山明)當前,在“雙碳”目標引領(lǐng)下,新能源發(fā)電占比持續(xù)提升,但風能、光伏的間歇性與波動性對電網(wǎng)穩(wěn)定運行構(gòu)成嚴峻挑戰(zhàn)。時儲能(通常指放電時長4小時以上的儲能系統(tǒng))作為解決新能源
    的頭像 發(fā)表于 12-07 08:35 ?1.1w次閱讀

    解讀

    、RAM、ROM、I/O、中斷系統(tǒng)、定時器/計數(shù)器等功能(有的還包括顯示驅(qū)動電路、脈寬調(diào)制電路、模擬多路轉(zhuǎn)換器、A/D轉(zhuǎn)換器等電路)集成到一塊硅片上構(gòu)成的一個小而完善的微型計算機系統(tǒng),在工控領(lǐng)域
    發(fā)表于 12-05 06:45

    openKylin榮獲2025年度中國計算機學(xué)會科技進步特等獎

    的“開放麒麟(openKylin)操作系統(tǒng)及開源社區(qū)”項目,憑借在核心技術(shù)突破與產(chǎn)業(yè)落地中的突出貢獻,榮獲科技進步特等獎。
    的頭像 發(fā)表于 09-26 14:46 ?896次閱讀

    HarmonyOSAI編程智能問答

    CodeGenie基于生成式搜索能力,通過查詢生成、內(nèi)容優(yōu)選服務(wù)高效理解用戶意圖,問答交互式地獲取編碼相關(guān)知識。 對話示例 在對話區(qū)域輸入需要查詢的問題,開始問答。示例如下: ArkTS如何實現(xiàn)
    發(fā)表于 09-03 16:17

    技術(shù)貼|【RK3588】ELF 2開發(fā)板如何添加exFAT和NTFS文件系統(tǒng)格式

    基于RK3588設(shè)計的ELF2開發(fā)板在搭載Desktop22.04系統(tǒng)時,對TF卡的文件系統(tǒng)支持存在以下限制:不支持exFAT格式;支持NTFS格式,但需手動掛載;針對上述兼容性問題,
    的頭像 發(fā)表于 08-27 17:21 ?3857次閱讀
    技術(shù)貼|【RK3588】ELF 2開發(fā)板如何添加exFAT和NTFS文件<b class='flag-5'>系統(tǒng)</b><b class='flag-5'>格式</b>

    HarmonyOS AI輔助編程工具(CodeGenie)智能問答

    CodeGenie基于生成式搜索能力,在對話區(qū)域下拉框中選擇所需要的智能體,通過查詢生成、內(nèi)容優(yōu)選服務(wù)高效理解用戶意圖,問答交互式地獲取編碼相關(guān)知識。 CodeGenie現(xiàn)接入小藝
    發(fā)表于 08-15 11:07

    2025電賽題目問答(已更新)

    2025電賽題目問答(已更新)
    的頭像 發(fā)表于 07-30 12:59 ?5864次閱讀
    2025電賽題目<b class='flag-5'>問答</b>(已更新)

    BMS HIL測試技術(shù)演進:高壓架構(gòu)、多融合與儲能系統(tǒng)應(yīng)用解析

    BMS通信適配、國標充電協(xié)議迭代、多融合協(xié)同測試等關(guān)鍵技術(shù)挑戰(zhàn),并拓展至儲能BMS主動均衡與多系統(tǒng)仿真需求,助力行業(yè)應(yīng)對能源變革。
    的頭像 發(fā)表于 05-19 14:56 ?2230次閱讀
    BMS HIL測試技術(shù)演進:高壓架構(gòu)、多<b class='flag-5'>域</b>融合與儲能<b class='flag-5'>系統(tǒng)</b>應(yīng)用解析
    仙桃市| 民权县| 来安县| 阿拉善右旗| 黔东| 陇西县| 莒南县| 香格里拉县| 洛阳市| 阆中市| 陵水| 井陉县| 固始县| 焉耆| 百色市| 巴楚县| 双鸭山市| 黎城县| 若羌县| 东辽县| 东丽区| 都江堰市| 桂东县| 镇江市| 贵定县| 宁阳县| 木里| 金阳县| 台中县| 措美县| 临西县| 屏东市| 米林县| 丹阳市| 莱阳市| 新昌县| 长顺县| 双柏县| 建昌县| 栖霞市| 无锡市|