Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions templates/keras_rs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ This library is an extension of the core Keras API; all high-level modules
receive that same level of polish as core Keras. If you are familiar with Keras,
congratulations! You already understand most of Keras Recommenders.

<div style="text-align: center;">
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Using inline styles like style="text-align: center;" is generally discouraged for maintainability and reusability. While it might be necessary in Markdown for quick styling, consider if a CSS class could be applied if there's a global stylesheet to keep styling consistent.

<a href="http://www.youtube.com/watch?feature=player_embedded&v=uV3gymO9K98&list=PL9f9vdy2ar1IdH6O6kQGn4Ln-_oLH_Ra3"
target="_blank"><img src="http://img.youtube.com/vi/uV3gymO9K98/hqdefault.jpg"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The image source uses http instead of https. It's best practice to use https to avoid mixed content warnings and ensure secure connections, especially if the main website is served over HTTPS.

Suggested change
target="_blank"><img src="http://img.youtube.com/vi/uV3gymO9K98/hqdefault.jpg"
target="_blank"><img src="https://img.youtube.com/vi/uV3gymO9K98/hqdefault.jpg"

alt="KerasRS Video" width="360" height="270" border="10" /></a>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The border attribute on the <img> tag is deprecated in HTML5. Styling should be handled using CSS for better separation of concerns and maintainability.

Suggested change
alt="KerasRS Video" width="360" height="270" border="10" /></a>
alt="KerasRS Video" width="360" height="270" /></a>

</div>

## Quick Links

- [API documentation](/keras_rs/api)
Expand Down