Skip to content

Commit

Permalink
add another example, fix location in Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Taniya-Das committed Nov 6, 2024
1 parent f1060d9 commit 1511e16
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ print('URL for run: %s/run/%d' % (openml.config.server, run.run_id))

```

Note: The input layer of the network should be compatible with OpenML data output shape. Please check [examples](/examples/) for more information.
Note: The input layer of the network should be compatible with OpenML data output shape. Please check [examples](/docs/Examples/) for more information.


Additionally, if you want to publish the run with onnx file, then you must call ```openml_pytorch.add_onnx_to_run()``` immediately before ```run.publish()```.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
Tensorflow image classification using pre-trained model example
==================
An example of a tensorflow network that classifies indoor scenes images.
An example of a tensorflow pre-trained network that classifies indoor scenes images, where all layers are trained.
For smaller datasets or datasets similar to the dataset the base model was trained on,
it is advisable to freeze pre-trained network, and only train custom layers.
"""

import openml
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ print('URL for run: %s/run/%d' % (openml.config.server, run.run_id))

```

Note: The input layer of the network should be compatible with OpenML data output shape. Please check [examples](/examples/) for more information.
Note: The input layer of the network should be compatible with OpenML data output shape. Please check [examples](/docs/Examples/) for more information.


Additionally, if you want to publish the run with onnx file, then you must call ```openml_pytorch.add_onnx_to_run()``` immediately before ```run.publish()```.
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,6 @@ nav:
- "Performance Check Image Classification Task": "Examples/tf_image_classification_sanity_check.py"
- "Image Classification Task on Big Dataset": "Examples/tf_image_classification_Indoorscenes_dataset.py"
- "Pretrained Image Classification Example": "Examples/tf_pretrained_model_Indoorscenes_dataset.py"
- "Pretrained Image Classification on Big Dataset": "Examples/tf_transfer_learning.py"
# - "Limitations of the API": "Limitations of the API.md"

0 comments on commit 1511e16

Please sign in to comment.