You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**Team**: A Team is the highest-level organizational unit in AlphaTrion. It represents a group of users collaborating on projects and experiments.
22
-
-**Project**: A Project is a namespace-level abstraction that contains multiple experiments. It helps organize experiments related to a specific goal or topic.
23
-
-**Experiment**: An Experiment is a logic-level abstraction for organizing and managing a series of related runs. It allows users to group runs that share a common purpose or configuration.
21
+
-**Team**: A Team is the highest-level organizational unit in AlphaTrion. It represents a group of users collaborating on experiments.
22
+
-**Experiment**: An Experiment is a logic-level abstraction for organizing and managing a series of related runs. It allows users to group runs that share a common purpose or configuration. Experiments can be organized using labels.
24
23
-**Run**: A Run is a real execution instance of an experiment. It represents the actual execution of the code with the specified configuration and hyperparameters defined in the experiment.
25
24
26
25
## Quick Start
@@ -70,7 +69,7 @@ Below is a simple example with two approaches demonstrating how to create an exp
70
69
71
70
```python
72
71
import alphatrion as alpha
73
-
from alphatrion import experiment, project
72
+
from alphatrion import experiment
74
73
75
74
# Use the user ID generated from the `alphatrion init` command.
asyncwith experiment.CraftExperiment.start(name="my_experiment") as exp:
84
-
task = exp.run(your_task) # use lambda or partial if you need to pass arguments to your_task
85
-
await task.wait()
81
+
asyncwith experiment.CraftExperiment.start(name="my_experiment") as exp:
82
+
task = exp.run(your_task) # use lambda or partial if you need to pass arguments to your_task
83
+
await task.wait()
86
84
```
87
85
88
86
### View Dashboard
89
87
90
88

91
89
92
-
The dashboard provides a web interface to explore projects, experiments, runs, and metrics through an intuitive UI.
90
+
The dashboard provides a web interface to explore experiments, runs, and metrics through an intuitive UI.
93
91
94
92
#### Launch Dashboard
95
93
@@ -111,6 +109,12 @@ The dashboard will automatically open in your browser at `http://127.0.0.1:5173`
111
109
-[Dashboard CLI Guide](./docs/dashboard/dashboard-cli.md) - Using the dashboard CLI command
112
110
-[Dashboard Architecture](./docs/dashboard/dashboard-architecture.md) - Technical architecture and deployment patterns
113
111
112
+
### Tracing
113
+
114
+
AlphaTrion automatically captures tracing data for all runs, including spans for each run and associated metadata. You can query this data to analyze model performance, latency, and token usage.
0 commit comments