FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feast/sdk/python/feast/__init__.py at featureview-versioning · feast-dev/feast · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feast-dev
/
feast
Public
Notifications
You must be signed in to change notification settings
Fork
1.4k
Star
7.2k
Code
Issues
218
Pull requests
191
Discussions
Actions
Security and quality
1
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
feast
/
sdk
/
python
/
feast
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
76 lines (72 loc) · 2.21 KB
Breadcrumbs
feast
/
sdk
/
python
/
feast
/
__init__.py
Copy path
File metadata and controls
76 lines (72 loc) · 2.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from
importlib
.
metadata
import
PackageNotFoundError
from
importlib
.
metadata
import
version
as
_version
from
feast
.
infra
.
offline_stores
.
bigquery_source
import
BigQuerySource
from
feast
.
infra
.
offline_stores
.
contrib
.
athena_offline_store
.
athena_source
import
(
AthenaSource
,
)
from
feast
.
infra
.
offline_stores
.
contrib
.
oracle_offline_store
.
oracle_source
import
(
OracleSource
,
)
from
feast
.
infra
.
offline_stores
.
file_source
import
FileSource
from
feast
.
infra
.
offline_stores
.
redshift_source
import
RedshiftSource
from
feast
.
infra
.
offline_stores
.
snowflake_source
import
SnowflakeSource
from
.
aggregation
import
Aggregation
from
.
batch_feature_view
import
BatchFeatureView
from
.
chunker
import
BaseChunker
,
ChunkingConfig
,
TextChunker
from
.
data_source
import
KafkaSource
,
KinesisSource
,
PushSource
,
RequestSource
from
.
dataframe
import
DataFrameEngine
,
FeastDataFrame
from
.
doc_embedder
import
DocEmbedder
,
LogicalLayerFn
from
.
embedder
import
BaseEmbedder
,
EmbeddingConfig
,
MultiModalEmbedder
from
.
entity
import
Entity
from
.
feature
import
Feature
from
.
feature_service
import
FeatureService
from
.
feature_store
import
FeatureStore
from
.
feature_view
import
FeatureView
from
.
field
import
Field
from
.
on_demand_feature_view
import
OnDemandFeatureView
from
.
project
import
Project
from
.
repo_config
import
RepoConfig
from
.
stream_feature_view
import
StreamFeatureView
from
.
value_type
import
ValueType
from
.
vector_store
import
FeastVectorStore
try
:
__version__
=
_version
(
"feast"
)
except
PackageNotFoundError
:
# package is not installed
pass
__all__
=
[
"Aggregation"
,
"BatchFeatureView"
,
"DataFrameEngine"
,
"Entity"
,
"KafkaSource"
,
"KinesisSource"
,
"FeastDataFrame"
,
"Feature"
,
"Field"
,
"FeatureService"
,
"FeatureStore"
,
"FeatureView"
,
"OnDemandFeatureView"
,
"RepoConfig"
,
"StreamFeatureView"
,
"ValueType"
,
"BigQuerySource"
,
"FileSource"
,
"RedshiftSource"
,
"SnowflakeSource"
,
"PushSource"
,
"RequestSource"
,
"AthenaSource"
,
"OracleSource"
,
"Project"
,
"FeastVectorStore"
,
"DocEmbedder"
,
"LogicalLayerFn"
,
"BaseChunker"
,
"TextChunker"
,
"ChunkingConfig"
,
"BaseEmbedder"
,
"MultiModalEmbedder"
,
"EmbeddingConfig"
,
]
Back
|
FazBrowse Home
|
New Git URL