Skip to content

Commit 9536282

Browse files
committed
Rename project from RL-Agents to ML-Agents.
1 parent ac28c72 commit 9536282

4 files changed

Lines changed: 20 additions & 17 deletions

File tree

api/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from examples.basic import train_basic, infer_action
1010

11-
app = FastAPI(title="RL-Agents API")
11+
app = FastAPI(title="ML-Agents API")
1212

1313
SMALL_GOAL = 7
1414
LARGE_GOAL = 17

client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RL-Agents – client
1+
# ML-Agents – client
22

33
This folder hosts the **React + Three.js** front-end that recreates the Unity ML-Agents example scenes in the browser.
44

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "rl-agents-client",
2+
"name": "ml-agents-client",
33
"version": "0.1.0",
44
"private": true,
55
"type": "module",

client/src/examples/Index.jsx

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,25 @@ export default function ExamplesIndex() {
2525
boxShadow: '0 0 20px rgba(0, 255, 255, 0.2)',
2626
backdropFilter: 'blur(10px)',
2727
transition: 'all 0.3s ease',
28+
overflow: 'hidden'
2829
}}
2930
>
30-
<Link to="/basic" style={{ textDecoration: 'none', color: 'inherit' }}>
31-
<div style={{ cursor: 'pointer' }}>
32-
<img
33-
src="/three-mlagents/basic_example.jpg"
34-
alt="Basic 1-D Move-To-Goal Example"
35-
style={{
36-
width: '100%',
37-
height: '200px',
38-
objectFit: 'cover',
39-
display: 'block'
40-
}}
41-
/>
42-
</div>
43-
</Link>
31+
<Card.Content style={{ padding: 0 }}>
32+
<Link to="/basic" style={{ textDecoration: 'none', color: 'inherit' }}>
33+
<div style={{ cursor: 'pointer' }}>
34+
<img
35+
src="/three-mlagents/basic_example.jpg"
36+
alt="Basic 1-D Move-To-Goal Example"
37+
style={{
38+
width: '100%',
39+
height: '200px',
40+
objectFit: 'cover',
41+
display: 'block'
42+
}}
43+
/>
44+
</div>
45+
</Link>
46+
</Card.Content>
4447
<Card.Footer style={{ backgroundColor: 'rgba(17, 17, 17, 0.9)', padding: '16px', display: 'flex', flexDirection: 'column', alignItems: 'flex-start' }}>
4548
<Link to="/basic" style={{ textDecoration: 'none', color: 'inherit' }}>
4649
<Text h4 style={{ color: '#fff', margin: '0 0 8px 0', cursor: 'pointer' }}>

0 commit comments

Comments
 (0)