Lucas Enard · May 16, 2022 go to post

Thank you for your feedback!
From what I know, you can use it locally without docker at all or use it with docker-compose and mapping if you wish to.
I did it like this because I wanted it to work without the need for the user to install anything on their computer (as I've made a c# and a java version too, it seemed easier to preinstall everything to have a clone and go github).
You can use VSCode with IRIS and IRIS Python / Embedded Python, for that I recommend you to check https://github.com/grongierisc/interoperability-embedded-python which is a proof of concept aiming to show how the iris interoperability framework can be used with embedded python while coding inside a container.
If you have any more questions don't hesitate !

Lucas Enard · May 18, 2022 go to post

Exactly, for instance in Python, if you wish to use this client outside the container you need to `pip install fhirpy` and `pip install fhir.resources` on your own computer.
Using the container, the requierments.txt file will be read by docker which will call `pip install requirements.txt` inside the container and install the right modules inside the container and not on your computer.
 

Same goes for java and c# !

Lucas Enard · May 19, 2022 go to post

It is possible using the `devcontainer.json` file which is inside the `.devcontainer` folder.
You can fill the property `extensions` with an array of extension IDs that specify the extensions that should be installed inside the container when it is created.
You can find an example in the formation I made to use IRIS and create a production in full Python here https://github.com/LucasEnard/formation-template-python/blob/main/.devc… at the end of the file.

Lucas Enard · Aug 5, 2022 go to post

If you are interested in ml and images I just updated the GitHub to work with `object-detection`, `image-segmentation` and `image-classification`.
I added some examples with the facebook detr resnet 50 to analyze images.
On the mean time I'm working on a GitHub to fine tune the ner state-of-the-art SpaCy to work with health data if you are interested.

Lucas Enard · Aug 22, 2022 go to post

Thank you for the feedback !
In fact, fhir.resources does a fhir auto-validation whenever you create a resource.
For example at one point in the Data Transformation i'm doing :

organization.address = [adress]

Because as you may know `address` is a list.
If you enter a string you'll get a Python `Exception ValueError`

Lucas Enard · Sep 14, 2022 go to post

Hello,

Thanks for trying my template.

You need to register through the HuggingFace website and get an API key for free.

Lucas Enard · Sep 19, 2022 go to post

Thank you so much everyone for the feedback on my work and the kind comments.

Thank you for choosing my application as the winner and for the second place in the community vote !!

Lucas Enard · Sep 21, 2022 go to post

Hello everybody I'm Lucas, my project took the first place and I'm glad you liked it.

Unfortunately I won't be able to attend the meeting so here's a quick video about me and the project ( 8 minutes of video done in a hurry in a hour so forgive me for the quality and the voice ) : https://youtu.be/q3FsUJN_U0A

Don't forget to activate subtitles !! ( The French accent hit pretty hard on that one )

Lucas Enard · Oct 24, 2022 go to post

Thank you for using my work and for the credit.

I'm glad you find a way to play and learn with it.