Skip to content

Commit 36ff8c2

Browse files
committed
Use https
1 parent 028e4c5 commit 36ff8c2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/setup_installation/admin/ldap/configure-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ asadmin create-jndi-resource \
6363

6464
### Step 2: Server Configuration for Kerberos
6565

66-
The Kerberos attributes are used to configure [SPNEGO](http://spnego.sourceforge.net/).
66+
The Kerberos attributes are used to configure [SPNEGO](https://spnego.sourceforge.net/).
6767
SPNEGO is used to establish a secure context between the requester and the application server when using Kerberos
6868
authentication.
6969

docs/user_guides/fs/transformation_functions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ These can be used along with [feature groups](./feature_group/index.md) and [fe
88

99
## Custom Transformation Function Creation
1010

11-
User-defined transformation functions can be created in Hopsworks using the [`@udf`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/udf/) decorator.
11+
User-defined transformation functions can be created in Hopsworks using the [`@udf`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/udf/) decorator.
1212
These functions can be either implemented as pure Python UDFs or Pandas UDFs (User-Defined Functions).
1313

1414
Hopsworks offers three execution modes to control the execution of transformation functions during training dataset creation, batch inference, and online inference.
@@ -34,7 +34,7 @@ These functions can be part of a library [installed](../../user_guides/projects/
3434
Definition transformation function within a Jupyter notebook is only supported in Python Kernel.
3535
In a PySpark Kernel transformation function have to defined as modules or added when starting a Jupyter notebook.
3636

37-
The `@udf` decorator in Hopsworks creates a metadata class called [`HopsworksUdf`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/hopsworks_udf/).
37+
The `@udf` decorator in Hopsworks creates a metadata class called [`HopsworksUdf`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/hopsworks_udf/).
3838
This class manages the necessary operations to execute the transformation function.
3939

4040
The decorator accepts three parameters:
@@ -210,7 +210,7 @@ In the example below, the columns mapped to the arguments `feature1` and `fea
210210

211211
### Specifying output features names for transformation functions
212212

213-
The [`alias`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_functions_api/#alias) function of a transformation function allows the specification of names of transformed features generated by the transformation function.
213+
The [`alias`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_functions_api/#alias) function of a transformation function allows the specification of names of transformed features generated by the transformation function.
214214
Each name must be uniques and should be at-most 63 characters long.
215215
If no name is provided via the `alias` function, Hopsworks generates default output feature names when [on-demand](./feature_group/on_demand_transformations.md) or [model-dependent](./feature_view/model-dependent-transformations.md) transformation functions are created.
216216

@@ -231,7 +231,7 @@ If no name is provided via the `alias` function, Hopsworks generates default out
231231
### Training dataset statistics
232232

233233
A keyword argument `statistics` can be defined in the transformation function if it requires training dataset statistics for any of its arguments.
234-
The `statistics` argument must be assigned an instance of the class [`TransformationStatistics`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_statistics/) as the default value.
234+
The `statistics` argument must be assigned an instance of the class [`TransformationStatistics`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_statistics/) as the default value.
235235
The `TransformationStatistics` instance must be initialized using the names of the arguments requiring statistics.
236236

237237
!!! warning "Transformation Statistics"
@@ -240,7 +240,7 @@ The `TransformationStatistics` instance must be initialized using the names of
240240
Training dataset statistics are not available for on-demand transformations.
241241

242242
The `TransformationStatistics` instance contains separate objects with the same name as the arguments used to initialize it.
243-
These objects encapsulate statistics related to the argument as instances of the class [`FeatureTransformationStatistics`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/feature_transformation_statistics/).
243+
These objects encapsulate statistics related to the argument as instances of the class [`FeatureTransformationStatistics`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/feature_transformation_statistics/).
244244
Upon instantiation, instances of `FeatureTransformationStatistics` contain `None` values and are updated with the required statistics after the creation of a training dataset.
245245

246246
=== "Python"
@@ -274,7 +274,7 @@ By including the context argument, you can pass the necessary data as a dictiona
274274

275275
## Saving to the Feature Store
276276

277-
To save a transformation function to the feature store, use the function `create_transformation_function`. It creates a [`TransformationFunction`](http://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_functions_api/) object which can then be saved by calling the save function.
277+
To save a transformation function to the feature store, use the function `create_transformation_function`. It creates a [`TransformationFunction`](https://docs.hopsworks.ai/hopsworks-api/{{{hopsworks_version}}}/generated/api/transformation_functions_api/) object which can then be saved by calling the save function.
278278
The save function will throw an error if another transformation function with the same name and version is already saved in the feature store.
279279

280280
=== "Python"

0 commit comments

Comments
 (0)