Larefly

Results 123 comments of Larefly

Possible future iteration for the encoder :) sweet I will merge it in now :)

Hi @dpastoor thanks for letting us know. I am still fairly new in adding cpp into R packages. I have done some initial benchmarks around rcpp and cpp11 performance of...

Hi all, I have been thinking about this. I think it is a possibly a limitation of the current `httr` package, as it doesn't call the `curl` async processes i.e....

Been thinking about this and I think we can get async s3 downloads using the [`promises`](https://rstudio.github.io/promises/articles/future_promise.html) similar to what @davidkretch mentioned here: > One alternative might be to run Paws...

You might want to consider the sagemaker sdk for R built off paws. I am currently getting the unit tests built for it before releasing it fully to the cran....

`get_caller_identity_arn` method is found here: https://github.com/DyfanJones/sagemaker-r-core/blob/4bc1e1051f690120897dabfb9178da0c6e34b1a9/R/session.R#L2077-L2146 ```r get_caller_identity_arn = function(){ if(file.exists(NOTEBOOK_METADATA_FILE)){ metadata = read_json(NOTEBOOK_METADATA_FILE) instance_name = metadata[["ResourceName"]] domain_id = metadata[["DomainId"]] user_profile_name = metadata[["UserProfileName"]] tryCatch({ if(is.null(domain_id)){ instance_desc = self$sagemaker$describe_notebook_instance(NotebookInstanceName=instance_name) return(instance_desc$RoleArn) }...

@juliasilge perfect :) i was planning in reaching out at some point. The initial goal of sagemaker is to replicate the python equivalent. Next would be to allow extensions to...

Hi @wlandau, I don't think this answers your question fully but you could be more specific with the error check. Instead of using `http_400` you could use `http_404` . This...

Hi @edgBR, Here is an example of using `paws` to create an AWS Sagmaker endpoint [link](https://github.com/DyfanJones/r-sagemaker-examples/blob/master/R/sagemaker-xgboost-example-01-paws.R). @davidkretch feel free to take this example or modify it :)

For information around how to build your own docker image, aws has provided this example: [Building your own container as Algorithm / Model Package](https://github.com/awslabs/amazon-sagemaker-examples/blob/master/aws_marketplace/creating_marketplace_products/Bring_Your_Own-Creating_Algorithm_and_Model_Package.ipynb). I have been working on a...