Gantt-elastic as vue component. Take a look at the vue.html inside examples folder file to see how you could add gantt-elastic inside. I am Zihan (Johan) Liu (刘子涵). I received Bachelor Degree from Zhejiang University.Currently, I am a Ph.D. Candidate at Department of Electronic and Computer Engineering, The Hong Kong University of Science and Technology supervised by Prof. Pascale Fung in Center of AI Research.
Riverboats for sale or lease Cruise ships for sale or lease Casino ships for sale or lease. Facilities: Casinos need to be approx 12 tables and 100 slots minimum or sufficient area to accomodate. Whether this is your first casino vessel or you're expanding a casino flotilla, we can find the perfect ship for your needs. Ferries We can source any style or feature set you need, but if you see a vessel you like, act fast – our selection of ferry boats is in high demand.
Xu Xiao 徐啸¶
I am a Ph.D. student in Research Center for Social Computing and Information Retrieval at Harbin Institute of Technology (HIT, China) since 2020.
I am fortunately advised by Prof. Wanxiang Che.
I obtained B.S. degree in Northeastern University (NEU) in July 2020.
Please contact me via xxu@ir.hit.edu.cn.
Find me in: Google Scholar, Github, Zhihu.
Here is my new homepage.
News¶
- September 15, 2020. One paper was accepted to EMNLP 2020 (Accept-Findings).
- April 4, 2020. One paper was accepted by ACL 2020.
Research Interests¶
- Task-oriented Dialogue System, Natural Language Processing
Publications¶
Fun club casino no deposit bonus codes 2018. AGIF: An Adaptive Graph-Interactive Framework for Joint Multiple Intent Detection and Slot Filling.
Libo Qin, Xiao Xu, Wanxiang Che, Ting Liu. EMNLP 2020 Accept-Findings. [pdf(arxiv)]
Dynamic Fusion Network for Multi-Domain End-to-end Task-Oriented Dialog.
Libo Qin, Xiao Xu Printable calendar with hourly time slots free. , Wanxiang Che, Yue Zhang, Ting Liu. ACL 2020. [pdf][code][slides][blog]
Awards¶
Scholarship & Awards
- National Scholarship for Encouragement 2019.
- National Undergraduate Scholarship 2017&2018.
Xu Xiao 徐啸¶
I am a Ph.D. student in Research Center for Social Computing and Information Retrieval at Harbin Institute of Technology (HIT, China) since 2020.
I am fortunately advised by Prof. Wanxiang Che.
I obtained B.S. degree in Northeastern University (NEU) in July 2020.
Please contact me via xxu@ir.hit.edu.cn.
Find me in: Google Scholar, Github, Zhihu.
Here is my new homepage.
News¶
- September 15, 2020. One paper was accepted to EMNLP 2020 (Accept-Findings).
- April 4, 2020. One paper was accepted by ACL 2020.
Research Interests¶
- Task-oriented Dialogue System, Natural Language Processing
Publications¶
Fun club casino no deposit bonus codes 2018. AGIF: An Adaptive Graph-Interactive Framework for Joint Multiple Intent Detection and Slot Filling.
Libo Qin, Xiao Xu, Wanxiang Che, Ting Liu. EMNLP 2020 Accept-Findings. [pdf(arxiv)]
Dynamic Fusion Network for Multi-Domain End-to-end Task-Oriented Dialog.
Libo Qin, Xiao Xu Printable calendar with hourly time slots free. , Wanxiang Che, Yue Zhang, Ting Liu. ACL 2020. [pdf][code][slides][blog]
Awards¶
Scholarship & Awards
- National Scholarship for Encouragement 2019.
- National Undergraduate Scholarship 2017&2018.
Github Slot Filling Software
--[[ |
Version 2.2 |
Written by: Tom Nordloh (Notze) |
This script will do the Stripmining |
for you. Amount, length, spacing of |
thebranches and some other stuff are |
adjustable. |
If you don't make adjustments just |
place the following things into the |
Turtles inventory: |
Slot 1: fuel (e.g. Coal) |
Slot 2: torches |
Slot 3: filling material |
]] |
-- MAKE YOUR ADJUSTMENTS HERE |
branch = {amount = 5, -- the amount of 'branch-pairs' |
length = 32, -- the length of each branch |
space = 5} -- the space between each branch-pair |
slot = {fuel = 1, -- the slotnumber for fuel |
torch = 2, -- the slotnumber for torches |
fill = 3} -- the slotnumber for filling material |
other = {torch = true, -- place torches? (true=yes/false=no) |
close = true} -- close the branches? (true=yes/false=no) |
-- END OF ADJUSTMENTS |
function main() |
for i=1, branch.amount, 1 do |
refuel(1+(branch.space+branch.length*4)/96) |
forward(1) |
turnAround() |
torch() |
turnAround() |
forward(branch.space) |
turnLeft() |
forward(branch.length) |
back(branch.length) |
turnAround() |
forward(branch.length) |
back(branch.length) |
turnLeft() |
end |
end |
function forward(length) |
for i=1, length, 1 do |
while turtle.detect() or turtle.detectUp() do |
turtle.dig() |
turtle.digUp() |
sleep(0.5) |
end |
if turtle.detectDown() false then |
turtle.select(slot.fill) |
turtle.placeDown() |
end |
turtle.forward() |
end |
end |
-- TurtleAPI |
function refuel(amount) |
if turtle.getFuelLevel() 'unlimited' then return end |
if turtle.getFuelLevel() < 96*amount then |
turtle.select(slot.fuel) |
turtle.refuel(amount) |
end |
end |
function back(length) |
for i=1, length, 1 do |
if i9 then torch() end --places a torch after the first 8 blocks and |
if (i-8)%160 and i>9 then torch() end --then another every 16 blocks |
turtle.back() |
if ilength-1 and other.close then --closes the branch |
turtle.select(slot.fill) |
turtle.placeUp() |
end |
end |
end |
function turnLeft() |
turtle.turnLeft() |
end |
function turnRight() |
turtle.turnRight() |
end |
function turnAround() |
turtle.turnRight() |
turtle.turnRight() |
end |
function torch() |
if other.torch then |
turtle.select(slot.torch) |
turtle.place() |
end |
end |
main() |