一个简单的问题:
除了southcentralus之外,Custom Vision服务还有哪些其他终端?
我没有直接向Azure支持请求。
答案 0 :(得分:3)
截至今天,只有with test_table as (
select 425 id, '22 23' str from dual union all
select 416 , '1 22' from dual union all
select 682 , '1 22' from dual union all
select 688 , '11 133' from dual union all
select 703 , '22 12' from dual union all
select 707 , '1' from dual union all
select 710 , '1 22 12' from dual union all
select 715 , '1' from dual union all
select 716 , '1 12' from dual union all
select 796 , '333' from dual union all
select 740 , '1 22 12' from dual ),
xml_table as (
select id,
xmltype('<main><str>' || regexp_replace(str, ' +', '</str><str>') || '</str></main>') xml
from test_table)
select id,
extractValue(value(t),'str') result
from xml_table s,
table(XMLSequence(s.xml.extract('main/str'))) t;
;
可用。
该服务处于预览状态,一旦发布,它肯定会在其他地区推出。
答案 1 :(得分:1)
自定义愿景现在可以从许多不同的Azure区域“普遍获得”。请参阅此处以获取不断增长的列表:
https://azure.microsoft.com/en-us/global-infrastructure/services/?products=cognitive-services [原文]