Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Fixed learning_traj_em_test #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions mm/path_inference/learning_traj_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ def simple_traj3():
""" Simple trajectory with large features,
breaks non log-based implementations.
"""
features = [ [ [0, 200] ],
[ [200, 0], [-100, 0] ],
features = [ [ [0., 200.] ],
[ [200., 0.], [-100., 0.] ],
]
connections = [ [ (0, 0), (0, 1) ] ]
traj = LearningTrajectory(features, connections)
Expand Down