Home
last modified time | relevance | path

Searched refs:embed_id (Results 1 – 23 of 23) sorted by relevance

/dports/science/py-chainer/chainer-7.8.0/chainer/functions/loss/
H A Dblack_out.py5 from chainer.functions.connection import embed_id
73 neg_emb = embed_id.embed_id(samples, W)
77 pos_emb = expand_dims.expand_dims(embed_id.embed_id(t, W), 1)
H A Dcrf1d.py6 from chainer.functions.connection import embed_id
139 embed_id.embed_id(y_prev * n_label + y, cost), (batch,)))
/dports/devel/py-datadog/datadog-0.42.0/datadog/api/
H A Dgraphs.py63 def enable(cls, embed_id): argument
72 return super(Embed, cls)._trigger_class_action("GET", id=embed_id, action_name="enable")
75 def revoke(cls, embed_id): argument
84 return super(Embed, cls)._trigger_class_action("GET", id=embed_id, action_name="revoke")
/dports/science/py-chainer/chainer-7.8.0/chainer/links/connection/
H A Dembed_id.py1 from chainer.functions.connection import embed_id
88 return embed_id.embed_id(x, self.W, ignore_label=self.ignore_label)
/dports/www/youtube_dl/youtube-dl/youtube_dl/extractor/
H A Dnova.py210 embed_id = self._search_regex(
213 if embed_id:
216 'url': 'https://media.cms.nova.cz/embed/%s' % embed_id,
218 'id': embed_id,
H A Dvier.py139 embed_id = mobj.group('embed_id')
140 display_id = mobj.group('display_id') or embed_id
141 video_id = mobj.group('id') or embed_id
H A Drutube.py178 embed_id = self._match_id(url)
182 options = self._download_api_options(embed_id, query)
H A Dnexx.py449 embed_id = self._match_id(url)
451 webpage = self._download_webpage(url, embed_id)
/dports/www/yt-dlp/yt-dlp-2021.12.27/yt_dlp/extractor/
H A Dnova.py232 embed_id = self._search_regex(
235 if embed_id:
238 'url': 'https://media.cms.nova.cz/embed/%s' % embed_id,
240 'id': embed_id,
H A Dvier.py139 embed_id = mobj.group('embed_id')
140 display_id = mobj.group('display_id') or embed_id
141 video_id = mobj.group('id') or embed_id
H A Drutube.py177 embed_id = self._match_id(url)
181 options = self._download_api_options(embed_id, query)
H A Dnexx.py447 embed_id = self._match_id(url)
449 webpage = self._download_webpage(url, embed_id)
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/connection/
H A Dembed_id.py121 def embed_id(x, W, ignore_label=None): function
/dports/databases/elixir-ecto/ecto-2.2.10/lib/ecto/
H A Dadapter.ex107 Called to autogenerate a value for id/embed_id/binary_id.
112 @callback autogenerate(field_type :: :id | :binary_id | :embed_id) :: term | nil | no_return
H A Dembedded.ex129 Map.put_new_lazy(changes, key, fn -> adapter.autogenerate(:embed_id) end)
/dports/science/py-chainer/chainer-7.8.0/chainer/links/
H A D__init__.py20 from chainer.links.connection.embed_id import EmbedID # NOQA
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/
H A D__init__.py78 from chainer.functions.connection.embed_id import embed_id # NOQA
/dports/databases/elixir-ecto/ecto-2.2.10/test/support/
H A Dtest_repo.exs31 def autogenerate(:embed_id), do: Ecto.UUID.autogenerate
/dports/science/conduit/conduit-0.8.0/src/libs/blueprint/
H A Dconduit_blueprint_mesh_utils.hpp131 index_t embed_id, embed_count, *embedding; member
H A Dconduit_blueprint_mesh_utils.cpp116 id = dim = indices = embed_id = embed_count = -1; in init()
126 embed_id = TOPO_SHAPE_EMBED_TYPES[type_id]; in init()
213 dim_types[di] = ShapeType(dim_types[di + 1].embed_id); in init()
H A Dconduit_blueprint_mesh_partition.cpp5822 const index_t embeded_sz = mesh::utils::TOPO_SHAPE_INDEX_COUNTS[e.shape.embed_id]; in build_polygonal_output()
5931 const index_t embeded_sz = mesh::utils::TOPO_SHAPE_INDEX_COUNTS[e.shape.embed_id]; in build_polyhedral_output()
/dports/x11-wm/gamescope/gamescope-3.7.1/src/
H A Dsteamcompmgr.cpp2155 Window embed_id = ev->data.l[2]; in handle_system_tray_opcode() local
2162 win *w = find_win(dpy, embed_id); in handle_system_tray_opcode()
/dports/databases/elixir-ecto/ecto-2.2.10/lib/ecto/adapters/
H A Dsql.ex43 def autogenerate(:embed_id), do: Ecto.UUID.generate()