Skip to content

Commit

Permalink
docs: remove experimental tags in code
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Apr 6, 2024
1 parent 15aff5e commit 4c4a832
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/phoenix/datasets/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ class EmbeddingColumnNames(Dict[str, Any]):
@dataclass(frozen=True)
class RetrievalEmbeddingColumnNames(EmbeddingColumnNames):
"""
*** Experimental ***
A relationship is a column that maps a prediction to another record.
Example
Expand Down
3 changes: 1 addition & 2 deletions src/phoenix/session/evaluation.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
A set of **highly experimental** helper functions to
A set of helper functions to
- extract spans from Phoenix for evaluation
- explode retrieved documents from (horizontal) lists to a (vertical) series
indexed by `context.span_id` and `document_position`
Expand Down Expand Up @@ -73,7 +73,6 @@ def _extract_subject_id_from_index(
value: Union[str, Sequence[Any]],
) -> pb.Evaluation.SubjectId:
"""
(**Highly Experimental**)
Returns `SubjectId` given the format of `index_names`. Allowed formats are:
- DocumentRetrievalId
- index_names=["context.span_id", "document_position"]
Expand Down
2 changes: 1 addition & 1 deletion src/phoenix/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def launch_app(
corpus : Dataset, optional
The dataset containing corpus for LLM context retrieval.
trace: TraceDataset, optional
**Experimental** The trace dataset containing the trace data.
The trace dataset containing the trace data.
host: str, optional
The host on which the server runs. It can also be set using environment
variable `PHOENIX_HOST`, otherwise it defaults to `127.0.0.1`.
Expand Down

0 comments on commit 4c4a832

Please sign in to comment.