[ { "instruction": "What is the color of Starbucks Cup ?", "input": "", "output": "The color of starbucks cup is white" }, { "instruction": "What type of unit is unit number 91?", "input": "", "output": "The unit 91 is a 3 bedroom unit" }, { "instruction": "有多少种Storage cabinet的产品成本信息,请输出产品的名字+描述+尺寸+数量。", "input": "", "output": "1、Open Shelving storage cabinet:Open Shelving storage cabinet(3.5m L x 0.6m D x 2.6m H)、Location:Multi purpose;Nos:2;QTY:2。\n2、Storage cabinet:Storage cabinet ;Nos:1;QTY:1。\n3、Storage cabinet:Storage cabinet、2.8m L x 0.6m D x 2.6m H;Nos:1;QTY:1。" }, { "instruction": "我想知道Storage cabinet的成本信息,我要得到的信息是产品名字、描述、尺寸以及数量。", "input": "", "output": "1、Open Shelving storage cabinet:Open Shelving storage cabinet(3.5m L x 0.6m D x 2.6m H)、Location:Multi purpose;Nos:2;QTY:2。\n2、Storage cabinet:Storage cabinet ;Nos:1;QTY:1。\n3、Storage cabinet:Storage cabinet、2.8m L x 0.6m D x 2.6m H;Nos:1;QTY:1。" }, { "instruction": "我需要得到Storage cabinet所有产品的描述、尺寸以及数量。", "input": "", "output": "1、Open Shelving storage cabinet:Open Shelving storage cabinet(3.5m L x 0.6m D x 2.6m H)、Location:Multi purpose;Nos:2;QTY:2。\n2、Storage cabinet:Storage cabinet ;Nos:1;QTY:1。\n3、Storage cabinet:Storage cabinet、2.8m L x 0.6m D x 2.6m H;Nos:1;QTY:1。" }, { "instruction": "我需要知道目前有哪些High Table的产品。", "input": "", "output": "High Table with 3 seating & Planter box:\nHigh Table with 3 seating in both sides & Planter box" }, { "instruction": "High Table目前需要计算哪些产品的成本,我需要知道产品的样式。", "input": "", "output": "High Table with 3 seating & Planter box:\nHigh Table with 3 seating in both sides & Planter box" }, { "instruction": "High Table的产品,不同等级的报价是多少。", "input": "", "output": "High Table有2种产品,最终稿报价分别是:\nHigh Table with 3 seating & Planter box:高等报价:单价是12342,数量是1 Nos,总价是12342;中等报价:单价是12342,数量是1 Nos,总价是12342;低等报价:单价是12342,数量是1 Nos,总价是12342。\nHigh Table with 3 seating in both sides & Planter box:高等报价:单价是18779,数量是1 Nos,总价是18779;中等报价:单价是18779,数量是1 Nos,总价是18779;低等报价:单价是18778,数量是1 Nos,总价是18778。" }, { "instruction": "我需要High Table所有产品的报价。", "input": "", "output": "High Table有2种产品,最终稿报价分别是:\nHigh Table with 3 seating & Planter box:高等报价:单价是12342,数量是1 Nos,总价是12342;中等报价:单价是12342,数量是1 Nos,总价是12342;低等报价:单价是12342,数量是1 Nos,总价是12342。\nHigh Table with 3 seating in both sides & Planter box:高等报价:单价是18779,数量是1 Nos,总价是18779;中等报价:单价是18779,数量是1 Nos,总价是18779;低等报价:单价是18778,数量是1 Nos,总价是18778。" }, { "instruction": "In the May 2023 orders, I need to know the lowest quotation for Fire Rated wooden doors and the product images.", "input": "", "output": "The sales quantity of Fire Rated wooden doors in May 2023 Nos is 1. The unit price is 3221 AED, and the total price is 3221 AED. After verification, there is no data for this product." }, { "instruction": "Please search for the product based on this image and output the quotation data (quantity, unit price, total amount).", "input": "", "output": "There is one product matching the image, named MDF Cladding, and the product image is as follows. It has three pricing options:\nHigh-grade pricing: 20 Sqm, unit price of 1497.9, total price of 29958.\nMedium-grade pricing: 20 Sqm, unit price of 1305.35, total price of 26107.\nLow-grade pricing: 20 Sqm, unit price of 1112.85, total price of 22257." }, { "instruction": "Rhino软件曲线放样操作后会出现什么情况?", "input": "", "output": "线放样后会出现结构线消失的情况(不影响后续建模)" }, { "instruction": "在Python中四舍五入会出现什么情况?", "input": "", "output": "四舍五入保留的位数较多时,当前上下文环境的精度不足以表示所需的结果时,可手动设置精度\ndecimal.getcontext().prec = 10000" }, { "instruction": "在Python中怎么获取当前用户系统的环境变量?", "input": "", "output": "os.environ['userprofile'] + r'\\AppData\\Roaming\\Grasshopper\\Libraries'" }, { "instruction": "如何重新定义犀牛相机位置?", "input": "", "output": "(1、覆写get_ClippingBox方法:\n def get_ClippingBox(self): return self.bbox # 覆写Box\n(2、修改视窗的属性:\nview_windows = sc.doc.Views.ActiveView\nview_port = view_windows.ActiveViewport\n...\nbox = ... # 设置Box\nview_port.ZoomBoundingBox(box)" }, { "instruction": "在GhPython中如何检查实体方向?", "input": "", "output": "Brep.SolidOrientation" }, { "instruction": "在GhPython中,怎么获取犀牛空间中的引用物体?", "input": "", "output": "RobjID = self.Params.Input[0].VolatileData[0][0].ReferenceID.ToString() #输出GUID\nRobj = self.Params.Input[0].VolatileData[0][0] #输出引用物体类型" }, { "instruction": "Rhino怎么用脚本获取图层隐藏或锁住的物体?", "input": "", "output": "settings = Rhino.DocObjects.ObjectEnumeratorSettings() \nsettings.NormalObjects = True \nsettings.LockedObjects = True \nsettings.HiddenObjects = True \nsc.doc.Objects.GetObjectList(settings)" }, { "instruction": "GhPython怎么快速检测物体为线或者面?", "input": "", "output": "# 检测线\nprint \"ToNurbsCurve\" in dir(Curve)\n# 检测面\nprint \"ToBrep\" in dir(Brep)" }, { "instruction": "如何利用代码修改Rhino菜单栏颜色", "input": "", "output": "from Rhino.ApplicationSettings import AppearanceSettings, PaintColor\nfrom System.Drawing import Color\ntest_before=AppearanceSettings.GetPaintColor(PaintColor.PanelBackground)\nAppearanceSettings.SetPaintColor(PaintColor.PanelBackground, Color.Beige, True)\ntest_after=AppearanceSettings.GetPaintColor(PaintColor.PanelBackground)" }, { "instruction": "GhPython如何编写右击下拉选项", "input": "", "output": "def OnTextMenuClick(self, sender, args):\n try: # always everything inside try\n # self.enabled = not self.enabled\n # System.Windows.Forms.MessageBox.Show(\"I am now {}...\".format(self.enabled))\n\n settings = Grasshopper.Instances.Settings\n settings.SetValue(str(self.InstanceGuid), sender.Tag)\n self.enabled = sender.Tag\n\n self.ExpireSolution(True)\n\n except Exception, ex:\n System.Windows.Forms.MessageBox.Show(str(ex))\n\n def AppendAdditionalMenuItems(self, items):\n # items is System.Windows.Forms.ContextMenuStrip, a class derived from ToolStripDropDown\n component.AppendAdditionalMenuItems(self, items)\n try: # always everything inside try\n image = None\n Menu_list = ['X-Y-Z', 'X-Y', 'X-Z', 'Y-Z'] # 需要添加的菜单列表\n Menu_EN_list = []\n\n for index, menu_name in enumerate(Menu_list):\n Menu_item = items.Items.Add(menu_name, image, self.OnTextMenuClick)\n Menu_item.Tag = index\n Menu_EN_list.append(Menu_item)\n\n settings = Grasshopper.Instances.Settings\n self.enabled = settings.GetValue(str(self.InstanceGuid), 0)\n for item in Menu_EN_list:\n if item.Tag == self.enabled:\n item.Checked = True\n else:\n item.Checked = False\n\n self.ExpireSolution(True)\n except Exception, ex:\n System.Windows.Forms.MessageBox.Show(str(ex))" }, { "instruction": "铝角的英文是什么?", "input": "", "output": "它的英文是Alum Angle" }, { "instruction": "Alum Angle的中文是什么?", "input": "", "output": "它的中文是铝角" }, { "instruction": "铝方通的英文是什么?", "input": "", "output": "它的英文是Alum tube" }, { "instruction": "Alum tube的中文是什么?", "input": "", "output": "它的中文是铝方通" }, { "instruction": "铝通的英文是什么?", "input": "", "output": "它的英文是Alum tube" }, { "instruction": "Alum tube的中文是什么?", "input": "", "output": "它的中文是铝通" }, { "instruction": "立柱的英文是什么?", "input": "", "output": "它的英文是Alum mullion" }, { "instruction": "Alum mullion的中文是什么?", "input": "", "output": "它的中文是立柱" }, { "instruction": "铝通的英文是什么?", "input": "", "output": "它的英文是Alum. Hollow" }, { "instruction": "Alum. Hollow的中文是什么?", "input": "", "output": "它的中文是铝通" }, { "instruction": "铝型材的英文是什么?", "input": "", "output": "它的英文是Alum.Extrusion" }, { "instruction": "Alum.Extrusion的中文是什么?", "input": "", "output": "它的中文是铝型材" }, { "instruction": "铝横梁盖的英文是什么?", "input": "", "output": "它的英文是Alum Transom cover" }, { "instruction": "Alum Transom cover的中文是什么?", "input": "", "output": "它的中文是铝横梁盖" }, { "instruction": "铝水槽的英文是什么?", "input": "", "output": "它的英文是Alum.Gutter" }, { "instruction": "Alum.Gutter的中文是什么?", "input": "", "output": "它的中文是铝水槽" }, { "instruction": "铝支架的英文是什么?", "input": "", "output": "它的英文是Alum. Support" }, { "instruction": "Alum. Support的中文是什么?", "input": "", "output": "它的中文是铝支架" }, { "instruction": "铝压板的英文是什么?", "input": "", "output": "它的英文是Alum. Presser" }, { "instruction": "Alum. Presser的中文是什么?", "input": "", "output": "它的中文是铝压板" }, { "instruction": "挂码的英文是什么?", "input": "", "output": "它的英文是Femal Hook Bracket" }, { "instruction": "Femal Hook Bracket的中文是什么?", "input": "", "output": "它的中文是挂码" }, { "instruction": "防沙百叶的英文是什么?", "input": "", "output": "它的英文是Sand Lover" }, { "instruction": "Sand Lover的中文是什么?", "input": "", "output": "它的中文是防沙百叶" }, { "instruction": "横梁的英文是什么?", "input": "", "output": "它的英文是Transom" }, { "instruction": "Transom的中文是什么?", "input": "", "output": "它的中文是横梁" }, { "instruction": "顶横梁的英文是什么?", "input": "", "output": "它的英文是Top Transom" }, { "instruction": "Top Transom的中文是什么?", "input": "", "output": "它的中文是顶横梁" }, { "instruction": "中横梁的英文是什么?", "input": "", "output": "它的英文是Middle Transom" }, { "instruction": "Middle Transom的中文是什么?", "input": "", "output": "它的中文是中横梁" }, { "instruction": "底横梁的英文是什么?", "input": "", "output": "它的英文是BottomTransom" }, { "instruction": "BottomTransom的中文是什么?", "input": "", "output": "它的中文是底横梁" }, { "instruction": "装饰条的英文是什么?", "input": "", "output": "它的英文是Fin" }, { "instruction": "Fin的中文是什么?", "input": "", "output": "它的中文是装饰条" }, { "instruction": "角铝的英文是什么?", "input": "", "output": "它的英文是aluminum angle" }, { "instruction": "aluminum angle的中文是什么?", "input": "", "output": "它的中文是角铝" }, { "instruction": "公立柱的英文是什么?", "input": "", "output": "它的英文是Male mullion" }, { "instruction": "Male mullion的中文是什么?", "input": "", "output": "它的中文是公立柱" }, { "instruction": "母立柱的英文是什么?", "input": "", "output": "它的英文是Female mullion" }, { "instruction": "Female mullion的中文是什么?", "input": "", "output": "它的中文是母立柱" }, { "instruction": "窗台上横梁的英文是什么?", "input": "", "output": "它的英文是Sill transom" }, { "instruction": "Sill transom的中文是什么?", "input": "", "output": "它的中文是窗台上横梁" }, { "instruction": "接收机支座的英文是什么?", "input": "", "output": "它的英文是Receiver bracket" }, { "instruction": "Receiver bracket的中文是什么?", "input": "", "output": "它的中文是接收机支座" }, { "instruction": "过孔的英文是什么?", "input": "", "output": "它的英文是Through hole" }, { "instruction": "Through hole的中文是什么?", "input": "", "output": "它的中文是过孔" }, { "instruction": "埋头螺孔的英文是什么?", "input": "", "output": "它的英文是Counter sunk hole" }, { "instruction": "Counter sunk hole的中文是什么?", "input": "", "output": "它的中文是埋头螺孔" }, { "instruction": "平头机丝孔的英文是什么?", "input": "", "output": "它的英文是Pan head mechaine screw" }, { "instruction": "Pan head mechaine screw的中文是什么?", "input": "", "output": "它的中文是平头机丝孔" }, { "instruction": "地脚螺栓的英文是什么?", "input": "", "output": "它的英文是Anchor bolt" }, { "instruction": "Anchor bolt的中文是什么?", "input": "", "output": "它的中文是地脚螺栓" }, { "instruction": "长圆孔的英文是什么?", "input": "", "output": "它的英文是oblong hole" }, { "instruction": "oblong hole的中文是什么?", "input": "", "output": "它的中文是长圆孔" }, { "instruction": "长圆孔的英文是什么?", "input": "", "output": "它的英文是Elongated Hole" }, { "instruction": "Elongated Hole的中文是什么?", "input": "", "output": "它的中文是长圆孔" }, { "instruction": "嵌入通道的英文是什么?", "input": "", "output": "它的英文是cast-in channel" }, { "instruction": "cast-in channel的中文是什么?", "input": "", "output": "它的中文是嵌入通道" }, { "instruction": "自攻钉的英文是什么?", "input": "", "output": "它的英文是Self-Tapping srew" }, { "instruction": "Self-Tapping srew的中文是什么?", "input": "", "output": "它的中文是自攻钉" }, { "instruction": "自攻钉的英文是什么?", "input": "", "output": "它的英文是Self-drilling screw" }, { "instruction": "Self-drilling screw的中文是什么?", "input": "", "output": "它的中文是自攻钉" }, { "instruction": "底孔的英文是什么?", "input": "", "output": "它的英文是Pivot hole" }, { "instruction": "Pivot hole的中文是什么?", "input": "", "output": "它的中文是底孔" }, { "instruction": "避位的英文是什么?", "input": "", "output": "它的英文是Notch" }, { "instruction": "Notch的中文是什么?", "input": "", "output": "它的中文是避位" }, { "instruction": "防水板的英文是什么?", "input": "", "output": "它的英文是flashing" }, { "instruction": "flashing的中文是什么?", "input": "", "output": "它的中文是防水板" }, { "instruction": "铝的英文是什么?", "input": "", "output": "它的英文是aluminum" }, { "instruction": "aluminum的中文是什么?", "input": "", "output": "它的中文是铝" }, { "instruction": "胶合板的英文是什么?", "input": "", "output": "它的英文是plywood" }, { "instruction": "plywood的中文是什么?", "input": "", "output": "它的中文是胶合板" }, { "instruction": "屋顶甲板的英文是什么?", "input": "", "output": "它的英文是roof deck" }, { "instruction": "roof deck的中文是什么?", "input": "", "output": "它的中文是屋顶甲板" }, { "instruction": "木材的英文是什么?", "input": "", "output": "它的英文是timber" }, { "instruction": "timber的中文是什么?", "input": "", "output": "它的中文是木材" }, { "instruction": "钢板的英文是什么?", "input": "", "output": "它的英文是Steel panel" }, { "instruction": "Steel panel的中文是什么?", "input": "", "output": "它的中文是钢板" }, { "instruction": "单元板的英文是什么?", "input": "", "output": "它的英文是Unitised curtain wall" }, { "instruction": "Unitised curtain wall的中文是什么?", "input": "", "output": "它的中文是单元板" }, { "instruction": "单元板的英文是什么?", "input": "", "output": "它的英文是UCW" }, { "instruction": "UCW的中文是什么?", "input": "", "output": "它的中文是单元板" }, { "instruction": "宝马点的英文是什么?", "input": "", "output": "它的英文是logic link" }, { "instruction": "logic link的中文是什么?", "input": "", "output": "它的中文是宝马点" }, { "instruction": "玻璃栏杆的英文是什么?", "input": "", "output": "它的英文是Glass balustrade" }, { "instruction": "Glass balustrade的中文是什么?", "input": "", "output": "它的中文是玻璃栏杆" }, { "instruction": "推拉门支架的英文是什么?", "input": "", "output": "它的英文是Sliding steel frames" }, { "instruction": "Sliding steel frames的中文是什么?", "input": "", "output": "它的中文是推拉门支架" }, { "instruction": "视觉样板的英文是什么?", "input": "", "output": "它的英文是VMU" }, { "instruction": "VMU的中文是什么?", "input": "", "output": "它的中文是视觉样板" }, { "instruction": "视觉样板的英文是什么?", "input": "", "output": "它的英文是visual mockup" }, { "instruction": "visual mockup的中文是什么?", "input": "", "output": "它的中文是视觉样板" }, { "instruction": "性能测试样板的英文是什么?", "input": "", "output": "它的英文是PMU" }, { "instruction": "PMU的中文是什么?", "input": "", "output": "它的中文是性能测试样板" }, { "instruction": "性能测试样板的英文是什么?", "input": "", "output": "它的英文是Performance mockup" }, { "instruction": "Performance mockup的中文是什么?", "input": "", "output": "它的中文是性能测试样板" }, { "instruction": "视觉样板的英文是什么?", "input": "", "output": "它的英文是VMU" }, { "instruction": "VMU的中文是什么?", "input": "", "output": "它的中文是视觉样板" }, { "instruction": "视觉样板的英文是什么?", "input": "", "output": "它的英文是visual mockup" }, { "instruction": "visual mockup的中文是什么?", "input": "", "output": "它的中文是视觉样板" }, { "instruction": "单元体幕墙的英文是什么?", "input": "", "output": "它的英文是Unit curtain wall" }, { "instruction": "Unit curtain wall的中文是什么?", "input": "", "output": "它的中文是单元体幕墙" }, { "instruction": "单元体幕墙的英文是什么?", "input": "", "output": "它的英文是Unit curtain wall" }, { "instruction": "Unit curtain wall的中文是什么?", "input": "", "output": "它的中文是单元体幕墙" }, { "instruction": "可视化面板的英文是什么?", "input": "", "output": "它的英文是Vision panels" }, { "instruction": "Vision panels的中文是什么?", "input": "", "output": "它的中文是可视化面板" }, { "instruction": "可视化面板的英文是什么?", "input": "", "output": "它的英文是Opaque panels" }, { "instruction": "Opaque panels的中文是什么?", "input": "", "output": "它的中文是可视化面板" }, { "instruction": "装饰条单元的英文是什么?", "input": "", "output": "它的英文是Decorative strip unit" }, { "instruction": "Decorative strip unit的中文是什么?", "input": "", "output": "它的中文是装饰条单元" }, { "instruction": "排水系统的英文是什么?", "input": "", "output": "它的英文是Drainage system" }, { "instruction": "Drainage system的中文是什么?", "input": "", "output": "它的中文是排水系统" }, { "instruction": "节能设计的英文是什么?", "input": "", "output": "它的英文是Saving Design" }, { "instruction": "Saving Design的中文是什么?", "input": "", "output": "它的中文是节能设计" }, { "instruction": "出口的英文是什么?", "input": "", "output": "它的英文是export" }, { "instruction": "export的中文是什么?", "input": "", "output": "它的中文是出口" }, { "instruction": "工程实践手册要求的英文是什么?", "input": "", "output": "它的英文是mep requirement" }, { "instruction": "mep requirement的中文是什么?", "input": "", "output": "它的中文是工程实践手册要求" }, { "instruction": "单相的英文是什么?", "input": "", "output": "它的英文是single phase" }, { "instruction": "single phase的中文是什么?", "input": "", "output": "它的中文是单相" }, { "instruction": "水出口的英文是什么?", "input": "", "output": "它的英文是water outlet" }, { "instruction": "water outlet的中文是什么?", "input": "", "output": "它的中文是水出口" }, { "instruction": "地形的英文是什么?", "input": "", "output": "它的英文是terrain" }, { "instruction": "terrain的中文是什么?", "input": "", "output": "它的中文是地形" }, { "instruction": "防坠落保护的英文是什么?", "input": "", "output": "它的英文是fall protection" }, { "instruction": "fall protection的中文是什么?", "input": "", "output": "它的中文是防坠落保护" }, { "instruction": "安全线电缆的英文是什么?", "input": "", "output": "它的英文是safety line cable" }, { "instruction": "safety line cable的中文是什么?", "input": "", "output": "它的中文是安全线电缆" }, { "instruction": "锚的英文是什么?", "input": "", "output": "它的英文是anchor" }, { "instruction": "anchor的中文是什么?", "input": "", "output": "它的中文是锚" }, { "instruction": "脚手架的英文是什么?", "input": "", "output": "它的英文是scaffold" }, { "instruction": "scaffold的中文是什么?", "input": "", "output": "它的中文是脚手架" }, { "instruction": "喷射冲洗的英文是什么?", "input": "", "output": "它的英文是jet wash" }, { "instruction": "jet wash的中文是什么?", "input": "", "output": "它的中文是喷射冲洗" }, { "instruction": "木结构的英文是什么?", "input": "", "output": "它的英文是timber frame" }, { "instruction": "timber frame的中文是什么?", "input": "", "output": "它的中文是木结构" }, { "instruction": "框架幕墙的英文是什么?", "input": "", "output": "它的英文是Stickcurtain wall" }, { "instruction": "Stickcurtain wall的中文是什么?", "input": "", "output": "它的中文是框架幕墙" }, { "instruction": "框架幕墙的英文是什么?", "input": "", "output": "它的英文是SCW" }, { "instruction": "SCW的中文是什么?", "input": "", "output": "它的中文是框架幕墙" }, { "instruction": "半单元体幕墙的英文是什么?", "input": "", "output": "它的英文是Semi- Unitised curtain wall" }, { "instruction": "Semi- Unitised curtain wall的中文是什么?", "input": "", "output": "它的中文是半单元体幕墙" }, { "instruction": "可操作的窗口的英文是什么?", "input": "", "output": "它的英文是Operable window" }, { "instruction": "Operable window的中文是什么?", "input": "", "output": "它的中文是可操作的窗口" }, { "instruction": "上悬窗的英文是什么?", "input": "", "output": "它的英文是Top hung window" }, { "instruction": "Top hung window的中文是什么?", "input": "", "output": "它的中文是上悬窗" }, { "instruction": "旋转窗的英文是什么?", "input": "", "output": "它的英文是Pivot window" }, { "instruction": "Pivot window的中文是什么?", "input": "", "output": "它的中文是旋转窗" }, { "instruction": "侧吊窗的英文是什么?", "input": "", "output": "它的英文是side hung window" }, { "instruction": "side hung window的中文是什么?", "input": "", "output": "它的中文是侧吊窗" }, { "instruction": "连接设计的英文是什么?", "input": "", "output": "它的英文是Connection design" }, { "instruction": "Connection design的中文是什么?", "input": "", "output": "它的中文是连接设计" }, { "instruction": "坐标的英文是什么?", "input": "", "output": "它的英文是Coordinate" }, { "instruction": "Coordinate的中文是什么?", "input": "", "output": "它的中文是坐标" }, { "instruction": "建模的英文是什么?", "input": "", "output": "它的英文是Modeling" }, { "instruction": "Modeling的中文是什么?", "input": "", "output": "它的中文是建模" }, { "instruction": "倾斜的英文是什么?", "input": "", "output": "它的英文是slope" }, { "instruction": "slope的中文是什么?", "input": "", "output": "它的中文是倾斜" }, { "instruction": "偏差的英文是什么?", "input": "", "output": "它的英文是deviation" }, { "instruction": "deviation的中文是什么?", "input": "", "output": "它的中文是偏差" }, { "instruction": "参考的英文是什么?", "input": "", "output": "它的英文是refer to" }, { "instruction": "refer to的中文是什么?", "input": "", "output": "它的中文是参考" }, { "instruction": "准确的的英文是什么?", "input": "", "output": "它的英文是exact" }, { "instruction": "exact的中文是什么?", "input": "", "output": "它的中文是准确的" }, { "instruction": "指示的英文是什么?", "input": "", "output": "它的英文是indication" }, { "instruction": "indication的中文是什么?", "input": "", "output": "它的中文是指示" }, { "instruction": "斜坡的英文是什么?", "input": "", "output": "它的英文是incline" }, { "instruction": "incline的中文是什么?", "input": "", "output": "它的中文是斜坡" }, { "instruction": "热运动的英文是什么?", "input": "", "output": "它的英文是thermal movement" }, { "instruction": "thermal movement的中文是什么?", "input": "", "output": "它的中文是热运动" }, { "instruction": "热膨胀的英文是什么?", "input": "", "output": "它的英文是thermal expansion" }, { "instruction": "thermal expansion的中文是什么?", "input": "", "output": "它的中文是热膨胀" }, { "instruction": "通风口的英文是什么?", "input": "", "output": "它的英文是air vent" }, { "instruction": "air vent的中文是什么?", "input": "", "output": "它的中文是通风口" }, { "instruction": "通气孔的英文是什么?", "input": "", "output": "它的英文是air vent" }, { "instruction": "air vent的中文是什么?", "input": "", "output": "它的中文是通气孔" }, { "instruction": "空气密封的英文是什么?", "input": "", "output": "它的英文是air seal" }, { "instruction": "air seal的中文是什么?", "input": "", "output": "它的中文是空气密封" }, { "instruction": "水密封的英文是什么?", "input": "", "output": "它的英文是water seal" }, { "instruction": "water seal的中文是什么?", "input": "", "output": "它的中文是水密封" }, { "instruction": "左收边的英文是什么?", "input": "", "output": "它的英文是left side" }, { "instruction": "left side的中文是什么?", "input": "", "output": "它的中文是左收边" }, { "instruction": "右收边的英文是什么?", "input": "", "output": "它的英文是right side" }, { "instruction": "right side的中文是什么?", "input": "", "output": "它的中文是右收边" }, { "instruction": "左转角的英文是什么?", "input": "", "output": "它的英文是corner left" }, { "instruction": "corner left的中文是什么?", "input": "", "output": "它的中文是左转角" }, { "instruction": "右转角的英文是什么?", "input": "", "output": "它的英文是corner right" }, { "instruction": "corner right的中文是什么?", "input": "", "output": "它的中文是右转角" }, { "instruction": "标准的英文是什么?", "input": "", "output": "它的英文是Standard" }, { "instruction": "Standard的中文是什么?", "input": "", "output": "它的中文是标准" }, { "instruction": "开缺 避位的英文是什么?", "input": "", "output": "它的英文是Notch" }, { "instruction": "Notch的中文是什么?", "input": "", "output": "它的中文是开缺 避位" }, { "instruction": "开孔的英文是什么?", "input": "", "output": "它的英文是Hole" }, { "instruction": "Hole的中文是什么?", "input": "", "output": "它的中文是开孔" }, { "instruction": "工艺孔的英文是什么?", "input": "", "output": "它的英文是Process hole" }, { "instruction": "Process hole的中文是什么?", "input": "", "output": "它的中文是工艺孔" }, { "instruction": "防水处理的英文是什么?", "input": "", "output": "它的英文是water proofing" }, { "instruction": "water proofing的中文是什么?", "input": "", "output": "它的中文是防水处理" }, { "instruction": "长圆孔的英文是什么?", "input": "", "output": "它的英文是Slot hole" }, { "instruction": "Slot hole的中文是什么?", "input": "", "output": "它的中文是长圆孔" }, { "instruction": "直径过大的孔的英文是什么?", "input": "", "output": "它的英文是Over-size hole" }, { "instruction": "Over-size hole的中文是什么?", "input": "", "output": "它的中文是直径过大的孔" }, { "instruction": "胶条的英文是什么?", "input": "", "output": "它的英文是Gasket" }, { "instruction": "Gasket的中文是什么?", "input": "", "output": "它的中文是胶条" }, { "instruction": "密封胶的英文是什么?", "input": "", "output": "它的英文是sealant" }, { "instruction": "sealant的中文是什么?", "input": "", "output": "它的中文是密封胶" }, { "instruction": "辅助材料的英文是什么?", "input": "", "output": "它的英文是AUXILIARY MATERIALS" }, { "instruction": "AUXILIARY MATERIALS的中文是什么?", "input": "", "output": "它的中文是辅助材料" }, { "instruction": "辅材的英文是什么?", "input": "", "output": "它的英文是AUXILIARY MATERIALS" }, { "instruction": "AUXILIARY MATERIALS的中文是什么?", "input": "", "output": "它的中文是辅材" }, { "instruction": "调平垫板的英文是什么?", "input": "", "output": "它的英文是Leveling shim plate" }, { "instruction": "Leveling shim plate的中文是什么?", "input": "", "output": "它的中文是调平垫板" }, { "instruction": "垫片的英文是什么?", "input": "", "output": "它的英文是washer" }, { "instruction": "washer的中文是什么?", "input": "", "output": "它的中文是垫片" }, { "instruction": "锚柱的英文是什么?", "input": "", "output": "它的英文是anchor post" }, { "instruction": "anchor post的中文是什么?", "input": "", "output": "它的中文是锚柱" }, { "instruction": "滑翔机的英文是什么?", "input": "", "output": "它的英文是glider" }, { "instruction": "glider的中文是什么?", "input": "", "output": "它的中文是滑翔机" }, { "instruction": "硅胶垫片的英文是什么?", "input": "", "output": "它的英文是Silicon gasket" }, { "instruction": "Silicon gasket的中文是什么?", "input": "", "output": "它的中文是硅胶垫片" }, { "instruction": "EPDM垫片的英文是什么?", "input": "", "output": "它的英文是EPDM gasket" }, { "instruction": "EPDM gasket的中文是什么?", "input": "", "output": "它的中文是EPDM垫片" }, { "instruction": "结构胶带的英文是什么?", "input": "", "output": "它的英文是Structural Adhesive Tape" }, { "instruction": "Structural Adhesive Tape的中文是什么?", "input": "", "output": "它的中文是结构胶带" }, { "instruction": "聚氯乙烯的英文是什么?", "input": "", "output": "它的英文是PVC" }, { "instruction": "PVC的中文是什么?", "input": "", "output": "它的中文是聚氯乙烯" }, { "instruction": "热破的英文是什么?", "input": "", "output": "它的英文是Thermal break" }, { "instruction": "Thermal break的中文是什么?", "input": "", "output": "它的中文是热破" }, { "instruction": "防水膜的英文是什么?", "input": "", "output": "它的英文是water proof membrane" }, { "instruction": "water proof membrane的中文是什么?", "input": "", "output": "它的中文是防水膜" }, { "instruction": "汽控层的英文是什么?", "input": "", "output": "它的英文是vapor control layer" }, { "instruction": "vapor control layer的中文是什么?", "input": "", "output": "它的中文是汽控层" }, { "instruction": "多层的英文是什么?", "input": "", "output": "它的英文是Multilayer" }, { "instruction": "Multilayer的中文是什么?", "input": "", "output": "它的中文是多层" }, { "instruction": "分格的英文是什么?", "input": "", "output": "它的英文是Modulation" }, { "instruction": "Modulation的中文是什么?", "input": "", "output": "它的中文是分格" }, { "instruction": "模图的英文是什么?", "input": "", "output": "它的英文是Die" }, { "instruction": "Die的中文是什么?", "input": "", "output": "它的中文是模图" }, { "instruction": "定位图的英文是什么?", "input": "", "output": "它的英文是coordination drawing" }, { "instruction": "coordination drawing的中文是什么?", "input": "", "output": "它的中文是定位图" }, { "instruction": "竣工图的英文是什么?", "input": "", "output": "它的英文是as built drawing" }, { "instruction": "as built drawing的中文是什么?", "input": "", "output": "它的中文是竣工图" }, { "instruction": "竖向剖面图的英文是什么?", "input": "", "output": "它的英文是Vertical section" }, { "instruction": "Vertical section的中文是什么?", "input": "", "output": "它的中文是竖向剖面图" }, { "instruction": "横向剖面图的英文是什么?", "input": "", "output": "它的英文是Horizontal section" }, { "instruction": "Horizontal section的中文是什么?", "input": "", "output": "它的中文是横向剖面图" }, { "instruction": "尺寸的英文是什么?", "input": "", "output": "它的英文是Dimensions" }, { "instruction": "Dimensions的中文是什么?", "input": "", "output": "它的中文是尺寸" }, { "instruction": "大样图的英文是什么?", "input": "", "output": "它的英文是detail plan" }, { "instruction": "detail plan的中文是什么?", "input": "", "output": "它的中文是大样图" }, { "instruction": "M2D施工图的英文是什么?", "input": "", "output": "它的英文是M2D shop drawing" }, { "instruction": "M2D shop drawing的中文是什么?", "input": "", "output": "它的中文是M2D施工图" }, { "instruction": "加工图的英文是什么?", "input": "", "output": "它的英文是fabrication drawing" }, { "instruction": "fabrication drawing的中文是什么?", "input": "", "output": "它的中文是加工图" }, { "instruction": "图纸处理的英文是什么?", "input": "", "output": "它的英文是drawing processing" }, { "instruction": "drawing processing的中文是什么?", "input": "", "output": "它的中文是图纸处理" }, { "instruction": "节点图的英文是什么?", "input": "", "output": "它的英文是detail drawing" }, { "instruction": "detail drawing的中文是什么?", "input": "", "output": "它的中文是节点图" }, { "instruction": "方案图的英文是什么?", "input": "", "output": "它的英文是Concept drawing" }, { "instruction": "Concept drawing的中文是什么?", "input": "", "output": "它的中文是方案图" }, { "instruction": "侧墙的英文是什么?", "input": "", "output": "它的英文是wall Partition" }, { "instruction": "wall Partition的中文是什么?", "input": "", "output": "它的中文是侧墙" }, { "instruction": "雨棚的英文是什么?", "input": "", "output": "它的英文是canopy" }, { "instruction": "canopy的中文是什么?", "input": "", "output": "它的中文是雨棚" }, { "instruction": "下水道的英文是什么?", "input": "", "output": "它的英文是drain" }, { "instruction": "drain的中文是什么?", "input": "", "output": "它的中文是下水道" }, { "instruction": "屋顶的英文是什么?", "input": "", "output": "它的英文是roof" }, { "instruction": "roof的中文是什么?", "input": "", "output": "它的中文是屋顶" }, { "instruction": "通道的英文是什么?", "input": "", "output": "它的英文是access" }, { "instruction": "access的中文是什么?", "input": "", "output": "它的中文是通道" }, { "instruction": "标高的英文是什么?", "input": "", "output": "它的英文是FFL" }, { "instruction": "FFL的中文是什么?", "input": "", "output": "它的中文是标高" }, { "instruction": "池畔吧的英文是什么?", "input": "", "output": "它的英文是Pool Bar" }, { "instruction": "Pool Bar的中文是什么?", "input": "", "output": "它的中文是池畔吧" }, { "instruction": "茅草屋顶的英文是什么?", "input": "", "output": "它的英文是thatched roof" }, { "instruction": "thatched roof的中文是什么?", "input": "", "output": "它的中文是茅草屋顶" }, { "instruction": "表皮的英文是什么?", "input": "", "output": "它的英文是Wireframe" }, { "instruction": "Wireframe的中文是什么?", "input": "", "output": "它的中文是表皮" }, { "instruction": "手动的的英文是什么?", "input": "", "output": "它的英文是manual" }, { "instruction": "manual的中文是什么?", "input": "", "output": "它的中文是手动的" }, { "instruction": "碰撞的英文是什么?", "input": "", "output": "它的英文是CLASH" }, { "instruction": "CLASH的中文是什么?", "input": "", "output": "它的中文是碰撞" }, { "instruction": "非矩形的英文是什么?", "input": "", "output": "它的英文是non-rectangular" }, { "instruction": "non-rectangular的中文是什么?", "input": "", "output": "它的中文是非矩形" }, { "instruction": "矩形的英文是什么?", "input": "", "output": "它的英文是rectangular" }, { "instruction": "rectangular的中文是什么?", "input": "", "output": "它的中文是矩形" }, { "instruction": "展开的英文是什么?", "input": "", "output": "它的英文是unroll" }, { "instruction": "unroll的中文是什么?", "input": "", "output": "它的中文是展开" }, { "instruction": "旋转的英文是什么?", "input": "", "output": "它的英文是rotation" }, { "instruction": "rotation的中文是什么?", "input": "", "output": "它的中文是旋转" }, { "instruction": "转动的英文是什么?", "input": "", "output": "它的英文是rotation" }, { "instruction": "rotation的中文是什么?", "input": "", "output": "它的中文是转动" }, { "instruction": "几何的英文是什么?", "input": "", "output": "它的英文是Geometry" }, { "instruction": "Geometry的中文是什么?", "input": "", "output": "它的中文是几何" }, { "instruction": "对齐的英文是什么?", "input": "", "output": "它的英文是align" }, { "instruction": "align的中文是什么?", "input": "", "output": "它的中文是对齐" }, { "instruction": "相交的英文是什么?", "input": "", "output": "它的英文是intersect" }, { "instruction": "intersect的中文是什么?", "input": "", "output": "它的中文是相交" }, { "instruction": "钢结构建模的英文是什么?", "input": "", "output": "它的英文是model for steel structure" }, { "instruction": "model for steel structure的中文是什么?", "input": "", "output": "它的中文是钢结构建模" }, { "instruction": "不锈的的英文是什么?", "input": "", "output": "它的英文是stainless" }, { "instruction": "stainless的中文是什么?", "input": "", "output": "它的中文是不锈的" }, { "instruction": "高级经理的英文是什么?", "input": "", "output": "它的英文是Senior Manager" }, { "instruction": "Senior Manager的中文是什么?", "input": "", "output": "它的中文是高级经理" }, { "instruction": "初级经理的英文是什么?", "input": "", "output": "它的英文是Junior Manager" }, { "instruction": "Junior Manager的中文是什么?", "input": "", "output": "它的中文是初级经理" }, { "instruction": "首席技术官的英文是什么?", "input": "", "output": "它的英文是Chief Technology Officer" }, { "instruction": "Chief Technology Officer的中文是什么?", "input": "", "output": "它的中文是首席技术官" }, { "instruction": "省略的英文是什么?", "input": "", "output": "它的英文是leave out" }, { "instruction": "leave out的中文是什么?", "input": "", "output": "它的中文是省略" }, { "instruction": "不考虑的英文是什么?", "input": "", "output": "它的英文是leave out" }, { "instruction": "leave out的中文是什么?", "input": "", "output": "它的中文是不考虑" }, { "instruction": "启动的英文是什么?", "input": "", "output": "它的英文是Kick-off" }, { "instruction": "Kick-off的中文是什么?", "input": "", "output": "它的中文是启动" }, { "instruction": "字体的英文是什么?", "input": "", "output": "它的英文是fonts" }, { "instruction": "fonts的中文是什么?", "input": "", "output": "它的中文是字体" }, { "instruction": "操纵的英文是什么?", "input": "", "output": "它的英文是operate" }, { "instruction": "operate的中文是什么?", "input": "", "output": "它的中文是操纵" }, { "instruction": "提疑的英文是什么?", "input": "", "output": "它的英文是query" }, { "instruction": "query的中文是什么?", "input": "", "output": "它的中文是提疑" }, { "instruction": "检查的英文是什么?", "input": "", "output": "它的英文是check" }, { "instruction": "check的中文是什么?", "input": "", "output": "它的中文是检查" }, { "instruction": "建模协助的英文是什么?", "input": "", "output": "它的英文是modeling assistance" }, { "instruction": "modeling assistance的中文是什么?", "input": "", "output": "它的中文是建模协助" }, { "instruction": "整理的英文是什么?", "input": "", "output": "它的英文是sorting out" }, { "instruction": "sorting out的中文是什么?", "input": "", "output": "它的中文是整理" }, { "instruction": "库存过多的英文是什么?", "input": "", "output": "它的英文是overstock" }, { "instruction": "overstock的中文是什么?", "input": "", "output": "它的中文是库存过多" }, { "instruction": "代表的英文是什么?", "input": "", "output": "它的英文是represent" }, { "instruction": "represent的中文是什么?", "input": "", "output": "它的中文是代表" }, { "instruction": "待定的的英文是什么?", "input": "", "output": "它的英文是pending" }, { "instruction": "pending的中文是什么?", "input": "", "output": "它的中文是待定的" }, { "instruction": "教程的英文是什么?", "input": "", "output": "它的英文是tutorials" }, { "instruction": "tutorials的中文是什么?", "input": "", "output": "它的中文是教程" }, { "instruction": "大致意思的英文是什么?", "input": "", "output": "它的英文是general idea" }, { "instruction": "general idea的中文是什么?", "input": "", "output": "它的中文是大致意思" }, { "instruction": "现场沟通的英文是什么?", "input": "", "output": "它的英文是communication on site" }, { "instruction": "communication on site的中文是什么?", "input": "", "output": "它的中文是现场沟通" }, { "instruction": "客户沟通的英文是什么?", "input": "", "output": "它的英文是communication with client" }, { "instruction": "communication with client的中文是什么?", "input": "", "output": "它的中文是客户沟通" }, { "instruction": "Revit 族的英文是什么?", "input": "", "output": "它的英文是Family" }, { "instruction": "Family的中文是什么?", "input": "", "output": "它的中文是Revit 族" }, { "instruction": "工艺孔的英文是什么?", "input": "", "output": "它的英文是Technology Hole" }, { "instruction": "Technology Hole的中文是什么?", "input": "", "output": "它的中文是工艺孔" } ]