Description Usage Arguments Details See Also Examples
Create a new text file in the selected folder with all the experiment information passed refered to an experiment, the context and the result.
1 2 | log_experiment(..., description = "", tag = "", version = "1.0",
number = 1, folder = "./logs")
|
... |
all the objects and information you want to log. We recommend a ("title", value, "") format. |
description |
containing the main information of you experiment. E.g: Testing the max_date new feature |
tag |
an optional tag to separate and organize your logs. |
version |
a character with the main version of your project. E.g: "1.3" == v1.3 or just "1" |
number |
of the experiment. E.g: 4 == "v1.3.4" |
folder |
as character to store the logs |
All the information should be passed a ... parameters. Empty characters are considered new lines.
Folder Structure: ./folder ./capitans.log ./version ./exp.tag.version.number.txt
Supports: characters, numbers, data.frames, lists, vectors, ggplots.
1 2 3 4 5 6 7 | log_experiment(
# Entry log information:
description = "First experiment using XGBoost witout categorical features",
tag = 'ml', version='1.0', number = 1,
# Log all the needed information:
"Final AUC:", 0.789, ""
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.