BertChristiaens commited on
Commit
d0ebbc8
1 Parent(s): bd4ccf4
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -304,6 +304,14 @@ def main():
304
  "are present in the image. This allows us to hide some of the manual work for the user, and "
305
  "by doing this, the users don't need to make a segmentation map in an external tool. Everything needed can be done within this demo."
306
  )
 
 
 
 
 
 
 
 
307
  st.write("### Testing images")
308
  st.write("If you don't have any pictures close, you can use one of these images to test the model:")
309
 
@@ -352,7 +360,6 @@ def main():
352
 
353
  with col2:
354
  make_output_image()
355
-
356
 
357
  if __name__ == "__main__":
358
  main()
 
304
  "are present in the image. This allows us to hide some of the manual work for the user, and "
305
  "by doing this, the users don't need to make a segmentation map in an external tool. Everything needed can be done within this demo."
306
  )
307
+
308
+ st.write("### News: Fondant - an open source data-centric framework for Foundation model finetuning")
309
+ st.write("The ML6 team is proud to announce that we are open sourcing our Fondant framework, which is a "
310
+ "data-centric framework that allows you to prepare large scale multimodal datasets with ease. We have implemented the components "
311
+ "that we used to train this controlnet model in Fondant as an example pipeline, and we are excited to see what you can do with it! In the future we will add a whole library of plug-and-play data preparation components, such as different ML models and filtering steps, in addition to dataset scraping components that connect to LAION5B."
312
+ )
313
+ st.write("The framework is build on top of kubeflow pipelines and abstracts all the complexity of efficient storing and moving of large datasets, so you can focus on implemented just that piece of code that you need without worrying about the rest. We also build it to run on each Cloud provider or VM. You can find the code on our github page: https://github.com/ml6team/fondant.")
314
+
315
  st.write("### Testing images")
316
  st.write("If you don't have any pictures close, you can use one of these images to test the model:")
317
 
 
360
 
361
  with col2:
362
  make_output_image()
 
363
 
364
  if __name__ == "__main__":
365
  main()