-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Experiments resource-based interface #106
base: master
Are you sure you want to change the base?
Conversation
Example usage: from faculty.experiments import ExperimentRun
print(
list(
ExperimentRun.query(project_id="f20f5eaa-9cff-4216-8ebd-b88fd294bb3e")
)
)
print(
ExperimentRun.query(
project_id="f20f5eaa-9cff-4216-8ebd-b88fd294bb3e"
).as_dataframe()
) |
77bcd39
to
5ae2d09
Compare
b8ac2f3
to
5c063a9
Compare
I talked to @zblz about this. In
Sorry my confusion; by this you mean using the PROJECT_ID env variable by default if an argument is not passed?
I am not very experienced with pandas, my first thought was to namespace keys by |
3a605a9
to
2d4050c
Compare
The checks are not passing because apparently |
2d4050c
to
2955886
Compare
72a6129
to
bc3fac6
Compare
bc3fac6
to
b41a9c9
Compare
This PR prototypes adding a resource-based interface for experiment runs, with the following features:
as_dataframe
for other view typesNotes: