-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create scivision projects catalog and add first entry for testing pur…
…poses (#475) * Add para * move docs for python package in navbar * add pypi link * rename to scivision * summary md that can be imported in 3 locations, README, docs and web * summary updated * move summary into frontend * move AboutText to separate file * use react-showdown to render markdown * move mdsummary into about.js * add GitHub to navbar * add ➕ emoji to navbar * simplify headers * make README consistent with scivision web * move support table below installation * make readme header consistent with readthedocs * make readthedocs intro consistent with README and webapp (bad links) * add header and image to make webapp consistent with readthedocs and GH * reduce column width * consistent/tidy descriptions * minor differences between the 3 landing pages * improve readthedocs landing page links * add user guide link * add support table to readthedocs and make install consistent with README * move install instructions out of README * add first attempt at a projects.json * add authors and contributors * add a header field * use plural for fields that are likely plural * create CatalogProjectEntry * create CatalogProjects * add _coerce_projects_catalog * fix error msg * add projects to PandasCatalog * whitespace and missing var * add missing comma * fix json * stop mistakenly using TaskEnum * duplicate models code for projects * add links to thumbnails * import projects json * fix plural * add projects pages * move model-grid position in App.js * add project-grid * add links * fix model-grid * move for clarity * remove not needed * remove frontend changes * make the project entry about the connections workshop rather than a tutorial * move header above desc * add description to project catalog * merge catalog changes from react branch * remove unused import * flake8
- Loading branch information
1 parent
04625ee
commit 3a9f5f4
Showing
2 changed files
with
160 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"catalog_type": "scivision project catalog", | ||
"name": "default", | ||
"entries": [ | ||
{ | ||
"name": "sept22-connections-workshop", | ||
"header": "Turing Connections Workshop", | ||
"description": "Classification challenge for datasets of Flower and Butterfly images from Kaggle", | ||
"page": "PhD candidates attended a workshop hosted by The Alan Turing Institute's Research Engineering Group (REG) to get some hands-on experience working on scivision as a piece of research software. The task involved adding pre-trained models and datasources to the scivision catalog. Succesful submissions include two classification models, for flowers and butterflies, and related datasets.\n#### Notebooks:\n- [Butterflies](https://github.com/scivision-gallery/connections-workshop-examples/blob/main/ButterflyClassification.ipynb)\n- [Flowers](https://github.com/scivision-gallery/connections-workshop-examples/blob/main/FlowerClassification.ipynb)\n\nTo learn more about the REG at Turing, click [here](https://www.turing.ac.uk/research/research-engineering)", | ||
"tasks": [ | ||
"classification" | ||
], | ||
"models": [ | ||
"butterfly-classification-model", | ||
"flower-classification-model" | ||
], | ||
"datasources": [ | ||
"flowers", | ||
"butterflies" | ||
], | ||
"institution": [ | ||
"alan-turing-institute" | ||
], | ||
"tags": [ | ||
"tutorial", | ||
"butterflies", | ||
"flowers" | ||
] | ||
} | ||
] | ||
} |